Skip to content

Commit 4a82c59

Browse files
committedDec 21, 2018
Document that --disable-x options are --enable-x
1 parent 699e689 commit 4a82c59

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed
 

Diff for: ‎config.m4

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
dnl vim:se ts=2 sw=2 et:
22

33
PHP_ARG_ENABLE(memcached, whether to enable memcached support,
4-
[ --enable-memcached Enable memcached support])
4+
[ --enable-memcached Enable memcached support])
55

66
PHP_ARG_WITH(libmemcached-dir, for libmemcached,
7-
[ --with-libmemcached-dir[=DIR] Set the path to libmemcached install prefix.], yes)
7+
[ --with-libmemcached-dir=DIR Set the path to libmemcached install prefix.], yes)
88

99
PHP_ARG_ENABLE(memcached-session, whether to enable memcached session handler support,
10-
[ --disable-memcached-session Disable memcached session handler support], yes, no)
10+
[ --enable-memcached-session Enable memcached session handler support], yes, no)
Has a conversation. Original line has a conversation.
1111

1212
PHP_ARG_ENABLE(memcached-igbinary, whether to enable memcached igbinary serializer support,
13-
[ --enable-memcached-igbinary Enable memcached igbinary serializer support], no, no)
13+
[ --enable-memcached-igbinary Enable memcached igbinary serializer support], no, no)
1414

1515
PHP_ARG_ENABLE(memcached-json, whether to enable memcached json serializer support,
16-
[ --enable-memcached-json Enable memcached json serializer support], no, no)
16+
[ --enable-memcached-json Enable memcached json serializer support], no, no)
1717

1818
PHP_ARG_ENABLE(memcached-msgpack, whether to enable memcached msgpack serializer support,
19-
[ --enable-memcached-msgpack Enable memcached msgpack serializer support], no, no)
19+
[ --enable-memcached-msgpack Enable memcached msgpack serializer support], no, no)
2020

2121
PHP_ARG_ENABLE(memcached-sasl, whether to enable memcached sasl support,
22-
[ --disable-memcached-sasl Disable memcached sasl support], yes, no)
22+
[ --enable-memcached-sasl Enable memcached sasl support], yes, no)
Has a conversation. Original line has a conversation.
2323

2424
PHP_ARG_ENABLE(memcached-protocol, whether to enable memcached protocol support,
25-
[ --enable-memcached-protocol Enable memcached protocol support], no, no)
25+
[ --enable-memcached-protocol Enable memcached protocol support], no, no)
2626

2727
PHP_ARG_WITH(system-fastlz, whether to use system FastLZ library,
28-
[ --with-system-fastlz Use system FastLZ library], no, no)
28+
[ --with-system-fastlz Use system FastLZ library], no, no)
2929

3030
if test -z "$PHP_ZLIB_DIR"; then
3131
PHP_ARG_WITH(zlib-dir, for ZLIB,
32-
[ --with-zlib-dir[=DIR] Set the path to ZLIB install prefix.], no)
32+
[ --with-zlib-dir=DIR Set the path to ZLIB install prefix.], no)
3333
fi
3434

3535
if test -z "$PHP_DEBUG"; then
3636
AC_ARG_ENABLE(debug,
37-
[ --enable-debug compile with debugging symbols],[
37+
[ --enable-debug Compile with debugging symbols],[
3838
PHP_DEBUG=$enableval
3939
],[ PHP_DEBUG=no
4040
])

0 commit comments

Comments
 (0)
Please sign in to comment.