php-src/sapi/embed/config.m4
Sascha Schumann e6e54605b7 Follow Yasuo's suggestion and build sapi program's under the sapi-specific
directory.

Move sapi-specific makefile fragments to their respective directory.

Create an embed sapi module which resides in its own dir now.
2002-09-29 16:22:49 +00:00

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