File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -1273,6 +1273,8 @@ PHP_UNAME=${PHP_UNAME:-$UNAME}
1273
1273
AC_DEFINE_UNQUOTED ( PHP_UNAME ,"$PHP_UNAME" ,[ uname -a output] )
1274
1274
PHP_OS=`uname | xargs`
1275
1275
AC_DEFINE_UNQUOTED ( PHP_OS ,"$PHP_OS" ,[ uname output] )
1276
+ PHP_BUILDER_SYSTEM=${PHP_BUILDER_SYSTEM:-$PHP_UNAME}
1277
+ AC_DEFINE_UNQUOTED ( PHP_BUILDER_SYSTEM ,"$PHP_BUILDER_SYSTEM" ,[ builder uname output] )
1276
1278
1277
1279
PHP_SUBST_OLD(PHP_INSTALLED_SAPIS)
1278
1280
Original file line number Diff line number Diff line change @@ -798,6 +798,9 @@ PHPAPI ZEND_COLD void php_print_info(int flag)
798
798
php_info_print_table_start ();
799
799
php_info_print_table_row (2 , "System" , ZSTR_VAL (php_uname ));
800
800
php_info_print_table_row (2 , "Build Date" , __DATE__ " " __TIME__ );
801
+ #ifdef PHP_BUILDER_SYSTEM
802
+ php_info_print_table_row (2 , "Build System" , PHP_BUILDER_SYSTEM );
803
+ #endif
801
804
#ifdef COMPILER
802
805
php_info_print_table_row (2 , "Compiler" , COMPILER );
803
806
#endif
You can’t perform that action at this time.
0 commit comments