You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2010/05/20 23:33:45 UTC

svn commit: r946799 - /activemq/activemq-cpp/trunk/activemq-cpp/m4/find_openssl.m4

Author: tabish
Date: Thu May 20 21:33:45 2010
New Revision: 946799

URL: http://svn.apache.org/viewvc?rev=946799&view=rev
Log:
https://issues.apache.org/activemq/browse/AMQCPP-140

Update the autoconf script that finds openssl to not add a space in -L<libdir> when using the --with-openssl option.

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/m4/find_openssl.m4

Modified: activemq/activemq-cpp/trunk/activemq-cpp/m4/find_openssl.m4
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/m4/find_openssl.m4?rev=946799&r1=946798&r2=946799&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/m4/find_openssl.m4 (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/m4/find_openssl.m4 Thu May 20 21:33:45 2010
@@ -79,7 +79,7 @@ AC_DEFUN([DECAF_SEARCHFOR_OPENSSL], [
         AC_MSG_CHECKING([for openssl/ssl.h in $currentDir/include])
         if test -f "$currentDir/include/openssl/ssl.h"; then
             OPENSSL_INCLUDES="-I$currentDir/include"
-            OPENSSL_LDFLAGS="-L $currentDir/lib"
+            OPENSSL_LDFLAGS="-L$currentDir/lib"
             OPENSSL_LIBS="-lssl -lcrypto"
             decaf_have_ssl="1"
             AC_MSG_RESULT([yes])