configure を変更して、どうにか読み込みうまくいき、動きはじめました。
configure の変更点
--- php-5.2.17/configure 2011-01-07 08:04:43.000000000 +0900
+++ php-5.2.17-apache24/configure 2019-10-17 17:47:00.000000000 +0900
@@ -108443,6 +108443,7 @@
ZEND_MAINTAINER_ZTS=no
fi
+ ZEND_MAINTAINER_ZTS=no
# Check whether --enable-inline-optimization or --disable-inline-optimization was given.
php_functions.c の変更点
--- php-5.2.17/sapi/apache2handler/php_functions.c 2010-01-03 18:23:27.000000000 +0900
+++ php-5.2.17-apache24/sapi/apache2handler/php_functions.c 2019-10-11 12:19:53.000000000 +0900
@@ -383,7 +383,7 @@
char *p;
server_rec *serv = ((php_struct *) SG(server_context))->r->server;
#if !defined(WIN32) && !defined(WINNT) && !defined(NETWARE)
- AP_DECLARE_DATA extern unixd_config_rec unixd_config;
+ AP_DECLARE_DATA extern unixd_config_rec ap_unixd_config;
#endif
for (n = 0; ap_loaded_modules[n]; ++n) {
@@ -414,7 +414,7 @@
php_info_print_table_row(2, "Hostname:Port", tmp);
#if !defined(WIN32) && !defined(WINNT) && !defined(NETWARE)
- snprintf(tmp, sizeof(tmp), "%s(%d)/%d", unixd_config.user_name, unixd_config.user_id, unixd_config.group_id);
+ snprintf(tmp, sizeof(tmp), "%s(%d)/%d", ap_unixd_config.user_name, ap_unixd_config.user_id, ap_unixd_config.group_id);
php_info_print_table_row(2, "User/Group", tmp);
#endif
configure は無理やりですが、この変更を入れる事で libphp5.so が出来上がり、Apache 2.4 prefork 版で動き始めました。
良かった。