From 8cbf9b64dccd297f51d8b237b562b8dee915be90 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 23 Aug 2006 01:55:02 +0000 Subject: r17734: tru64 needs these for standalone build (This used to be commit b735ad8cfa6c10b3e1e450bcec73904aa72e91b2) --- source4/lib/ldb/configure.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source4/lib/ldb/configure.in b/source4/lib/ldb/configure.in index b65534e92e..1e8e6a28e5 100644 --- a/source4/lib/ldb/configure.in +++ b/source4/lib/ldb/configure.in @@ -40,6 +40,10 @@ AC_CONFIG_HEADER(include/config.h) AC_CHECK_LIB(dl, dlopen) AC_CHECK_FUNCS(dlopen dlsym dlclose) +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])]) -- cgit