We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 797fc13 commit 22eb8d9Copy full SHA for 22eb8d9
ext/openssl/config0.m4
@@ -0,0 +1,17 @@
1
+dnl
2
+dnl $Id$
3
4
+
5
+PHP_ARG_WITH(openssl, for OpenSSL support,
6
+[ --with-openssl[=DIR] Include OpenSSL support (requires OpenSSL >= 0.9.6)])
7
8
+if test "$PHP_OPENSSL" != "no"; then
9
+ PHP_SETUP_OPENSSL(OPENSSL_SHARED_LIBADD,
10
+ [
11
+ PHP_NEW_EXTENSION(openssl, openssl.c xp_ssl.c, $ext_shared)
12
+ PHP_SUBST(OPENSSL_SHARED_LIBADD)
13
+ AC_DEFINE(HAVE_OPENSSL_EXT,1,[ ])
14
+ ], [
15
+ AC_MSG_ERROR([OpenSSL check failed. Please check config.log for more information.])
16
+ ])
17
+fi
0 commit comments