diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2008-05-27 21:52:36 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2008-05-27 21:52:36 +0000 |
commit | 52b03be7bf33058f90513c289a266e529dbc994f (patch) | |
tree | 49c50384bdc5d9bcd30caaef55cc7efcb297abae | |
parent | 4c6c29b001c5a193ccb9cd6571483bd1b3b0534c (diff) | |
download | monitoring-plugins-52b03be7bf33058f90513c289a266e529dbc994f.tar.gz |
Not picking up solaris systems correctly for check_dhcp. Only
affected SunStudio compiles of check_dhcp (1890260 - Rob Windsor)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2003 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | THANKS.in | 1 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -234,3 +234,4 @@ Harald Jenny Matthias Urlichs Jan Wagner Christian Schneemann +Rob Windsor diff --git a/configure.in b/configure.in index 856f3aae..03cec2f2 100644 --- a/configure.in +++ b/configure.in @@ -1531,9 +1531,9 @@ case $host in AC_DEFINE(__bsd__,1,[bsd specific code in check_dhcp.c]) ;; *linux*) - AC_DEFINE(__linux__,1,[sun specific code in check_dhcp.c]) + AC_DEFINE(__linux__,1,[linux specific code in check_dhcp.c]) ;; - *sun* | solaris*) + *sun* | *solaris*) AC_DEFINE(__sun__,1,[sun specific code in check_dhcp.c]) ;; *hpux*) |