stas            Mon Sep 29 10:02:56 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/standard       basic_functions.c 
  Log:
  allow realpath() for win32 non-ZTS
  
  
Index: php-src/ext/standard/basic_functions.c
diff -u php-src/ext/standard/basic_functions.c:1.543.2.21 
php-src/ext/standard/basic_functions.c:1.543.2.22
--- php-src/ext/standard/basic_functions.c:1.543.2.21   Sun Aug 10 20:53:26 2003
+++ php-src/ext/standard/basic_functions.c      Mon Sep 29 10:02:55 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: basic_functions.c,v 1.543.2.21 2003/08/11 00:53:26 sniper Exp $ */
+/* $Id: basic_functions.c,v 1.543.2.22 2003/09/29 14:02:55 stas Exp $ */
 
 #include "php.h"
 #include "php_streams.h"
@@ -675,7 +675,7 @@
 
        PHP_FALIAS(socket_get_status, stream_get_meta_data,                            
                 NULL)
 
-#if (!defined(PHP_WIN32) && !defined(__BEOS__) && !defined(NETWARE) && HAVE_REALPATH) 
|| defined(ZTS)
+#if (!defined(__BEOS__) && !defined(NETWARE) && HAVE_REALPATH) || defined(ZTS)
        PHP_FE(realpath,                                                               
                                                 NULL)
 #endif
 

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

Reply via email to