bjori           Wed Jan 10 14:40:06 2007 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/standard       file.h 
  Log:
  Fix ifdefs
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/file.h?r1=1.94.2.2.2.4&r2=1.94.2.2.2.5&diff_format=u
Index: php-src/ext/standard/file.h
diff -u php-src/ext/standard/file.h:1.94.2.2.2.4 
php-src/ext/standard/file.h:1.94.2.2.2.5
--- php-src/ext/standard/file.h:1.94.2.2.2.4    Mon Jan  1 09:36:08 2007
+++ php-src/ext/standard/file.h Wed Jan 10 14:40:06 2007
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: file.h,v 1.94.2.2.2.4 2007/01/01 09:36:08 sebastian Exp $ */
+/* $Id: file.h,v 1.94.2.2.2.5 2007/01/10 14:40:06 bjori Exp $ */
 
 /* Synced with php 3.0 revision 1.30 1999-06-16 [ssb] */
 
@@ -60,8 +60,10 @@
 PHP_FUNCTION(flock);
 PHP_FUNCTION(fd_set);
 PHP_FUNCTION(fd_isset);
-#if (!defined(__BEOS__) && HAVE_REALPATH) || defined(ZTS)
+#if (!defined(__BEOS__) && !defined(NETWARE) && HAVE_REALPATH) || defined(ZTS)
 PHP_FUNCTION(realpath);
+#endif
+#ifdef HAVE_FNMATCH
 PHP_FUNCTION(fnmatch);
 #endif
 PHP_NAMED_FUNCTION(php_if_ftruncate);

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

Reply via email to