summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-14 06:39:48 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:39 -0500
commit8ed1176a8d3ae80d27010243e389d449ab5a0148 (patch)
tree556c7ecae12769bc58fb32818be04820c5fbead7 /source4/lib
parenta4e94eedf04524d5271344a492a41da951c535c2 (diff)
downloadsamba-8ed1176a8d3ae80d27010243e389d449ab5a0148.tar.gz
samba-8ed1176a8d3ae80d27010243e389d449ab5a0148.tar.bz2
samba-8ed1176a8d3ae80d27010243e389d449ab5a0148.zip
r18501: libreplace needs 'long long', bailout if not present
or the size is not 8 bytes or more. samba4 doesn't need type checks anymore metze (This used to be commit d8fdd05482fc6b9bfb48d72db6b467e3e5c05e4d)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/replace/libreplace_cc.m47
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/lib/replace/libreplace_cc.m4 b/source4/lib/replace/libreplace_cc.m4
index 2c58933a65..9f6912741e 100644
--- a/source4/lib/replace/libreplace_cc.m4
+++ b/source4/lib/replace/libreplace_cc.m4
@@ -90,5 +90,12 @@ AC_CHECK_SIZEOF(ssize_t)
AC_CHECK_TYPE(intptr_t, unsigned long long)
AC_CHECK_TYPE(ptrdiff_t, unsigned long long)
+if test x"$ac_cv_type_long_long" != x"yes";then
+ AC_MSG_ERROR([LIBREPLACE needs type 'long long'])
+fi
+if test $ac_cv_sizeof_long_long -lt 8;then
+ AC_MSG_ERROR([LIBREPLACE needs sizeof(long long) >= 8])
+fi
+
AC__LIBREPLACE_ONLY_CC_CHECKS_END
]) dnl end AC_LIBREPLACE_CC_CHECKS