php-src/ext/pcntl
Peter Kokot 4371945b8b Replace obsolete AC_TRY_FOO with AC_FOO_IFELSE
Autoconf 2.50 released in 2001 made several macros obsolete including
the AC_TRY_RUN, AC_TRY_COMPILE and AC_TRY_LINK:
http://git.savannah.gnu.org/cgit/autoconf.git/tree/ChangeLog.2

These macros should be replaced with the current AC_FOO_IFELSE instead:
- AC_TRY_RUN with AC_RUN_IFELSE and AC_LANG_SOURCE
- AC_TRY_LINK with AC_LINK_IFELSE and AC_LANG_PROGRAM
- AC_TRY_COMPILE with AC_COMPILE_IFELSE and AC_LANG_PROGRAM

PHP 5.4 to 7.1 require Autoconf 2.59+ version, PHP 7.2 and above require
2.64+ version, and the PHP 7.2 phpize script requires 2.59+ version which
are all greater than above mentioned 2.50 version therefore systems
should be well supported by now.

This patch was created with the help of autoupdate script:
autoupdate <file>

Reference docs:
- https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Obsolete-Macros.html
- https://www.gnu.org/software/autoconf/manual/autoconf-2.59/autoconf.pdf
2018-07-30 02:36:38 +02:00
..
tests Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
config.m4 Replace obsolete AC_TRY_FOO with AC_FOO_IFELSE 2018-07-30 02:36:38 +02:00
CREDITS MFH 2008-11-10 06:30:16 +00:00
pcntl.c Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
php_pcntl.h Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
php_signal.c Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
php_signal.h Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
README typo fixes - https://github.com/vlajos/misspell_fixer 2014-11-23 14:52:47 -08:00
test-pcntl.php

Process Control Module for PHP (pcntl)

This module will attempt to implement all features related to process spawning and
control (fork(), waitpid(), signal(), WIF's, etc). This is extremely experimental, 
with hope to become stable on most UNIX's. I greatly apreciate any feedback, fixes, 
and or suggestions on how to improve/better implement
this functionality.

Thanks,

Jason Greeme < jason@inetgurus.net / jason@php.net >