mirror of
https://github.com/php/php-src.git
synced 2024-12-17 05:50:14 +08:00
15 lines
361 B
Plaintext
15 lines
361 B
Plaintext
|
PHP_ARG_ENABLE(embed,whether to enable the embedded SAPI module,
|
||
|
[ --enable-embed])
|
||
|
|
||
|
PHP_ARG_ENABLE(embed-shared,whether to build it as shared library,
|
||
|
[ --enable-embed-shared])
|
||
|
|
||
|
if test "$PHP_EMBED" = "yes"; then
|
||
|
if test "$PHP_EMBED_SHARED" = "yes"; then
|
||
|
ac_type=shared
|
||
|
else
|
||
|
ac_type=static
|
||
|
fi
|
||
|
PHP_SELECT_SAPI(embed, $ac_type, php_embed.c)
|
||
|
fi
|