summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorMatthias Eble <psychotrahe@users.sourceforge.net>2007-06-18 20:20:56 (GMT)
committerMatthias Eble <psychotrahe@users.sourceforge.net>2007-06-18 20:20:56 (GMT)
commit1aa01940861cae855a9b7cd2c7ccdebc116b309a (patch)
tree489e337e333b10fb52dc25fb112dc1a727f5953d /configure.in
parent79b221828648c97f09136cafb89b0479f60f9d38 (diff)
downloadmonitoring-plugins-1aa01940861cae855a9b7cd2c7ccdebc116b309a.tar.gz
Make Linux specific plugin check_ide_smart build if appropriate headers are found
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1744 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 7ce8a92..5b5b983 100644
--- a/configure.in
+++ b/configure.in
@@ -240,6 +240,19 @@ else
240fi 240fi
241LIBS="$_SAVEDLIBS" 241LIBS="$_SAVEDLIBS"
242 242
243dnl Check for headers used by check_ide_smart
244AC_CHECK_HEADER(linux/hdreg.h, FOUNDINCLUDE=yes, FOUNDINCLUDE=no)
245if test "$FOUNDINCLUDE" = "yes" ; then
246 AC_CHECK_HEADER(linux/types.h, FOUNDINCLUDE=yes, FOUNDINCLUDE=no)
247fi
248
249if test "$FOUNDINCLUDE" = "yes" ; then
250 EXTRAS="$EXTRAS check_ide_smart"
251else
252 AC_MSG_WARN([Skipping check_ide_smart plugin.])
253 AC_MSG_WARN([check_ide_smart is linux specific. It requires linux/hdreg.h and linux/types.h.])
254fi
255
243dnl Check for mysql libraries 256dnl Check for mysql libraries
244np_mysqlclient 257np_mysqlclient
245if test $with_mysql = "no" ; then 258if test $with_mysql = "no" ; then