From: Edin Kadribasic Date: Wed, 16 Feb 2005 09:53:26 +0000 (+0000) Subject: Enable mbstring use on windows. We were linking against mbstring for X-Git-Tag: RELEASE_0_2_4~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d388e4dc166520babbb6f90540cea3490fa3586c;p=php Enable mbstring use on windows. We were linking against mbstring for some time now, but have never actually used it on Windows. Fixes #31980. --- diff --git a/ext/exif/exif.c b/ext/exif/exif.c index ae3f61b1db..ab08afc58b 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -66,7 +66,7 @@ #include "ext/standard/php_image.h" #include "ext/standard/info.h" -#if HAVE_MBSTRING && !defined(COMPILE_DL_MBSTRING) +#if PHP_WIN32 ||(HAVE_MBSTRING && !defined(COMPILE_DL_MBSTRING)) #define EXIF_USE_MBSTRING 1 #else #define EXIF_USE_MBSTRING 0