Yes, that's true. RHEL7/CentOS7 requires patching of PHP 5.3 to install it and support systemd (for PHP-FPM). By the way, PHP 5.3 EOL date is "14 Aug 2014", meaning it will never support RHEL7/CentOS7 without the patching out-of-the-box. A dirty fix to install PHP 5.3 on RHEL7 (as mod_php, for PHP-FPM more patching would be needed) is (note: it is not officially supported):
Code:
cd /usr/local/directadmin/custombuild
mkdir -p custom/ap2
cp -pf configure/ap2/configure.php53 custom/ap2/configure.php53
perl -pi -e 's|--enable-intl|--enable-intl\nsed -i "/^BUILD_/ s/\\$\(CC\)/\\$\(CXX\)/" Makefile|g' custom/ap2/configure.php53
Then every time you run "build" to do anything with PHP, you need to run:
Code:
perl -pi -e 's|PHP1_RELEASE_SET="5.4 5.5 5.6"|PHP1_RELEASE_SET="5.3 5.4 5.5 5.6"|g' build