mirror of
https://github.com/samba-team/samba.git
synced 2025-02-09 09:57:48 +03:00
r16012: do the type checks before anythingelse
metze (This used to be commit 092e52c51884706317564a5a5397f137689d78cb)
This commit is contained in:
parent
4ed9f119e0
commit
2176bcc3ab
@ -12,6 +12,18 @@ AC_CHECK_TYPE(ssize_t, int)
|
||||
AC_CHECK_TYPE(comparison_fn_t,
|
||||
[AC_DEFINE(HAVE_COMPARISON_FN_T, 1,[Whether or not we have comparison_fn_t])])
|
||||
|
||||
AC_CHECK_HEADERS(stdbool.h)
|
||||
|
||||
AC_CHECK_TYPE(bool,
|
||||
[AC_DEFINE(HAVE_BOOL, 1, [Whether the bool type is available])],,
|
||||
[
|
||||
AC_INCLUDES_DEFAULT
|
||||
#ifdef HAVE_STDBOOL_H
|
||||
#include <stdbool.h>
|
||||
#endif]
|
||||
)
|
||||
|
||||
|
||||
AC_CACHE_CHECK([for broken inet_ntoa],samba_cv_REPLACE_INET_NTOA,[
|
||||
AC_TRY_RUN([
|
||||
#include <stdio.h>
|
||||
@ -127,17 +139,6 @@ LIBS="$SAVE_LIBS"
|
||||
AC_CHECK_FUNCS([syslog memset setnetgrent getnetgrent endnetgrent memcpy],,
|
||||
[AC_MSG_ERROR([Required function not found])])
|
||||
|
||||
AC_CHECK_HEADERS(stdbool.h)
|
||||
|
||||
AC_CHECK_TYPE(bool,
|
||||
[AC_DEFINE(HAVE_BOOL, 1, [Whether the bool type is available])],,
|
||||
[
|
||||
AC_INCLUDES_DEFAULT
|
||||
#ifdef HAVE_STDBOOL_H
|
||||
#include <stdbool.h>
|
||||
#endif]
|
||||
)
|
||||
|
||||
sinclude(lib/replace/getpass.m4)
|
||||
|
||||
dnl VA_COPY
|
||||
|
Loading…
x
Reference in New Issue
Block a user