You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2015/07/15 16:50:19 UTC

svn commit: r1691231 - /httpd/test/mod_h2/trunk/configure.ac

Author: icing
Date: Wed Jul 15 14:50:19 2015
New Revision: 1691231

URL: http://svn.apache.org/r1691231
Log:
fix in nghttp dependencies to openssl+libz+libev/event depending on platform

Modified:
    httpd/test/mod_h2/trunk/configure.ac

Modified: httpd/test/mod_h2/trunk/configure.ac
URL: http://svn.apache.org/viewvc/httpd/test/mod_h2/trunk/configure.ac?rev=1691231&r1=1691230&r2=1691231&view=diff
==============================================================================
--- httpd/test/mod_h2/trunk/configure.ac (original)
+++ httpd/test/mod_h2/trunk/configure.ac Wed Jul 15 14:50:19 2015
@@ -182,17 +182,17 @@ case "$OPENSSL_VERSION" in
         CURL_CONF='--with-nghttp2=$(prefix) --with-ssl=$(prefix)'
         if test "$OS" = "Darwin"; then
             OPENSSL_CONF_CMD="./Configure"
-            OPENSSL_CONF="darwin64-x86_64-cc"
+            OPENSSL_CONF="shared -fPIC darwin64-x86_64-cc"
         else 
             OPENSSL_CONF_CMD="./config"
             OPENSSL_CONF="shared -fPIC"
-            NGHTTP2_DEPS="gen/.libevent-installed"
+            NGHTTP2_DEPS="$NGHTTP2_DEPS gen/.libevent-installed"
         fi
         ;;
 esac
 
 if test "$OS" = "Darwin"; then
-    NGHTTP2_DEPS="gen/.zlib-installed gen/.libev-installed"
+    NGHTTP2_DEPS="$NGHTTP2_DEPS gen/.zlib-installed gen/.libev-installed"
 fi
 
 ################################################################################