mirror of
https://github.com/php/php-src.git
synced 2024-12-13 11:54:45 +08:00
8 lines
292 B
Plaintext
8 lines
292 B
Plaintext
PHP_ARG_ENABLE(%EXTNAME%, whether to enable %EXTNAME% support,
|
|
[ --enable-%EXTNAME% Enable %EXTNAME% support], no)
|
|
|
|
if test "$PHP_%EXTNAMECAPS%" != "no"; then
|
|
AC_DEFINE(HAVE_%EXTNAMECAPS%, 1, [ Have %EXTNAME% support ])
|
|
PHP_NEW_EXTENSION(%EXTNAME%, %EXTNAME%.c, $ext_shared)
|
|
fi
|