From 1e4e31650c6336b27dd3815d8542e4348ef252ea Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 25 Mar 2008 10:21:20 +0000 Subject: disabling librelp entry point check as I don't know how to do it correctly... --- configure.ac | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 112c4bb1..e9a40cf8 100644 --- a/configure.ac +++ b/configure.ac @@ -459,14 +459,17 @@ if test "x$enable_relp" = "xyes"; then [librelp.h],, [AC_MSG_FAILURE([RELP library is missing (no headers)])] ) - AC_CHECK_LIB( - [relp], - [relpEngineConstruct], - [relp_cflags="" - relp_libs="-lrelp" - ], - [AC_MSG_FAILURE([RELP library is missing])] - ) +# I don't know how to tell that librelp needs -lrt, so I disable +# this check for now - the header check should work well enough... +# rgerhards, 2008-03-25 +# AC_CHECK_LIB( +# [relp], +# [relpEngineGetVersion], +# [relp_cflags="" +# relp_libs="-lrelp" +# ], +# [AC_MSG_FAILURE([RELP library is missing])] +# ) fi AM_CONDITIONAL(ENABLE_RELP, test x$enable_relp = xyes) AC_SUBST(relp_cflags) -- cgit