Justtechjobs.com Find a programming school near you






Online Campus Both


php4-beta | 200004

[PHP4BETA] cvs: /php4 php.h From: Andi Gutmans (andi <email protected>)
Date: 04/20/00

andi Thu Apr 20 10:58:56 2000 EDT

  Modified files:
    /php4 php.h
  Log:
  - virtual_lstat() doesn't exist on Windows.
  
  
Index: php4/php.h
diff -u php4/php.h:1.85 php4/php.h:1.86
--- php4/php.h:1.85 Thu Apr 20 10:40:03 2000
+++ php4/php.h Thu Apr 20 10:58:25 2000
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php.h,v 1.85 2000/04/20 17:40:03 andi Exp $ */
+/* $Id: php.h,v 1.86 2000/04/20 17:58:25 andi Exp $ */
 
 #ifndef _PHP_H
 #define _PHP_H
@@ -295,7 +295,11 @@
 #define V_CHDIR_FILE(path) virtual_chdir_file(path)
 #define V_GETWD(buf)
 #define V_STAT(path, buff) virtual_stat(path, buff)
+#ifdef PHP_WIN32
+#define V_LSTAT(path, buff) virtual_stat(path, buff)
+#else
 #define V_LSTAT(path, buff) virtual_lstat(path, buff)
+#endif
 #else
 #define V_GETCWD(buff, size) getcwd(buff,size)
 #define V_FOPEN(path, mode) fopen(path, mode)

-- 
PHP 4.0 Beta Mailing List <http://www.php.net/version4/>
To unsubscribe, e-mail: php4beta-unsubscribe <email protected>
For additional commands, e-mail: php4beta-help <email protected>
To contact the list administrators, e-mail: php4beta-admin <email protected>