[Nagiosplug-checkins] nagiosplug configure.in,1.159,1.160

M. Sean Finney seanius at users.sourceforge.net
Wed Oct 19 06:02:46 CEST 2005


Update of /cvsroot/nagiosplug/nagiosplug
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2644

Modified Files:
	configure.in 
Log Message:
- 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)


Index: configure.in
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/configure.in,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -d -r1.159 -r1.160
--- configure.in	18 Oct 2005 22:35:29 -0000	1.159
+++ configure.in	19 Oct 2005 12:59:54 -0000	1.160
@@ -488,7 +488,7 @@
 
 dnl check for gnutls if openssl isn't found (or is disabled)
 FOUNDGNUTLS="no"
-if ! test "$FOUNDSSL" = "yes"; then
+if ! test "$FOUNDSSL" = "yes" && ! test "$with_gnutls" = "no"; then
 	if test "$GNUTLS" = ""; then
 		CPPFLAGS="$CPPFLAGS -I$GNUTLS"
 	elif ! test "$LIBGNUTLS_CONFIG" = ""; then





More information about the Commits mailing list