summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Venaas <venaas@php.net>2001-01-02 22:40:03 +0000
committerStig Venaas <venaas@php.net>2001-01-02 22:40:03 +0000
commit348f6c609c148c2c1f17669dad521fe04cd50a2a (patch)
tree2fbfcb1206998732b3d2209d9e68a007d87e327c
parent175cf6b08af3ac28b59b7b3acad633c0d95bbd30 (diff)
downloadphp-git-348f6c609c148c2c1f17669dad521fe04cd50a2a.tar.gz
I think the order is wrong, switched order of ssl and crypto libs
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 59e651f6f0..bbdbb5aaf5 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -36,8 +36,8 @@ AC_DEFUN(PHP_SETUP_OPENSSL,[
CPPFLAGS=$old_CPPFLAGS
AC_ADD_LIBPATH($OPENSSL_DIR/lib)
- AC_ADD_LIBRARY(ssl)
AC_ADD_LIBRARY(crypto)
+ AC_ADD_LIBRARY(ssl)
AC_ADD_INCLUDE($OPENSSL_INC)
])