summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/replace/config.m4
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-08-23 04:55:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:16:34 -0500
commit57f587729dd6b39ad7bc41f3d2e2b6d1be606f9a (patch)
tree9bf33625fcc39a736b136730f678e5a98a012504 /source4/lib/ldb/replace/config.m4
parent309ef9069096ce09483e2f9a18f191fc53e1c7f4 (diff)
downloadsamba-57f587729dd6b39ad7bc41f3d2e2b6d1be606f9a.tar.gz
samba-57f587729dd6b39ad7bc41f3d2e2b6d1be606f9a.tar.bz2
samba-57f587729dd6b39ad7bc41f3d2e2b6d1be606f9a.zip
r17739: forgot to add replace/*
(This used to be commit ceb09f50b7d9f2626b42123e2482d562713f881b)
Diffstat (limited to 'source4/lib/ldb/replace/config.m4')
-rw-r--r--source4/lib/ldb/replace/config.m411
1 files changed, 11 insertions, 0 deletions
diff --git a/source4/lib/ldb/replace/config.m4 b/source4/lib/ldb/replace/config.m4
new file mode 100644
index 0000000000..794618e62d
--- /dev/null
+++ b/source4/lib/ldb/replace/config.m4
@@ -0,0 +1,11 @@
+AC_CHECK_HEADERS([stdint.h inttypes.h])
+AC_CHECK_TYPE(uint8_t, unsigned char)
+AC_CHECK_TYPE(int64_t, long long)
+AC_CHECK_TYPE(uint64_t, unsigned long long)
+AC_CHECK_TYPE(comparison_fn_t,
+[AC_DEFINE(HAVE_COMPARISON_FN_T, 1,[Whether or not we have comparison_fn_t])])
+
+AC_CHECK_FUNCS(strerror timegm strnlen)
+AC_HAVE_DECL(errno, [#include <errno.h>])
+
+AC_CHECK_HEADERS(strings.h)