[Nagiosplug-checkins] nagiosplug configure.in,1.167,1.168

Ton Voon tonvoon at users.sourceforge.net
Tue Jan 31 02:06:07 CET 2006


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

Modified Files:
	configure.in 
Log Message:
Changed configure option to --with-libtap-srcdir because requires
tap.h as well as tap.o


Index: configure.in
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/configure.in,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -d -r1.167 -r1.168
--- configure.in	30 Jan 2006 16:10:50 -0000	1.167
+++ configure.in	31 Jan 2006 10:05:20 -0000	1.168
@@ -74,13 +74,15 @@
 INSTALL_OPTS="-o $with_nagios_user -g $with_nagios_group"
 AC_SUBST(INSTALL_OPTS)
 
-AC_ARG_WITH(libtap-object,
-	ACX_HELP_STRING([--with-libtap-object=path],
-		[full path to tap.o]),
+AC_ARG_WITH(libtap-srcdir,
+	ACX_HELP_STRING([--with-libtap-srcdir=path],
+		[full path to a compiled libtap srcdir]),
 	EXTRA_TEST=test_utils
-	EXTRA_TAPOBJ=$withval
+	EXTRA_TAPOBJ=$withval/tap.o
 	AC_SUBST(EXTRA_TEST)
 	AC_SUBST(EXTRA_TAPOBJ)
+	LDFLAGS="$LDFLAGS -L$withval"
+	CPPFLAGS="$CPPFLAGS -I$withval"
 	)
 
 AC_ARG_WITH(trusted_path,





More information about the Commits mailing list