Sure it is.  It's in the config.w32.h.in file.  You probably just forgot
to generate config.w32.h.

-Rasmus

On Sat, 5 Oct 2002, Wez Furlong wrote:

> wez           Sat Oct  5 06:55:54 2002 EDT
>
>   Modified files:
>     /php4/ext/standard        info.c
>   Log:
>   Fix Win32 build as PHP_CONFIG_FILE_SCAN_DIR is not #defined.
>
>
> Index: php4/ext/standard/info.c
> diff -u php4/ext/standard/info.c:1.211 php4/ext/standard/info.c:1.212
> --- php4/ext/standard/info.c:1.211    Fri Oct  4 00:47:34 2002
> +++ php4/ext/standard/info.c  Sat Oct  5 06:55:54 2002
> @@ -18,7 +18,7 @@
>     +----------------------------------------------------------------------+
>  */
>
> -/* $Id: info.c,v 1.211 2002/10/04 04:47:34 rasmus Exp $ */
> +/* $Id: info.c,v 1.212 2002/10/05 10:55:54 wez Exp $ */
>
>  #include "php.h"
>  #include "php_ini.h"
> @@ -380,12 +380,14 @@
>
>               php_info_print_table_row(2, "Configuration File (php.ini) Path", 
>php_ini_opened_path?php_ini_opened_path:PHP_CONFIG_FILE_PATH);
>
> +#ifdef PHP_CONFIG_FILE_SCAN_DIR
>               if(strlen(PHP_CONFIG_FILE_SCAN_DIR)) {
>                       php_info_print_table_row(2, "Scan this dir for additional .ini 
>files", PHP_CONFIG_FILE_SCAN_DIR);
>                       if(php_ini_scanned_files) {
>                               php_info_print_table_row(2, "additional .ini files 
>parsed", php_ini_scanned_files);
>                       }
>               }
> +#endif
>
>               snprintf(temp_api, sizeof(temp_api), "%d", PHP_API_VERSION);
>               php_info_print_table_row(2, "PHP API", temp_api);
>
>
>
> --
> PHP CVS Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to