diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-05-17 10:10:10 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-05-17 10:10:10 (GMT) |
commit | 08394ddb2d62ec8aab9121e45ab9c1a102e85ba4 (patch) | |
tree | d0a01eb678338b1d280280c31086af38cc7c15c6 /configure.in | |
parent | c655a1c0115bf01738d328436b0e4c32893f5b3e (diff) | |
download | monitoring-plugins-08394ddb2d62ec8aab9121e45ab9c1a102e85ba4.tar.gz |
Fix for loading SSL libraries at runtime
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1393 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 4e65c52..0fba2d3 100644 --- a/configure.in +++ b/configure.in | |||
@@ -444,7 +444,8 @@ if ! test x"$with_openssl" = x"no"; then | |||
444 | unset FOUNDINCLUDE | 444 | unset FOUNDINCLUDE |
445 | if test x"$with_openssl" != x"/usr" ; then | 445 | if test x"$with_openssl" != x"/usr" ; then |
446 | CPPFLAGS="$CPPFLAGS -I$with_openssl/include" | 446 | CPPFLAGS="$CPPFLAGS -I$with_openssl/include" |
447 | LDFLAGS="$LDFLAGS -L$with_openssl/lib" | 447 | # Need both to find ssl libraries and to load at runtime |
448 | LDFLAGS="$LDFLAGS -L$with_openssl/lib -R$with_openssl/lib" | ||
448 | fi | 449 | fi |
449 | 450 | ||
450 | dnl check for openssl in $dir/include/openssl | 451 | dnl check for openssl in $dir/include/openssl |