From 1c48b5a62f73234ed26bb20f0ab345ab61cda0ab Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 18 Feb 2010 07:49:04 -0500 Subject: Rename server/ directory to src/ Also update BUILD.txt --- server/external/libldb.m4 | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 server/external/libldb.m4 (limited to 'server/external/libldb.m4') diff --git a/server/external/libldb.m4 b/server/external/libldb.m4 deleted file mode 100644 index 0679e1d19..000000000 --- a/server/external/libldb.m4 +++ /dev/null @@ -1,28 +0,0 @@ -AC_SUBST(LDB_OBJ) -AC_SUBST(LDB_CFLAGS) -AC_SUBST(LDB_LIBS) - -PKG_CHECK_MODULES(LDB, ldb >= 0.9.2) - -AC_CHECK_HEADERS(ldb.h ldb_module.h, - [AC_CHECK_LIB(ldb, ldb_init, [LDB_LIBS="-lldb"], , -ltevent) ], - [AC_MSG_ERROR([LDB header files are not installed])] -) - -AC_ARG_WITH([ldb-lib-dir], - [AC_HELP_STRING([--with-ldb-lib-dir=PATH], - [Path to store ldb modules [${libdir}/ldb]] - ) - ] - ) - -if test x"$with_ldb_lib_dir" != x; then - ldblibdir=$with_ldb_lib_dir -else - ldblibdir="`$PKG_CONFIG --variable=modulesdir ldb`" - if ! test -d $ldblibdir; then - ldblibdir="${libdir}/ldb" - fi -fi -AC_MSG_NOTICE([ldb lib directory: $ldblibdir]) -AC_SUBST(ldblibdir) -- cgit