aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ton Voon <tonvoon@users.sourceforge.net> 2004-12-20 21:26:41 +0000
committerGravatar Ton Voon <tonvoon@users.sourceforge.net> 2004-12-20 21:26:41 +0000
commit6240b64efd8a4148e90b029cf86b20a69439ce34 (patch)
tree13f43951e959ad14d318f317fb0254c551017b42
parent7bd302bd788d07391ca1c9d284bf443438fd4cfd (diff)
downloadmonitoring-plugins-6240b64efd8a4148e90b029cf86b20a69439ce34.tar.gz
Fix compile errors when looking for openssl
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1040 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--configure.in18
1 files changed, 11 insertions, 7 deletions
diff --git a/configure.in b/configure.in
index 21d28de5..8c196352 100644
--- a/configure.in
+++ b/configure.in
@@ -293,12 +293,12 @@ else
dnl Check usual areas for openssl
if test "$PKGTEST" = "yes"; then
AC_PATH_PROG(OPENSSL,openssl)
- # Don't think 2 tests below are necessary because /usr is always included
- # if test "$OPENSSL" = "/usr/bin/openssl"; then
- # OPENSSL=/usr
- #elif test "$OPENSSL" = "/usr/sbin/openssl"; then
- # OPENSSL=/usr
- if test "$OPENSSL" = "/opt/bin/openssl"; then
+ dnl The /usr checks need to be done so that the right area is include'd
+ if test "$OPENSSL" = "/usr/bin/openssl"; then
+ OPENSSL=/usr
+ elif test "$OPENSSL" = "/usr/sbin/openssl"; then
+ OPENSSL=/usr
+ elif test "$OPENSSL" = "/opt/bin/openssl"; then
OPENSSL=/opt
elif test "$OPENSSL" = "/opt/openssl/bin/openssl"; then
OPENSSL=/opt/openssl
@@ -386,7 +386,11 @@ else
fi
if test "$OPENSSL_ENABLED" != "1"; then
- AC_MSG_WARN([OpenSSL libs and/or directories were not found where specified!])
+ if test "$PKGTEST" ="yes"; then
+ AC_MSG_WARN([OpenSSL libs could not be found])
+ else
+ AC_MSG_WARN([OpenSSL libs and/or directories were not found where specified!])
+ fi
with_openssl="no"
else
check_tcp_ssl="check_simap check_spop check_jabber check_nntps"