summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2007-01-25 00:26:20 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2007-01-25 00:26:20 (GMT)
commit2e6a2e433fdfda7534918bf20280c0e04f997a00 (patch)
treee137d614b1fdb413d4c277aacf651a7896bf83cf /configure.in
parent49d8064bf3986f3c57385e643aa865dd1390271e (diff)
downloadmonitoring-plugins-2e6a2e433fdfda7534918bf20280c0e04f997a00.tar.gz
Use build-aux directory. Removed unnecessary checks in configure.in.
Keeping libtool to link to libtap - can't find a suitable replacement method git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1582 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in15
1 files changed, 4 insertions, 11 deletions
diff --git a/configure.in b/configure.in
index 52156fa..a4a2de3 100644
--- a/configure.in
+++ b/configure.in
@@ -4,9 +4,9 @@ AC_PREREQ(2.59)
4AC_INIT(nagios-plugins,1.4.5) 4AC_INIT(nagios-plugins,1.4.5)
5AC_CONFIG_SRCDIR(NPTest.pm) 5AC_CONFIG_SRCDIR(NPTest.pm)
6AC_CONFIG_FILES(gl/Makefile) 6AC_CONFIG_FILES(gl/Makefile)
7AC_CONFIG_AUX_DIR(build-aux)
7AM_INIT_AUTOMAKE([1.8.3]) 8AM_INIT_AUTOMAKE([1.8.3])
8AM_CONFIG_HEADER(config.h) 9AM_CONFIG_HEADER(config.h)
9dnl Not yet - AC_CONFIG_AUX_DIR(build-aux)
10AC_CANONICAL_HOST 10AC_CANONICAL_HOST
11 11
12RELEASE=1 12RELEASE=1
@@ -26,15 +26,9 @@ AC_SUBST(INSTALL)
26 26
27AC_PROG_CC 27AC_PROG_CC
28gl_EARLY 28gl_EARLY
29AC_PROG_CPP
30AC_PROG_GCC_TRADITIONAL 29AC_PROG_GCC_TRADITIONAL
31AC_PROG_LIBTOOL 30AC_PROG_LIBTOOL
32 31
33AC_PROG_MAKE_SET
34AC_PROG_AWK
35
36AC_FUNC_MALLOC
37AC_FUNC_REALLOC
38AC_FUNC_ERROR_AT_LINE 32AC_FUNC_ERROR_AT_LINE
39 33
40ifdef([AC_FUNC_STRTOD],[AC_FUNC_STRTOD],[AM_FUNC_STRTOD]) 34ifdef([AC_FUNC_STRTOD],[AC_FUNC_STRTOD],[AM_FUNC_STRTOD])
@@ -401,11 +395,10 @@ dnl
401dnl Checks for header files. 395dnl Checks for header files.
402dnl 396dnl
403 397
404AC_HEADER_STDC
405AC_HEADER_TIME 398AC_HEADER_TIME
406AC_HEADER_SYS_WAIT 399AC_HEADER_SYS_WAIT
407AC_CHECK_HEADERS(signal.h strings.h string.h syslog.h uio.h errno.h sys/types.h sys/time.h sys/socket.h sys/un.h sys/poll.h) 400AC_CHECK_HEADERS(signal.h syslog.h uio.h errno.h sys/time.h sys/socket.h sys/un.h sys/poll.h)
408AC_CHECK_HEADERS(features.h stdarg.h sys/unistd.h ctype.h stdlib.h) 401AC_CHECK_HEADERS(features.h stdarg.h sys/unistd.h ctype.h)
409 402
410dnl Checks for typedefs, structures, and compiler characteristics. 403dnl Checks for typedefs, structures, and compiler characteristics.
411AC_C_CONST 404AC_C_CONST
@@ -444,7 +437,7 @@ AC_TRY_COMPILE([#include <sys/time.h>],
444 AC_DEFINE(NEED_GETTIMEOFDAY,1,[Define if gettimeofday is needed]))) 437 AC_DEFINE(NEED_GETTIMEOFDAY,1,[Define if gettimeofday is needed])))
445 438
446dnl Checks for library functions. 439dnl Checks for library functions.
447AC_CHECK_FUNCS(memmove select socket strdup strstr strtod strtol strtoul floor) 440AC_CHECK_FUNCS(memmove select socket strdup strstr strtol strtoul floor)
448AC_CHECK_FUNCS(poll) 441AC_CHECK_FUNCS(poll)
449 442
450AC_MSG_CHECKING(return type of socket size) 443AC_MSG_CHECKING(return type of socket size)