sniper          Wed Feb 16 18:47:39 2005 EDT

  Modified files:              
    /php-src/ext/exif   exif.c 
  Log:
  PHP_WIN32 is defined or not defined.
  
http://cvs.php.net/diff.php/php-src/ext/exif/exif.c?r1=1.168&r2=1.169&ty=u
Index: php-src/ext/exif/exif.c
diff -u php-src/ext/exif/exif.c:1.168 php-src/ext/exif/exif.c:1.169
--- php-src/ext/exif/exif.c:1.168       Wed Feb 16 04:53:26 2005
+++ php-src/ext/exif/exif.c     Wed Feb 16 18:47:38 2005
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: exif.c,v 1.168 2005/02/16 09:53:26 edink Exp $ */
+/* $Id: exif.c,v 1.169 2005/02/16 23:47:38 sniper Exp $ */
 
 /*  ToDos
  *
@@ -66,7 +66,7 @@
 #include "ext/standard/php_image.h"
 #include "ext/standard/info.h" 
 
-#if PHP_WIN32 ||(HAVE_MBSTRING && !defined(COMPILE_DL_MBSTRING))
+#if defined(PHP_WIN32) || (HAVE_MBSTRING && !defined(COMPILE_DL_MBSTRING))
 #define EXIF_USE_MBSTRING 1
 #else
 #define EXIF_USE_MBSTRING 0
@@ -112,7 +112,7 @@
 };
 /* }}} */
 
-#define EXIF_VERSION "1.4 $Id: exif.c,v 1.168 2005/02/16 09:53:26 edink Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.169 2005/02/16 23:47:38 sniper Exp $"
 
 /* {{{ PHP_MINFO_FUNCTION
  */

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

Reply via email to