mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
13 lines
362 B
Text
13 lines
362 B
Text
dnl $Id$
|
|
dnl config.m4 for extension posix
|
|
dnl don't forget to call PHP_EXTENSION(posix)
|
|
|
|
|
|
|
|
PHP_ARG_ENABLE(posix,whether to include POSIX-like functions,
|
|
[ --disable-posix Disable POSIX-like functions], yes)
|
|
|
|
if test "$PHP_POSIX" = "yes"; then
|
|
AC_DEFINE(HAVE_POSIX, 1, [whether to include POSIX-like functions])
|
|
PHP_EXTENSION(posix, $ext_shared)
|
|
fi
|