動かす必要が出てきたので準備をしています。apxs を使用したコンパイルでインストールしたけど configtest で unixd_config がエラーとなった為、少しパッチを当てました。
unixd_config → ap_unixd_config
--- 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
こんな感じで変更した所 configtest は無事通過。