summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-01-31 10:05:20 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-01-31 10:05:20 (GMT)
commit28bd24d61dc3b0b94b58081b35d1a22d7930fa45 (patch)
treea603ca6b21a22eddb176567dd9b49f741f627a48 /configure.in
parente0688a69114c95efaa0fbee8f8e91f6dcc21a1ee (diff)
downloadmonitoring-plugins-28bd24d61dc3b0b94b58081b35d1a22d7930fa45.tar.gz
Changed configure option to --with-libtap-srcdir because requires
tap.h as well as tap.o git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1305 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 9afbf60..d56501a 100644
--- a/configure.in
+++ b/configure.in
@@ -74,13 +74,15 @@ AC_SUBST(with_nagios_group)
74INSTALL_OPTS="-o $with_nagios_user -g $with_nagios_group" 74INSTALL_OPTS="-o $with_nagios_user -g $with_nagios_group"
75AC_SUBST(INSTALL_OPTS) 75AC_SUBST(INSTALL_OPTS)
76 76
77AC_ARG_WITH(libtap-object, 77AC_ARG_WITH(libtap-srcdir,
78 ACX_HELP_STRING([--with-libtap-object=path], 78 ACX_HELP_STRING([--with-libtap-srcdir=path],
79 [full path to tap.o]), 79 [full path to a compiled libtap srcdir]),
80 EXTRA_TEST=test_utils 80 EXTRA_TEST=test_utils
81 EXTRA_TAPOBJ=$withval 81 EXTRA_TAPOBJ=$withval/tap.o
82 AC_SUBST(EXTRA_TEST) 82 AC_SUBST(EXTRA_TEST)
83 AC_SUBST(EXTRA_TAPOBJ) 83 AC_SUBST(EXTRA_TAPOBJ)
84 LDFLAGS="$LDFLAGS -L$withval"
85 CPPFLAGS="$CPPFLAGS -I$withval"
84 ) 86 )
85 87
86AC_ARG_WITH(trusted_path, 88AC_ARG_WITH(trusted_path,