diff options
author | M. Sean Finney <seanius@users.sourceforge.net> | 2005-10-19 12:59:55 (GMT) |
---|---|---|
committer | M. Sean Finney <seanius@users.sourceforge.net> | 2005-10-19 12:59:55 (GMT) |
commit | 65282c7685ca01c57d94d3df93c2f95d5b945e57 (patch) | |
tree | eb1d0c95752126bd526d939332d14bf40cf7d1f7 /configure.in | |
parent | 8611341fb989382545c0c934c700e027d9bbab15 (diff) | |
download | monitoring-plugins-65282c7685ca01c57d94d3df93c2f95d5b945e57.tar.gz |
- initial attempt at consolidating ssl-related code into netutils.{c,h}
- added some #ifdefs to common.h and netutils.h to prevent multiple
inclusions (as netlibs now includes common.h)
- all ssl plugins (tcp/http/smtp) compile cleanly against gnutls, though
certificate checking still needs to be done.
- modified configure script so you can also explicitly say "without-gnutls"
too (otherwise if you disable openssl you have no way of disabling
gnutls too)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1255 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7ae486c..383f178 100644 --- a/configure.in +++ b/configure.in | |||
@@ -488,7 +488,7 @@ fi | |||
488 | 488 | ||
489 | dnl check for gnutls if openssl isn't found (or is disabled) | 489 | dnl check for gnutls if openssl isn't found (or is disabled) |
490 | FOUNDGNUTLS="no" | 490 | FOUNDGNUTLS="no" |
491 | if ! test "$FOUNDSSL" = "yes"; then | 491 | if ! test "$FOUNDSSL" = "yes" && ! test "$with_gnutls" = "no"; then |
492 | if test "$GNUTLS" = ""; then | 492 | if test "$GNUTLS" = ""; then |
493 | CPPFLAGS="$CPPFLAGS -I$GNUTLS" | 493 | CPPFLAGS="$CPPFLAGS -I$GNUTLS" |
494 | elif ! test "$LIBGNUTLS_CONFIG" = ""; then | 494 | elif ! test "$LIBGNUTLS_CONFIG" = ""; then |