Code

Removed redundant check and make export LD_LIBRARY_PATH more sh friendly
authorTon Voon <tonvoon@users.sourceforge.net>
Wed, 8 Dec 2004 23:14:42 +0000 (23:14 +0000)
committerTon Voon <tonvoon@users.sourceforge.net>
Wed, 8 Dec 2004 23:14:42 +0000 (23:14 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1014 f882894a-f735-0410-b71e-b25c423dba1c

configure.in

index 65dc698a95ddf174b1270a9a75ab0346abda098b..59d61c8526bfcd70865c6395ddf149e8725aa9a6 100644 (file)
@@ -385,18 +385,18 @@ else
 
   fi
 
-  if test X"$OPT_OPENSSL" != "Xno" &&
-     test "$OPENSSL_ENABLED" != "1"; then
+  if test "$OPENSSL_ENABLED" != "1"; then
     AC_MSG_WARN([OpenSSL libs and/or directories were not found where specified!])
     with_openssl="no"
-  elif test "$OPENSSL_ENABLED" = "1"; then
+  else
     check_tcp_ssl="check_simap check_spop check_jabber check_nntps"
     AC_SUBST(check_tcp_ssl)
     AC_DEFINE(HAVE_SSL,1,[Define if SSL libraries are found])
     with_openssl="yes"
 
     # Needed for subsequent compiled programs
-    export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$OPENSSL/lib"
+    LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$OPENSSL/lib"
+    export LD_LIBRARY_PATH
   fi
 fi