I've created a fresh installation of CentOS 5.6, and installed PHP 5.3 using the php53-* packages from the CentOS repository. Specifically, I've got:
- php53
- php53-cli
- php53-common
- php53-devel
- php53-mysql
- php53-pdo
- php53-xml
However, I also need to install the mcrypt and apc extensions for my application. CentOS has a pre-built php-mcrypt package, but there is no equivalent php53-mcrypt. The installation of APC requires pecl which I would normally install (for 5.1) with the php-pear package, but likewise there doesn't seem to be a php53-pear package.
How do I build these?
Edit
It looks like the php-pear package works with php53, so I managed to get APC installed properly. I still have a problem with mcrypt because it's not installable via pecl; it's only part of the core PHP build.