helly           Mon Dec 16 04:58:50 2002 EDT

  Modified files:              
    /php4/ext/exif      exif.c 
  Log:
  change mbstring detection
  
  
Index: php4/ext/exif/exif.c
diff -u php4/ext/exif/exif.c:1.130 php4/ext/exif/exif.c:1.131
--- php4/ext/exif/exif.c:1.130  Sun Dec 15 13:49:07 2002
+++ php4/ext/exif/exif.c        Mon Dec 16 04:58:49 2002
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: exif.c,v 1.130 2002/12/15 18:49:07 helly Exp $ */
+/* $Id: exif.c,v 1.131 2002/12/16 09:58:49 helly Exp $ */
 
 /*  ToDos
  *
@@ -58,9 +58,11 @@
 #include "ext/standard/php_image.h"
 #include "ext/standard/info.h" 
 
-#if defined(HAVE_MBSTRING) && !defined(COMPILE_DL_MBSTRING)
+#if HAVE_MBSTRING
+#if !defined(COMPILE_DL_MBSTRING) 
 #define EXIF_USE_MBSTRING 1
 #endif
+#endif
 
 #ifdef EXIF_USE_MBSTRING
 #include "ext/mbstring/mbstring.h"
@@ -93,7 +95,7 @@
 };
 /* }}} */
 
-#define EXIF_VERSION "1.4 $Id: exif.c,v 1.130 2002/12/15 18:49:07 helly Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.131 2002/12/16 09:58:49 helly 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