File tree Expand file tree Collapse file tree 4 files changed +8
-20
lines changed Expand file tree Collapse file tree 4 files changed +8
-20
lines changed Original file line number Diff line number Diff line change @@ -1920,13 +1920,7 @@ dnl
1920
1920
AC_DEFUN ( [ PHP_SETUP_OPENSSL] ,[
1921
1921
found_openssl=no
1922
1922
1923
- dnl Empty variable means 'no'.
1924
- test -z "$PHP_OPENSSL" && PHP_OPENSSL=no
1925
- test -z "$PHP_IMAP_SSL" && PHP_IMAP_SSL=no
1926
-
1927
- if test "$PHP_OPENSSL" != "no"; then
1928
- PKG_CHECK_MODULES([ OPENSSL] , [ openssl >= 1.0.1] , [ found_openssl=yes] )
1929
- fi
1923
+ PKG_CHECK_MODULES([ OPENSSL] , [ openssl >= 1.0.1] , [ found_openssl=yes] )
1930
1924
1931
1925
if test "$found_openssl" = "yes"; then
1932
1926
PHP_EVAL_LIBLINE($OPENSSL_LIBS, $1 )
Original file line number Diff line number Diff line change @@ -3,10 +3,11 @@ PHP_ARG_ENABLE([ftp],
3
3
[ AS_HELP_STRING ( [ --enable-ftp] ,
4
4
[ Enable FTP support] ) ] )
5
5
6
+ dnl TODO: Rename this option for master.
6
7
PHP_ARG_WITH([ openssl-dir] ,
7
- [ OpenSSL dir for FTP] ,
8
- [ AS_HELP_STRING ( [ [ --with-openssl-dir[ =DIR ] ] ] ,
9
- [ FTP: openssl install prefix ] ) ] ,
8
+ [ whether to explicitly enable FTP SSL support ] ,
9
+ [ AS_HELP_STRING ( [ [ --with-openssl-dir] ] ,
10
+ [ FTP: Whether to enable FTP SSL support without ext/openssl ] ) ] ,
10
11
[ no] ,
11
12
[ no] )
12
13
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ AC_DEFUN([PHP_IMAP_SSL_CHK], [
73
73
] , [
74
74
AC_MSG_ERROR ( [ OpenSSL libraries not found.
75
75
76
- Check the path given to --with-openssl-dir and output in config.log)
76
+ Check whether openssl is on your PKG_CONFIG_PATH and the output in config.log)
77
77
] )
78
78
] )
79
79
elif test -f "$IMAP_INC_DIR/linkage.c"; then
@@ -100,8 +100,8 @@ PHP_ARG_WITH([kerberos],
100
100
101
101
PHP_ARG_WITH([ imap-ssl] ,
102
102
[ for IMAP SSL support] ,
103
- [ AS_HELP_STRING ( [ [ --with-imap-ssl[ =DIR ] ] ] ,
104
- [ IMAP: Include SSL support. DIR is the OpenSSL install prefix ] ) ] ,
103
+ [ AS_HELP_STRING ( [ [ --with-imap-ssl] ] ,
104
+ [ IMAP: Include SSL support] ) ] ,
105
105
[ no] ,
106
106
[ no] )
107
107
Original file line number Diff line number Diff line change @@ -3,13 +3,6 @@ PHP_ARG_WITH([snmp],
3
3
[ AS_HELP_STRING ( [ [ --with-snmp[ =DIR] ] ] ,
4
4
[ Include SNMP support] ) ] )
5
5
6
- PHP_ARG_WITH([ openssl-dir] ,
7
- [ OpenSSL dir for SNMP] ,
8
- [ AS_HELP_STRING ( [ [ --with-openssl-dir[ =DIR] ] ] ,
9
- [ SNMP: openssl install prefix] ) ] ,
10
- [ no] ,
11
- [ no] )
12
-
13
6
if test "$PHP_SNMP" != "no"; then
14
7
15
8
if test "$PHP_SNMP" = "yes"; then
You can’t perform that action at this time.
0 commit comments