php-src/ext/posix/config.m4

14 lines
377 B
Plaintext
Raw Normal View History

2001-11-30 19:00:13 +00:00
dnl
1999-12-03 13:13:48 +00:00
dnl $Id$
2001-11-30 19:00:13 +00:00
dnl
1999-12-03 13:13:48 +00:00
2001-11-30 19:00:13 +00:00
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_EXTENSION(posix, $ext_shared)
2001-07-05 22:01:42 +00:00
AC_CHECK_FUNCS(seteuid setegid setsid getsid setpgid getpgid ctermid mkfifo getrlimit)
fi