From 24ad71529edd3ef6cfe7785d6c6e4f51d5cc42db Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 11 May 2009 09:59:54 -0400 Subject: Update configure rules for LDB and POPT We need to ensure that configure fails with an error if the popt development libraries are not present or if ldb module support is not available. --- server/external/libpopt.m4 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'server/external/libpopt.m4') diff --git a/server/external/libpopt.m4 b/server/external/libpopt.m4 index c5d12550a..e59b2610e 100644 --- a/server/external/libpopt.m4 +++ b/server/external/libpopt.m4 @@ -3,5 +3,7 @@ AC_SUBST(POPT_OBJ) AC_SUBST(POPT_LIBS) AC_SUBST(POPT_CFLAGS) -AC_CHECK_HEADERS(popt.h) -AC_CHECK_LIB(popt, poptGetContext, [ POPT_LIBS="-lpopt" ]) +AC_CHECK_HEADERS([popt.h], + [AC_CHECK_LIB(popt, poptGetContext, [ POPT_LIBS="-lpopt" ], [AC_MSG_ERROR([POPT must support poptGetContext])])], + [AC_MSG_ERROR([POPT development libraries not installed])] +) -- cgit