summaryrefslogtreecommitdiff
path: root/source4/build/m4/check_types.m4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-06-04 13:57:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:17:35 -0500
commit5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0 (patch)
treea5464cdee1f79ca2fdb77c2cb1915d034134aaf9 /source4/build/m4/check_types.m4
parent03cdfbe8ac68621d1dfa53164d095eb451793bc0 (diff)
downloadsamba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.tar.gz
samba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.tar.bz2
samba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.zip
r7274: Move m4 files to seperate dir
(This used to be commit 0dda66f0e8e6ad37d731937af184a132bf3407b1)
Diffstat (limited to 'source4/build/m4/check_types.m4')
-rw-r--r--source4/build/m4/check_types.m439
1 files changed, 39 insertions, 0 deletions
diff --git a/source4/build/m4/check_types.m4 b/source4/build/m4/check_types.m4
new file mode 100644
index 0000000000..b4c7b5ed1c
--- /dev/null
+++ b/source4/build/m4/check_types.m4
@@ -0,0 +1,39 @@
+dnl SMB Build Environment Types Checks
+dnl -------------------------------------------------------
+dnl Copyright (C) Stefan (metze) Metzmacher 2004
+dnl Released under the GNU GPL
+dnl -------------------------------------------------------
+dnl
+
+dnl Add #include for broken IRIX header files
+case "$host_os" in
+ *irix6*) AC_ADD_INCLUDE(<standards.h>)
+ ;;
+esac
+
+AC_C_BIGENDIAN
+
+AC_HEADER_STDC
+
+AC_CHECK_HEADERS(stdbool.h)
+
+AC_CHECK_SIZEOF(short,cross)
+AC_CHECK_SIZEOF(int,cross)
+AC_CHECK_SIZEOF(long,cross)
+AC_CHECK_SIZEOF(long long,cross)
+if test x"$ac_cv_type_long_long" != x"yes";then
+ AC_MSG_ERROR([Sorry we need type 'long long'])
+fi
+if test $ac_cv_sizeof_long_long -lt 8;then
+ AC_MSG_ERROR([Sorry we need sizeof(long long) >= 8])
+fi
+AC_CHECK_TYPE(_Bool)
+AC_CHECK_TYPE(uint_t, unsigned int)
+AC_CHECK_TYPE(int8_t, signed char)
+AC_CHECK_TYPE(uint8_t, unsigned char)
+AC_CHECK_TYPE(int16_t, short)
+AC_CHECK_TYPE(uint16_t, unsigned short)
+AC_CHECK_TYPE(int32_t, long)
+AC_CHECK_TYPE(uint32_t, unsigned long)
+AC_CHECK_TYPE(int64_t, long long)
+AC_CHECK_TYPE(uint64_t, unsigned long long)