diff options
author | Sascha Schumann <sas@php.net> | 2002-03-12 16:53:19 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-03-12 16:53:19 +0000 |
commit | 283b860c588726231efd4c4f1a2a4e65cac18eae (patch) | |
tree | 3ef8d8eb62014ee243275d98372aef1180949a3e /ext/pcntl/config.m4 | |
parent | 06473e08a525543b30259b55841621b3f8b6eea7 (diff) | |
download | php-git-283b860c588726231efd4c4f1a2a4e65cac18eae.tar.gz |
php_new_extension
Diffstat (limited to 'ext/pcntl/config.m4')
-rw-r--r-- | ext/pcntl/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcntl/config.m4 b/ext/pcntl/config.m4 index 648c107263..f24f038cb9 100644 --- a/ext/pcntl/config.m4 +++ b/ext/pcntl/config.m4 @@ -14,5 +14,5 @@ if test "$PHP_PCNTL" != "no"; then AC_CHECK_FUNCS(waitpid, [ AC_DEFINE(HAVE_WAITPID,1,[ ]) ], [ AC_MSG_ERROR(pcntl: fork() not supported by this platform) ]) AC_CHECK_FUNCS(sigaction, [ AC_DEFINE(HAVE_SIGACTION,1,[ ]) ], [ AC_MSG_ERROR(pcntl: sigaction() not supported by this platform) ]) - PHP_EXTENSION(pcntl, $ext_shared, cli) + PHP_NEW_EXTENSION(pcntl, pcntl.c php_signal.c, $ext_shared, cli) fi |