pecl install zip 出现错误 ubuntu 12.04

pecl install zip 出现错误 ubuntu 12.04

我正在尝试使用此命令安装 zip

pecl install zip

但我得到了以下错误

running: make
/bin/bash /tmp/pear/temp/pear-build-root9LqSPb/zip-1.12.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/zip -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root9LqSPb/zip-1.12.4/include -I/tmp/pear/temp/pear-build-root9LqSPb/zip-1.12.4/main -I/tmp/pear/temp/zip -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/tmp/pear/temp/zip/lib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/zip/php_zip.c -o php_zip.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/zip -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root9LqSPb/zip-1.12.4/include -I/tmp/pear/temp/pear-build-root9LqSPb/zip-1.12.4/main -I/tmp/pear/temp/zip -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/tmp/pear/temp/zip/lib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/zip/php_zip.c  -fPIC -DPIC -o .libs/php_zip.o
In file included from /tmp/pear/temp/zip/php_zip.c:30:0:
/usr/include/php5/ext/pcre/php_pcre.h:29:18: fatal error: pcre.h: No such file or directory
compilation terminated.
make: *** [php_zip.lo] Error 1
ERROR: `make' failed

知道哪里出了问题吗?谢谢

答案1

Perl 兼容正则表达式 - 缺少 PCRE 库(...致命错误:pcre.h:...),因为您正在编译模块,所以您也应该添加开发包:

sudo apt-get update  
sudo apt-get install libpcre3 libpcre3-dev  

答案2

通常当make从源代码构建失败时,您必须安装一个-dev包,在您的情况下它是php5-dev

我不确定这是否是您需要安装的唯一一个,但请先尝试安装php5-dev

sudo apt-get install php5-dev

相关内容