mirror of
https://github.com/samba-team/samba.git
synced 2025-11-22 16:23:49 +03:00
is build standalone and inside samba - add configure checks for the some type sizes for debugging metze
14 lines
487 B
Plaintext
14 lines
487 B
Plaintext
AC_CACHE_CHECK([for va_copy],samba_cv_HAVE_VA_COPY,[
|
|
AC_TRY_LINK([#include <stdarg.h>
|
|
va_list ap1,ap2;], [va_copy(ap1,ap2);],
|
|
samba_cv_HAVE_VA_COPY=yes,samba_cv_HAVE_VA_COPY=no)])
|
|
if test x"$samba_cv_HAVE_VA_COPY" = x"yes"; then
|
|
AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available])
|
|
fi
|
|
|
|
AC_CHECK_TYPE(intptr_t, unsigned long long)
|
|
AC_CHECK_HEADERS(stdint.h stdarg.h unistd.h sys/types.h)
|
|
AC_CHECK_SIZEOF(off_t,cross)
|
|
AC_CHECK_SIZEOF(size_t,cross)
|
|
AC_CHECK_SIZEOF(ssize_t,cross)
|