summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index bdd4431..e8fc789 100644
--- a/configure.in
+++ b/configure.in
@@ -2,7 +2,8 @@ dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.59) 2AC_PREREQ(2.59)
3AC_INIT(nagios-plugins,1.4.15) 3AC_INIT(nagios-plugins,1.4.15)
4AC_CONFIG_SRCDIR(NPTest.pm) 4AC_CONFIG_SRCDIR(NPTest.pm)
5AC_CONFIG_FILES(gl/Makefile) 5AC_CONFIG_FILES([gl/Makefile
6 nagios-plugins.spec])
6AC_CONFIG_AUX_DIR(build-aux) 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)
@@ -162,6 +163,8 @@ dnl
162dnl check for math-related functions needing -lm 163dnl check for math-related functions needing -lm
163AC_CHECK_HEADERS(math.h) 164AC_CHECK_HEADERS(math.h)
164AC_CHECK_LIB(m,floor,MATHLIBS="-lm") 165AC_CHECK_LIB(m,floor,MATHLIBS="-lm")
166AC_CHECK_HEADERS(mp.h)
167AC_CHECK_LIB(bsd,pow,MATHLIBS="$MATHLIBS -lbsd")
165AC_SUBST(MATHLIBS) 168AC_SUBST(MATHLIBS)
166 169
167dnl Check if we buils local libtap 170dnl Check if we buils local libtap