1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

r748: get some more info about what the compilers in the build farm support

what we need is a test if the compiler does ANSI c99

metze
(This used to be commit e8a11e441b074f9dc1c7c24c9048f8927dac8e59)
This commit is contained in:
Stefan Metzmacher 2004-05-15 18:42:45 +00:00 committed by Gerald (Jerry) Carter
parent 78aa17221b
commit a22c38d70a

View File

@ -323,15 +323,22 @@ case "$host_os" in
fi
;;
esac
AC_CHECK_SIZEOF(int,cross)
AC_CHECK_SIZEOF(short,cross)
AC_CHECK_SIZEOF(long,cross)
AC_CHECK_SIZEOF(long long,cross)
AC_CHECK_HEADERS(stdint.h)
AC_CHECK_HEADERS(inttypes.h)
AC_CHECK_SIZEOF(_Bool,cross)
AC_CHECK_HEADERS(stdbool.h)
AC_CHECK_HEADERS(shadow.h netinet/ip.h netinet/tcp.h netinet/in_systm.h netinet/in_ip.h)
AC_CHECK_HEADERS(nss.h nss_common.h ns_api.h sys/security.h security/pam_appl.h security/pam_modules.h)
AC_CHECK_HEADERS(stropts.h)
AC_CHECK_HEADERS(sys/capability.h syscall.h sys/syscall.h)
AC_CHECK_HEADERS(sys/acl.h)
AC_CHECK_SIZEOF(int,cross)
AC_CHECK_SIZEOF(long,cross)
AC_CHECK_SIZEOF(short,cross)
AC_C_CONST
AC_C_INLINE