diff options
author | Holger Weiss <hweiss@users.sourceforge.net> | 2008-04-29 14:54:09 (GMT) |
---|---|---|
committer | Holger Weiss <hweiss@users.sourceforge.net> | 2008-04-29 14:54:09 (GMT) |
commit | 6f2ee45c932dfec9d9a1e651b39d18f98b2ef009 (patch) | |
tree | e508f422e7efc6583b8a8041615d9e630f262ce2 | |
parent | dbd7b90170929a078bfcb62d6fce09569312d050 (diff) | |
download | monitoring-plugins-6f2ee45c932dfec9d9a1e651b39d18f98b2ef009.tar.gz |
Support "--without-pgsql" (reported by Alex Songe via IRC).
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1987 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 418b597..8ba09cb 100644 --- a/configure.in +++ b/configure.in | |||
@@ -181,7 +181,7 @@ AC_ARG_WITH(pgsql, | |||
181 | [sets path to pgsql installation]), | 181 | [sets path to pgsql installation]), |
182 | PGSQL=$withval,) | 182 | PGSQL=$withval,) |
183 | AC_CHECK_LIB(crypt,main) | 183 | AC_CHECK_LIB(crypt,main) |
184 | if test "$ac_cv_lib_crypt_main" = "yes"; then | 184 | if test "$ac_cv_lib_crypt_main" = "yes" -a "x$PGSQL" != "xno"; then |
185 | if test -n "$PGSQL"; then | 185 | if test -n "$PGSQL"; then |
186 | LDFLAGS="$LDFLAGS -L$PGSQL/lib" | 186 | LDFLAGS="$LDFLAGS -L$PGSQL/lib" |
187 | CPPFLAGS="$CPPFLAGS -I$PGSQL/include" | 187 | CPPFLAGS="$CPPFLAGS -I$PGSQL/include" |