[root@c991bca27e3e-lnmp-test1-lnmp-test1-1 pcntl]# make
/bin/sh /usr/local/src/php-5.6.30/ext/pcntl/libtool --mode=compile cc -I. -I/usr/local/src/php-5.6.30/ext/pcntl -DPHP_ATOM_INC -I/usr/local/src/php-5.6.30/ext/pcntl/include -I/usr/local/src/php-5.6.30/ext/pcntl/main -I/usr/local/src/php-5.6.30/ext/pcntl -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /usr/local/src/php-5.6.30/ext/pcntl/pcntl.c -o pcntl.lo
libtool: compile: cc -I. -I/usr/local/src/php-5.6.30/ext/pcntl -DPHP_ATOM_INC -I/usr/local/src/php-5.6.30/ext/pcntl/include -I/usr/local/src/php-5.6.30/ext/pcntl/main -I/usr/local/src/php-5.6.30/ext/pcntl -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /usr/local/src/php-5.6.30/ext/pcntl/pcntl.c -fPIC -DPIC -o .libs/pcntl.o
/usr/local/src/php-5.6.30/ext/pcntl/pcntl.c: In function 'zif_pcntl_exec':
/usr/local/src/php-5.6.30/ext/pcntl/pcntl.c:798:10: error: 'HASH_KEY_NON_EXISTENT' undeclared (first use in this function)
case HASH_KEY_NON_EXISTENT:
^
/usr/local/src/php-5.6.30/ext/pcntl/pcntl.c:798:10: note: each undeclared identifier is reported only once for each function it appears in
make: *** [pcntl.lo] Error 1
phpize
make
make install
pcntl belongs to the source code that comes with php
https://github.com/php/php-src/tree/master/ext/pcntl
First compile and install
php
,并可以成功的执行phpize
Requires ./configure
Put it
/usr/local/src/php-5.6.30/ext/pcntl/pcntl.c
中的HASH_KEY_NON_EXISTENT
替换成HASH_KEY_NON_EXISTANT
./configure --prefix=/usr/local/php \
--enable-bcmath \
--enable-fpm \
--enable-ftp \
--enable-mbstring \
--enable-pcntl \
--enable-shmop \
--enable-sockets \
--enable-sysvsem \
--enable-zip \
--with-bz2 \
--with-curl \
--with-freetype-dir=/usr/lib64 \
--with-gettext \
--with-gd \
--with-jpeg-dir=/usr/lib64 \
--with-openssl \
--with-png-dir=/usr/lib64 \
--with-xmlrpc \
--with-xsl \
--with-mcrypt \
--with-mysql \
--with-mysqli \
--with-pdo-mysql \
--with-zlib \
--with-config-file-path=/usr/local/php/etc/