|
@@ -118,7 +118,7 @@ AC_SUBST(PERL, $with_perl)
|
|
|
|
|
|
|
|
dnl openssl/gnutls
|
|
dnl openssl/gnutls
|
|
|
AC_ARG_WITH(openssl,
|
|
AC_ARG_WITH(openssl,
|
|
|
- AC_HELP_STRING([--with-openssl=DIR],
|
|
|
|
|
|
|
+ AC_HELP_STRING([--with-openssl=DIR],
|
|
|
[path to openssl installation]),)
|
|
[path to openssl installation]),)
|
|
|
|
|
|
|
|
AC_ARG_WITH(gnutls,
|
|
AC_ARG_WITH(gnutls,
|
|
@@ -156,23 +156,41 @@ AC_CHECK_HEADERS(math.h)
|
|
|
AC_CHECK_LIB(m,floor,MATHLIBS="-lm")
|
|
AC_CHECK_LIB(m,floor,MATHLIBS="-lm")
|
|
|
AC_SUBST(MATHLIBS)
|
|
AC_SUBST(MATHLIBS)
|
|
|
|
|
|
|
|
-dnl Check for libtap, to run perl-like tests
|
|
|
|
|
-AC_CHECK_LIB(tap, plan_tests,
|
|
|
|
|
|
|
+dnl Check if we buils local libtap
|
|
|
|
|
+AC_ARG_ENABLE(libtap,
|
|
|
|
|
+ AC_HELP_STRING([--enable-libtap],
|
|
|
|
|
+ [Enable built-in libtap for unit-testing (default: autodetect system library).]),
|
|
|
|
|
+ [enable_libtap=$enableval],
|
|
|
|
|
+ [enable_libtap=no])
|
|
|
|
|
+AM_CONDITIONAL([USE_LIBTAP_LOCAL],[test "$enable_libtap" = "yes"])
|
|
|
|
|
+
|
|
|
|
|
+# If not local, check if we can use the system one
|
|
|
|
|
+if test "$enable_libtap" != "yes" ; then
|
|
|
|
|
+ dnl Check for libtap, to run perl-like tests
|
|
|
|
|
+ AC_CHECK_LIB(tap, plan_tests,
|
|
|
|
|
+ enable_libtap="yes"
|
|
|
|
|
+ )
|
|
|
|
|
+fi
|
|
|
|
|
+
|
|
|
|
|
+# Finally, define tests if we use libtap
|
|
|
|
|
+if test "$enable_libtap" = "yes" ; then
|
|
|
EXTRA_TEST="test_utils test_disk test_tcp test_cmd test_base64"
|
|
EXTRA_TEST="test_utils test_disk test_tcp test_cmd test_base64"
|
|
|
AC_SUBST(EXTRA_TEST)
|
|
AC_SUBST(EXTRA_TEST)
|
|
|
- )
|
|
|
|
|
|
|
+fi
|
|
|
|
|
|
|
|
dnl INI Parsing
|
|
dnl INI Parsing
|
|
|
AC_ARG_ENABLE(extra-opts,
|
|
AC_ARG_ENABLE(extra-opts,
|
|
|
- AC_HELP_STRING([--enable-extra-opts],
|
|
|
|
|
|
|
+ AC_HELP_STRING([--enable-extra-opts],
|
|
|
[Enables parsing of plugins ini config files for extra options (default: no)]),
|
|
[Enables parsing of plugins ini config files for extra options (default: no)]),
|
|
|
[enable_extra_opts=$enableval],
|
|
[enable_extra_opts=$enableval],
|
|
|
[enable_extra_opts=no])
|
|
[enable_extra_opts=no])
|
|
|
AM_CONDITIONAL([USE_PARSE_INI],[test "$enable_extra_opts" = "yes"])
|
|
AM_CONDITIONAL([USE_PARSE_INI],[test "$enable_extra_opts" = "yes"])
|
|
|
if test "$enable_extra_opts" = "yes" ; then
|
|
if test "$enable_extra_opts" = "yes" ; then
|
|
|
- EXTRA_TEST="$EXTRA_TEST test_ini test_opts"
|
|
|
|
|
- AC_SUBST(EXTRA_TEST)
|
|
|
|
|
AC_DEFINE(NP_EXTRA_OPTS,[1],[Enable INI file parsing.])
|
|
AC_DEFINE(NP_EXTRA_OPTS,[1],[Enable INI file parsing.])
|
|
|
|
|
+ if test "$enable_libtap" = "yes"; then
|
|
|
|
|
+ EXTRA_TEST="$EXTRA_TEST test_ini test_opts"
|
|
|
|
|
+ AC_SUBST(EXTRA_TEST)
|
|
|
|
|
+ fi
|
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
dnl Check for PostgreSQL libraries
|
|
dnl Check for PostgreSQL libraries
|
|
@@ -272,8 +290,8 @@ fi
|
|
|
if test "$FOUNDINCLUDE" = "yes" ; then
|
|
if test "$FOUNDINCLUDE" = "yes" ; then
|
|
|
EXTRAS="$EXTRAS check_ide_smart"
|
|
EXTRAS="$EXTRAS check_ide_smart"
|
|
|
else
|
|
else
|
|
|
- AC_MSG_WARN([Skipping check_ide_smart plugin.])
|
|
|
|
|
- AC_MSG_WARN([check_ide_smart is linux specific. It requires linux/hdreg.h and linux/types.h.])
|
|
|
|
|
|
|
+ AC_MSG_WARN([Skipping check_ide_smart plugin.])
|
|
|
|
|
+ AC_MSG_WARN([check_ide_smart is linux specific. It requires linux/hdreg.h and linux/types.h.])
|
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
dnl Check for mysql libraries
|
|
dnl Check for mysql libraries
|
|
@@ -467,7 +485,7 @@ ac_cv_HAVE_VA_COPY=yes,
|
|
|
ac_cv_HAVE_VA_COPY=no)])
|
|
ac_cv_HAVE_VA_COPY=no)])
|
|
|
if test x"$ac_cv_HAVE_VA_COPY" = x"yes"; then
|
|
if test x"$ac_cv_HAVE_VA_COPY" = x"yes"; then
|
|
|
AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available])
|
|
AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available])
|
|
|
-else
|
|
|
|
|
|
|
+else
|
|
|
AC_CACHE_CHECK([for __va_copy],ac_cv_HAVE___VA_COPY,[
|
|
AC_CACHE_CHECK([for __va_copy],ac_cv_HAVE___VA_COPY,[
|
|
|
AC_TRY_LINK([#include <stdarg.h>
|
|
AC_TRY_LINK([#include <stdarg.h>
|
|
|
va_list ap1,ap2;], [__va_copy(ap1,ap2);],
|
|
va_list ap1,ap2;], [__va_copy(ap1,ap2);],
|
|
@@ -513,7 +531,7 @@ AC_PATH_PROG(PATH_TO_PS,ps)
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(for ps syntax)
|
|
AC_MSG_CHECKING(for ps syntax)
|
|
|
AC_ARG_WITH(ps_command,
|
|
AC_ARG_WITH(ps_command,
|
|
|
- ACX_HELP_STRING([--with-ps-command=PATH],
|
|
|
|
|
|
|
+ ACX_HELP_STRING([--with-ps-command=PATH],
|
|
|
[Verbatim command to execute for ps]),
|
|
[Verbatim command to execute for ps]),
|
|
|
PS_COMMAND=$withval)
|
|
PS_COMMAND=$withval)
|
|
|
AC_ARG_WITH(ps_format,
|
|
AC_ARG_WITH(ps_format,
|
|
@@ -521,7 +539,7 @@ AC_ARG_WITH(ps_format,
|
|
|
[Format string for scanning ps output]),
|
|
[Format string for scanning ps output]),
|
|
|
PS_FORMAT=$withval)
|
|
PS_FORMAT=$withval)
|
|
|
AC_ARG_WITH(ps_cols,
|
|
AC_ARG_WITH(ps_cols,
|
|
|
- ACX_HELP_STRING([--with-ps-cols=NUM],
|
|
|
|
|
|
|
+ ACX_HELP_STRING([--with-ps-cols=NUM],
|
|
|
[Number of columns in ps command]),
|
|
[Number of columns in ps command]),
|
|
|
PS_COLS=$withval)
|
|
PS_COLS=$withval)
|
|
|
AC_ARG_WITH(ps_varlist,
|
|
AC_ARG_WITH(ps_varlist,
|
|
@@ -529,7 +547,7 @@ AC_ARG_WITH(ps_varlist,
|
|
|
[Variable list for sscanf of 'ps' output]),
|
|
[Variable list for sscanf of 'ps' output]),
|
|
|
PS_VARLIST=$withval)
|
|
PS_VARLIST=$withval)
|
|
|
|
|
|
|
|
-if test -n "$PS_COMMAND" && test -n "$PS_FORMAT" && test -n "$PS_COLS" && test -n "$PS_VARLIST"; then
|
|
|
|
|
|
|
+if test -n "$PS_COMMAND" && test -n "$PS_FORMAT" && test -n "$PS_COLS" && test -n "$PS_VARLIST"; then
|
|
|
ac_cv_ps_command="$PS_COMMAND"
|
|
ac_cv_ps_command="$PS_COMMAND"
|
|
|
ac_cv_ps_format="$PS_FORMAT"
|
|
ac_cv_ps_format="$PS_FORMAT"
|
|
|
ac_cv_ps_varlist="$PS_VARLIST"
|
|
ac_cv_ps_varlist="$PS_VARLIST"
|
|
@@ -603,7 +621,7 @@ then
|
|
|
ac_cv_ps_cols=9
|
|
ac_cv_ps_cols=9
|
|
|
AC_MSG_RESULT([$ac_cv_ps_command])
|
|
AC_MSG_RESULT([$ac_cv_ps_command])
|
|
|
|
|
|
|
|
-dnl Some *BSDs have different format for ps. This is mainly to catch FreeBSD 4.
|
|
|
|
|
|
|
+dnl Some *BSDs have different format for ps. This is mainly to catch FreeBSD 4.
|
|
|
dnl Limitation: Only first 16 chars returned for ucomm field
|
|
dnl Limitation: Only first 16 chars returned for ucomm field
|
|
|
dnl Must come before ps -weo
|
|
dnl Must come before ps -weo
|
|
|
elif ps -axwo 'stat uid pid ppid vsz rss pcpu ucomm command' 2>/dev/null | \
|
|
elif ps -axwo 'stat uid pid ppid vsz rss pcpu ucomm command' 2>/dev/null | \
|
|
@@ -680,9 +698,9 @@ then
|
|
|
ac_cv_ps_cols=9
|
|
ac_cv_ps_cols=9
|
|
|
AC_MSG_RESULT([$ac_cv_ps_command])
|
|
AC_MSG_RESULT([$ac_cv_ps_command])
|
|
|
|
|
|
|
|
-dnl Tru64 - needs %*[ +<>] in PS_FORMAT.
|
|
|
|
|
|
|
+dnl Tru64 - needs %*[ +<>] in PS_FORMAT.
|
|
|
dnl Has /usr/bin/ps and /sbin/ps - force sbin version
|
|
dnl Has /usr/bin/ps and /sbin/ps - force sbin version
|
|
|
-dnl Can't use vsize and rssize because comes back with text (eg, 1.5M instead
|
|
|
|
|
|
|
+dnl Can't use vsize and rssize because comes back with text (eg, 1.5M instead
|
|
|
dnl of 1500). Will need big changes to check_procs to support
|
|
dnl of 1500). Will need big changes to check_procs to support
|
|
|
elif /sbin/ps -eo 'stat uid pid ppid pcpu etime comm args' 2>/dev/null | \
|
|
elif /sbin/ps -eo 'stat uid pid ppid pcpu etime comm args' 2>/dev/null | \
|
|
|
egrep -i ["^ *S +[UID]+ +[PID]+ +[PID]+ +[%CPU]+ +[ELAPSD]+ +[COMMAND]+ +[COMMAND]+"] > /dev/null
|
|
egrep -i ["^ *S +[UID]+ +[PID]+ +[PID]+ +[%CPU]+ +[ELAPSD]+ +[COMMAND]+ +[COMMAND]+"] > /dev/null
|
|
@@ -808,7 +826,7 @@ then
|
|
|
ac_cv_ps_cols=8
|
|
ac_cv_ps_cols=8
|
|
|
AC_MSG_RESULT([$ac_cv_ps_command])
|
|
AC_MSG_RESULT([$ac_cv_ps_command])
|
|
|
|
|
|
|
|
-dnl UnixWare
|
|
|
|
|
|
|
+dnl UnixWare
|
|
|
elif ps -Al 2>/dev/null | \
|
|
elif ps -Al 2>/dev/null | \
|
|
|
egrep -i ["^ *F +S +UID +PID +PPID +CLS +PRI +NI +C +ADDR +SZ +WCHAN +TTY +TIME +COMD"] >/dev/null
|
|
egrep -i ["^ *F +S +UID +PID +PPID +CLS +PRI +NI +C +ADDR +SZ +WCHAN +TTY +TIME +COMD"] >/dev/null
|
|
|
then
|
|
then
|
|
@@ -1173,7 +1191,7 @@ fi
|
|
|
AC_PATH_PROG(PATH_TO_SMBCLIENT,smbclient)
|
|
AC_PATH_PROG(PATH_TO_SMBCLIENT,smbclient)
|
|
|
AC_ARG_WITH(smbclient_command,
|
|
AC_ARG_WITH(smbclient_command,
|
|
|
ACX_HELP_STRING([--with-smbclient-command=PATH],
|
|
ACX_HELP_STRING([--with-smbclient-command=PATH],
|
|
|
- [sets path to smbclient]),
|
|
|
|
|
|
|
+ [sets path to smbclient]),
|
|
|
PATH_TO_SMBCLIENT=$withval)
|
|
PATH_TO_SMBCLIENT=$withval)
|
|
|
if test -n "$PATH_TO_SMBCLIENT"
|
|
if test -n "$PATH_TO_SMBCLIENT"
|
|
|
then
|
|
then
|
|
@@ -1229,7 +1247,7 @@ fi
|
|
|
AC_PATH_PROG(PATH_TO_QUAKESTAT,quakestat)
|
|
AC_PATH_PROG(PATH_TO_QUAKESTAT,quakestat)
|
|
|
AC_PATH_PROG(PATH_TO_QSTAT,qstat)
|
|
AC_PATH_PROG(PATH_TO_QSTAT,qstat)
|
|
|
AC_ARG_WITH(qstat_command,
|
|
AC_ARG_WITH(qstat_command,
|
|
|
- ACX_HELP_STRING([--with-qstat-command=PATH],
|
|
|
|
|
|
|
+ ACX_HELP_STRING([--with-qstat-command=PATH],
|
|
|
[Path to qstat command]), PATH_TO_QSTAT=$withval)
|
|
[Path to qstat command]), PATH_TO_QSTAT=$withval)
|
|
|
|
|
|
|
|
if test -x "$PATH_TO_QUAKESTAT"
|
|
if test -x "$PATH_TO_QUAKESTAT"
|
|
@@ -1245,7 +1263,7 @@ else
|
|
|
AC_MSG_WARN([Get qstat from http://www.activesw.com/people/steve/qstat.html in order to make check_game plugin])
|
|
AC_MSG_WARN([Get qstat from http://www.activesw.com/people/steve/qstat.html in order to make check_game plugin])
|
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
-if test $ac_cv_path_to_qstat
|
|
|
|
|
|
|
+if test $ac_cv_path_to_qstat
|
|
|
then
|
|
then
|
|
|
AC_DEFINE_UNQUOTED(PATH_TO_QSTAT,"$ac_cv_path_to_qstat",
|
|
AC_DEFINE_UNQUOTED(PATH_TO_QSTAT,"$ac_cv_path_to_qstat",
|
|
|
[path to qstat/quakestat])
|
|
[path to qstat/quakestat])
|
|
@@ -1404,12 +1422,12 @@ AC_CHECK_MEMBERS([struct swapent.se_nblks],,,[
|
|
|
#include <sys/swap.h>
|
|
#include <sys/swap.h>
|
|
|
])
|
|
])
|
|
|
|
|
|
|
|
-if test "$ac_cv_have_decl_swapctl" = "yes";
|
|
|
|
|
|
|
+if test "$ac_cv_have_decl_swapctl" = "yes";
|
|
|
then
|
|
then
|
|
|
EXTRAS="$EXTRAS check_swap"
|
|
EXTRAS="$EXTRAS check_swap"
|
|
|
AC_MSG_CHECKING([for 2-arg (SVR4) swapctl])
|
|
AC_MSG_CHECKING([for 2-arg (SVR4) swapctl])
|
|
|
if test "$ac_cv_type_swaptbl_t" = "yes" -a \
|
|
if test "$ac_cv_type_swaptbl_t" = "yes" -a \
|
|
|
- "$ac_cv_type_swapent_t" = "yes";
|
|
|
|
|
|
|
+ "$ac_cv_type_swapent_t" = "yes";
|
|
|
then
|
|
then
|
|
|
AC_MSG_RESULT([yes])
|
|
AC_MSG_RESULT([yes])
|
|
|
ac_cv_check_swap_swapctl_svr4="1";
|
|
ac_cv_check_swap_swapctl_svr4="1";
|
|
@@ -1418,7 +1436,7 @@ then
|
|
|
else
|
|
else
|
|
|
AC_MSG_RESULT([no])
|
|
AC_MSG_RESULT([no])
|
|
|
AC_MSG_CHECKING([for 3-arg (*BSD) swapctl])
|
|
AC_MSG_CHECKING([for 3-arg (*BSD) swapctl])
|
|
|
- if test "$ac_cv_member_struct_swapent_se_nblks" = "yes";
|
|
|
|
|
|
|
+ if test "$ac_cv_member_struct_swapent_se_nblks" = "yes";
|
|
|
then
|
|
then
|
|
|
AC_MSG_RESULT([yes])
|
|
AC_MSG_RESULT([yes])
|
|
|
AC_DEFINE([CHECK_SWAP_SWAPCTL_BSD],1,
|
|
AC_DEFINE([CHECK_SWAP_SWAPCTL_BSD],1,
|
|
@@ -1459,12 +1477,12 @@ dnl end tests for the swapctl system calls
|
|
|
dnl
|
|
dnl
|
|
|
|
|
|
|
|
|
|
|
|
|
-if test "x$ac_cv_have_swap" != "x"
|
|
|
|
|
|
|
+if test "x$ac_cv_have_swap" != "x"
|
|
|
then
|
|
then
|
|
|
AC_DEFINE(HAVE_SWAP,1,[Define if swap/swapinfo command is found])
|
|
AC_DEFINE(HAVE_SWAP,1,[Define if swap/swapinfo command is found])
|
|
|
EXTRAS="$EXTRAS check_swap"
|
|
EXTRAS="$EXTRAS check_swap"
|
|
|
fi
|
|
fi
|
|
|
-if test "x$ac_cv_swap_command" != "x"
|
|
|
|
|
|
|
+if test "x$ac_cv_swap_command" != "x"
|
|
|
then
|
|
then
|
|
|
AC_DEFINE_UNQUOTED(SWAP_COMMAND,"$ac_cv_swap_command",
|
|
AC_DEFINE_UNQUOTED(SWAP_COMMAND,"$ac_cv_swap_command",
|
|
|
[Path to swap/swapinfo binary, with any args])
|
|
[Path to swap/swapinfo binary, with any args])
|
|
@@ -1509,7 +1527,7 @@ fi
|
|
|
AC_PATH_PROG(PATH_TO_APTGET,apt-get)
|
|
AC_PATH_PROG(PATH_TO_APTGET,apt-get)
|
|
|
AC_ARG_WITH(apt-get_command,
|
|
AC_ARG_WITH(apt-get_command,
|
|
|
ACX_HELP_STRING([--with-apt-get-command=PATH],
|
|
ACX_HELP_STRING([--with-apt-get-command=PATH],
|
|
|
- [Path to apt-get command]),
|
|
|
|
|
|
|
+ [Path to apt-get command]),
|
|
|
with_apt_get_command=$withval,
|
|
with_apt_get_command=$withval,
|
|
|
with_apt_get_command=$PATH_TO_APTGET)
|
|
with_apt_get_command=$PATH_TO_APTGET)
|
|
|
AC_DEFINE_UNQUOTED(PATH_TO_APTGET,"$PATH_TO_APTGET",[Path to apt-get command, if present])
|
|
AC_DEFINE_UNQUOTED(PATH_TO_APTGET,"$PATH_TO_APTGET",[Path to apt-get command, if present])
|
|
@@ -1538,7 +1556,7 @@ case $host in
|
|
|
*sun* | *solaris*)
|
|
*sun* | *solaris*)
|
|
|
AC_DEFINE(__sun__,1,[sun specific code in check_dhcp.c])
|
|
AC_DEFINE(__sun__,1,[sun specific code in check_dhcp.c])
|
|
|
;;
|
|
;;
|
|
|
- *hpux*)
|
|
|
|
|
|
|
+ *hpux*)
|
|
|
AC_DEFINE(__hpux__,1,[hpux specific code in check_dhcp.c])
|
|
AC_DEFINE(__hpux__,1,[hpux specific code in check_dhcp.c])
|
|
|
;;
|
|
;;
|
|
|
esac
|
|
esac
|
|
@@ -1558,8 +1576,8 @@ dnl 2.6.9-11 (okay in 2.6.9-5). Redhat investigating root cause
|
|
|
dnl We patch plugins/popen.c
|
|
dnl We patch plugins/popen.c
|
|
|
dnl Need to add smp because uname different on those
|
|
dnl Need to add smp because uname different on those
|
|
|
dnl Can force patch to be applied with --enable-redhat-pthread-workaround
|
|
dnl Can force patch to be applied with --enable-redhat-pthread-workaround
|
|
|
-AC_ARG_ENABLE(redhat-pthread-workaround,
|
|
|
|
|
- AC_HELP_STRING([--enable-redhat-pthread-workaround],
|
|
|
|
|
|
|
+AC_ARG_ENABLE(redhat-pthread-workaround,
|
|
|
|
|
+ AC_HELP_STRING([--enable-redhat-pthread-workaround],
|
|
|
[force Redhat patch to be applied (default: test system)]),
|
|
[force Redhat patch to be applied (default: test system)]),
|
|
|
[ac_cv_enable_redhat_pthread_workaround=$enableval],
|
|
[ac_cv_enable_redhat_pthread_workaround=$enableval],
|
|
|
[ac_cv_enable_redhat_pthread_workaround=test])
|
|
[ac_cv_enable_redhat_pthread_workaround=test])
|
|
@@ -1581,7 +1599,7 @@ fi
|
|
|
|
|
|
|
|
dnl Perl modules
|
|
dnl Perl modules
|
|
|
AC_ARG_ENABLE(perl-modules,
|
|
AC_ARG_ENABLE(perl-modules,
|
|
|
- AC_HELP_STRING([--enable-perl-modules],
|
|
|
|
|
|
|
+ AC_HELP_STRING([--enable-perl-modules],
|
|
|
[Enables installation of Nagios::Plugin and its dependencies (default: no)]),
|
|
[Enables installation of Nagios::Plugin and its dependencies (default: no)]),
|
|
|
[enable_perl_modules=$enableval],
|
|
[enable_perl_modules=$enableval],
|
|
|
[enable_perl_modules=no])
|
|
[enable_perl_modules=no])
|
|
@@ -1589,6 +1607,18 @@ if test "$enable_perl_modules" = "yes" ; then
|
|
|
AC_SUBST(PERLMODS_DIR,perlmods)
|
|
AC_SUBST(PERLMODS_DIR,perlmods)
|
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
|
|
+# From Tap configure
|
|
|
|
|
+# Checks for libraries
|
|
|
|
|
+case "$host" in
|
|
|
|
|
+ *-*-*freebsd4*)
|
|
|
|
|
+ LDFLAGS="$LDFLAGS -pthread"
|
|
|
|
|
+ HAVE_LIBPTHREAD=1
|
|
|
|
|
+ ;;
|
|
|
|
|
+ *)
|
|
|
|
|
+ AC_CHECK_LIB(pthread, main)
|
|
|
|
|
+ ;;
|
|
|
|
|
+esac
|
|
|
|
|
+
|
|
|
dnl External libraries - see ACKNOWLEDGEMENTS
|
|
dnl External libraries - see ACKNOWLEDGEMENTS
|
|
|
gl_INIT
|
|
gl_INIT
|
|
|
|
|
|
|
@@ -1598,24 +1628,25 @@ if test "$ac_cv_uname_s" = 'SunOS' -a \( "x$ac_cv_prog_ac_ct_AR" = "x" -o "$ac_c
|
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
AC_OUTPUT(
|
|
AC_OUTPUT(
|
|
|
- Makefile
|
|
|
|
|
- lib/Makefile
|
|
|
|
|
- plugins/Makefile
|
|
|
|
|
|
|
+ Makefile
|
|
|
|
|
+ tap/Makefile
|
|
|
|
|
+ lib/Makefile
|
|
|
|
|
+ plugins/Makefile
|
|
|
lib/tests/Makefile
|
|
lib/tests/Makefile
|
|
|
plugins-root/Makefile
|
|
plugins-root/Makefile
|
|
|
- plugins-scripts/Makefile
|
|
|
|
|
- plugins-scripts/subst
|
|
|
|
|
- plugins-scripts/utils.pm
|
|
|
|
|
- plugins-scripts/utils.sh
|
|
|
|
|
|
|
+ plugins-scripts/Makefile
|
|
|
|
|
+ plugins-scripts/subst
|
|
|
|
|
+ plugins-scripts/utils.pm
|
|
|
|
|
+ plugins-scripts/utils.sh
|
|
|
perlmods/Makefile
|
|
perlmods/Makefile
|
|
|
- command.cfg
|
|
|
|
|
- test.pl
|
|
|
|
|
- pkg/solaris/pkginfo
|
|
|
|
|
- po/Makefile.in
|
|
|
|
|
|
|
+ command.cfg
|
|
|
|
|
+ test.pl
|
|
|
|
|
+ pkg/solaris/pkginfo
|
|
|
|
|
+ po/Makefile.in
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
-dnl the ones below that are commented out need to be cleaned up
|
|
|
|
|
|
|
+dnl the ones below that are commented out need to be cleaned up
|
|
|
dnl in the configure code above to use with_foo instead of ac_cv_foo
|
|
dnl in the configure code above to use with_foo instead of ac_cv_foo
|
|
|
dnl if we want them to show up here. it'd also make the code cleaner.
|
|
dnl if we want them to show up here. it'd also make the code cleaner.
|
|
|
dnl i'll get to that on another rainy day :) -sf
|
|
dnl i'll get to that on another rainy day :) -sf
|
|
@@ -1649,5 +1680,5 @@ ACX_FEATURE([with],[perl])
|
|
|
ACX_FEATURE([enable],[perl-modules])
|
|
ACX_FEATURE([enable],[perl-modules])
|
|
|
ACX_FEATURE([with],[cgiurl])
|
|
ACX_FEATURE([with],[cgiurl])
|
|
|
ACX_FEATURE([with],[trusted-path])
|
|
ACX_FEATURE([with],[trusted-path])
|
|
|
-
|
|
|
|
|
|
|
+ACX_FEATURE([enable],[libtap])
|
|
|
|
|
|