You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2014/01/22 00:51:42 UTC

git commit: TS-2504: fix bad OpenSSL lib64 detection patch merge

Updated Branches:
  refs/heads/master 1ae99c020 -> 207df86f7


TS-2504: fix bad OpenSSL lib64 detection patch merge


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/207df86f
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/207df86f
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/207df86f

Branch: refs/heads/master
Commit: 207df86f799d3653154fc6f2b3731b96d19337d4
Parents: 1ae99c0
Author: James Peach <jp...@apache.org>
Authored: Tue Jan 21 15:51:24 2014 -0800
Committer: James Peach <jp...@apache.org>
Committed: Tue Jan 21 15:51:24 2014 -0800

----------------------------------------------------------------------
 build/ax_check_openssl.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/207df86f/build/ax_check_openssl.m4
----------------------------------------------------------------------
diff --git a/build/ax_check_openssl.m4 b/build/ax_check_openssl.m4
index b3f371b..e0c4029 100644
--- a/build/ax_check_openssl.m4
+++ b/build/ax_check_openssl.m4
@@ -78,7 +78,7 @@ AC_DEFUN([AX_CHECK_OPENSSL], [
             AC_MSG_CHECKING([for openssl/ssl.h in $ssldir])
             if test -f "$ssldir/include/openssl/ssl.h"; then
                 OPENSSL_INCLUDES="-I$ssldir/include"
-                if test -d "$withval/lib64"; then
+                if test -d "$ssldir/lib64"; then
                   OPENSSL_LDFLAGS="-L$ssldir/lib64"
                 else
                   OPENSSL_LDFLAGS="-L$ssldir/lib"