I have php 5.3.6 and ubuntu. I want to install APC.

When I do the $ pecl install apc, I eventually get an error:

In file included from /tmp/pear/temp/APC/apc.c:44:0:
/usr/include/php5/ext/pcre/php_pcre.h:29:18: fatal error: pcre.h: No such file or directory
compilation terminated.
make: *** [apc.lo] Error 1
ERROR: `make' failed

When I try to do $ yum install php-pecl-apc I always get error: No package "php-pecl-apc" available

I tried doing a $ yum clean all, but it did not make a difference.

I am not sure how to proceed. What do you suggest?

link|improve this question
2  
Ubuntu and Yum? That's... unusual. – Ladadadada Dec 11 '11 at 23:20
feedback

1 Answer

up vote 5 down vote accepted

yum install pcre-devel . You need the Perl-compatible regular expression library development header files

You mention Ubuntu, might as well use apt-get install libpcre3-dev

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.