Update of /cvsroot/nagiosplug/nagiosplug
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24238
Modified Files:
configure.in
Log Message:
Fix for loading SSL libraries at runtime
Index: configure.in
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/configure.in,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -d -r1.183 -r1.184
--- configure.in 17 May 2006 08:56:05 -0000 1.183
+++ configure.in 17 May 2006 10:10:10 -0000 1.184
@@ -444,7 +444,8 @@
unset FOUNDINCLUDE
if test x"$with_openssl" != x"/usr" ; then
CPPFLAGS="$CPPFLAGS -I$with_openssl/include"
- LDFLAGS="$LDFLAGS -L$with_openssl/lib"
+ # Need both to find ssl libraries and to load at runtime
+ LDFLAGS="$LDFLAGS -L$with_openssl/lib -R$with_openssl/lib"
fi
dnl check for openssl in $dir/include/openssl
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
|