mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
9df6a1e4dd
The Autoconf's default AS_HELP_STRING macro can properly format help strings [1] so watching out if columns are aligned manually is not anymore. [1] https://www.gnu.org/software/autoconf/manual/autoconf.html#Pretty-Help-Strings
9 lines
280 B
Plaintext
9 lines
280 B
Plaintext
PHP_ARG_ENABLE([zend-test],
|
|
[whether to enable zend-test extension],
|
|
[AS_HELP_STRING([--enable-zend-test],
|
|
[Enable zend-test extension])])
|
|
|
|
if test "$PHP_ZEND_TEST" != "no"; then
|
|
PHP_NEW_EXTENSION(zend_test, test.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
|
|
fi
|