From: Marcus Boerger Date: Mon, 16 Dec 2002 09:58:49 +0000 (+0000) Subject: change mbstring detection X-Git-Tag: PHP_5_0_dev_before_13561_fix~710 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6e055f9a779d2b23a50f4d2c8dacee102629748b;p=php change mbstring detection --- diff --git a/ext/exif/exif.c b/ext/exif/exif.c index e9d165f528..bdb671ae12 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -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"