diff options
Diffstat (limited to 'ext/pcntl')
| -rw-r--r-- | ext/pcntl/config.m4 | 4 | ||||
| -rwxr-xr-x | ext/pcntl/pcntl.c | 4 | ||||
| -rw-r--r-- | ext/pcntl/php_pcntl.h | 4 | ||||
| -rw-r--r-- | ext/pcntl/php_signal.c | 4 | ||||
| -rw-r--r-- | ext/pcntl/php_signal.h | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/ext/pcntl/config.m4 b/ext/pcntl/config.m4 index ea26eb149..014dfc441 100644 --- a/ext/pcntl/config.m4 +++ b/ext/pcntl/config.m4 @@ -1,5 +1,5 @@ dnl -dnl $Id: config.m4 264390 2008-08-07 13:11:05Z tony2001 $ +dnl $Id: config.m4 316353 2011-09-07 13:47:31Z bjori $ dnl PHP_ARG_ENABLE(pcntl, whether to enable pcntl support, @@ -7,7 +7,7 @@ PHP_ARG_ENABLE(pcntl, whether to enable pcntl support, if test "$PHP_PCNTL" != "no"; then AC_CHECK_FUNCS(fork, [ AC_DEFINE(HAVE_FORK,1,[ ]) ], [ AC_MSG_ERROR(pcntl: fork() not supported by this platform) ]) - AC_CHECK_FUNCS(waitpid, [ AC_DEFINE(HAVE_WAITPID,1,[ ]) ], [ AC_MSG_ERROR(pcntl: fork() not supported by this platform) ]) + AC_CHECK_FUNCS(waitpid, [ AC_DEFINE(HAVE_WAITPID,1,[ ]) ], [ AC_MSG_ERROR(pcntl: waitpid() not supported by this platform) ]) AC_CHECK_FUNCS(sigaction, [ AC_DEFINE(HAVE_SIGACTION,1,[ ]) ], [ AC_MSG_ERROR(pcntl: sigaction() not supported by this platform) ]) AC_CHECK_FUNCS([getpriority setpriority wait3 sigprocmask sigwaitinfo sigtimedwait]) PHP_NEW_EXTENSION(pcntl, pcntl.c php_signal.c, $ext_shared, cli) diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c index ad8c29ed9..a6e629e03 100755 --- a/ext/pcntl/pcntl.c +++ b/ext/pcntl/pcntl.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2011 The PHP Group | + | Copyright (c) 1997-2012 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: pcntl.c 313665 2011-07-25 11:42:53Z felipe $ */ +/* $Id: pcntl.c 321634 2012-01-01 13:15:04Z felipe $ */ #define PCNTL_DEBUG 0 diff --git a/ext/pcntl/php_pcntl.h b/ext/pcntl/php_pcntl.h index de63aa658..e5f824c2f 100644 --- a/ext/pcntl/php_pcntl.h +++ b/ext/pcntl/php_pcntl.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2011 The PHP Group | + | Copyright (c) 1997-2012 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_pcntl.h 306939 2011-01-01 02:19:59Z felipe $ */ +/* $Id: php_pcntl.h 321634 2012-01-01 13:15:04Z felipe $ */ #ifndef PHP_PCNTL_H #define PHP_PCNTL_H diff --git a/ext/pcntl/php_signal.c b/ext/pcntl/php_signal.c index 9ba68a746..348503bae 100644 --- a/ext/pcntl/php_signal.c +++ b/ext/pcntl/php_signal.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2011 The PHP Group | + | Copyright (c) 1997-2012 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_signal.c 306939 2011-01-01 02:19:59Z felipe $ */ +/* $Id: php_signal.c 321634 2012-01-01 13:15:04Z felipe $ */ #include "php_signal.h" diff --git a/ext/pcntl/php_signal.h b/ext/pcntl/php_signal.h index 2f89f847c..2e33e7f70 100644 --- a/ext/pcntl/php_signal.h +++ b/ext/pcntl/php_signal.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2011 The PHP Group | + | Copyright (c) 1997-2012 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_signal.h 306939 2011-01-01 02:19:59Z felipe $ */ +/* $Id: php_signal.h 321634 2012-01-01 13:15:04Z felipe $ */ #include <signal.h> #ifndef PHP_SIGNAL_H |
