[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
- Previous message: [Nagiosplug-checkins] nagiosplug/plugins check_tcp.c,1.66,1.67
- Next message: [Nagiosplug-checkins] nagiosplug/plugins Makefile.am,1.54,1.55 check_http.c,1.81,1.82 check_smtp.c,1.47,1.48 check_tcp.c,1.67,1.68 common.h,1.15,1.16 netutils.c,1.24,1.25 netutils.h,1.12,1.13
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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
- Previous message: [Nagiosplug-checkins] nagiosplug/plugins check_tcp.c,1.66,1.67
- Next message: [Nagiosplug-checkins] nagiosplug/plugins Makefile.am,1.54,1.55 check_http.c,1.81,1.82 check_smtp.c,1.47,1.48 check_tcp.c,1.67,1.68 common.h,1.15,1.16 netutils.c,1.24,1.25 netutils.h,1.12,1.13
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Commits
mailing list