summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/configure.in
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-08-22 22:27:57 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:16:31 -0500
commitba8ed91a759b41c181f9bffe732f6dd556590674 (patch)
tree0176743ae791aef260d3ad163a28224e9a9c4315 /source4/lib/ldb/configure.in
parent10d8142e5db9fab0e169d73772f9d8715c294a5b (diff)
downloadsamba-ba8ed91a759b41c181f9bffe732f6dd556590674.tar.gz
samba-ba8ed91a759b41c181f9bffe732f6dd556590674.tar.bz2
samba-ba8ed91a759b41c181f9bffe732f6dd556590674.zip
r17721: fixed the dlopen and MODULESDIR handling in the standalone build
(This used to be commit a40e8c210a27a88e01b023c8b6d298e271c147d7)
Diffstat (limited to 'source4/lib/ldb/configure.in')
-rw-r--r--source4/lib/ldb/configure.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/source4/lib/ldb/configure.in b/source4/lib/ldb/configure.in
index 9fc628280b..b65534e92e 100644
--- a/source4/lib/ldb/configure.in
+++ b/source4/lib/ldb/configure.in
@@ -37,13 +37,16 @@ AC_PATH_PROG(GCOV,gcov)
AC_PATH_PROG(SLAPD,slapd)
AC_CHECK_HEADERS(stdint.h dlfcn.h)
AC_CONFIG_HEADER(include/config.h)
+AC_CHECK_LIB(dl, dlopen)
AC_CHECK_FUNCS(dlopen dlsym dlclose)
+AC_CHECK_TYPE(comparison_fn_t,
+[AC_DEFINE(HAVE_COMPARISON_FN_T, 1,[Whether or not we have comparison_fn_t])])
+
SHLIBEXT="so" # Should be set based on OS later on
AC_SUBST(SHLIBEXT)
-MODULESDIR="$libdir/ldb"
-AC_DEFINE(MODULESDIR,$MODULESDIR,[Modules directory])
+AC_DEFINE_UNQUOTED(MODULESDIR, LIBDIR "/ldb" , [Modules directory] )
AC_SUBST(MODULESDIR)
sinclude(popt.m4)