mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
14 lines
390 B
Plaintext
14 lines
390 B
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
PHP_ARG_ENABLE(posix,whether to enable 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_NEW_EXTENSION(posix, posix.c, $ext_shared)
|
|
|
|
AC_CHECK_FUNCS(seteuid setegid setsid getsid setpgid getpgid ctermid mkfifo getrlimit)
|
|
fi
|