summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-12-04 09:48:28 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-12-04 09:48:28 +0000
commita97a6d3d77003e9328c9550583a5a3aba13b7ce8 (patch)
tree38c3eaf050dbf56e53eb12b67f2a729c85249652 /configure.ac
parent1c3baa7191e5598c9ea082ba2f1d827559909e67 (diff)
downloadrsyslog-a97a6d3d77003e9328c9550583a5a3aba13b7ce8.tar.gz
rsyslog-a97a6d3d77003e9328c9550583a5a3aba13b7ce8.tar.xz
rsyslog-a97a6d3d77003e9328c9550583a5a3aba13b7ce8.zip
applied patch from Bartosz Kuzma to restore compilation under Linux
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 12d7d3f9..5f57de5a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,8 +31,8 @@ esac
# Checks for libraries.
AC_CHECK_LIB(rt,clock_gettime,,,)
-AC_CHECK_LIB(dl,dlopen,[have_libdl = yes],[have_libdl = no],)
-AM_CONDITIONAL(HAVE_LIBDL, test x$have_libdl = xyes)
+AC_CHECK_LIB(dl,dlopen,[have_libdl=yes],[have_libdl=no],)
+AM_CONDITIONAL(HAVE_LIBDL, test x$have_libdl=xyes)
# Checks for header files.
AC_HEADER_RESOLV
@@ -137,6 +137,7 @@ AC_ARG_ENABLE(gssapi_krb5,
if test $want_gssapi_krb5 = yes; then
AC_CHECK_LIB(gssapi_krb5, gss_acquire_cred, [
AC_CHECK_HEADER(gssapi/gssapi.h, [
+ AC_MSG_ERROR(GSS-API not ready for primt time yet -- wait for next release);
AC_DEFINE(USE_GSSAPI,,
Define if you want to use GSSAPI)
gss_libs="-lgssapi_krb5"