diff options
| author | Edin Kadribasic <edink@php.net> | 2005-02-16 09:53:26 +0000 |
|---|---|---|
| committer | Edin Kadribasic <edink@php.net> | 2005-02-16 09:53:26 +0000 |
| commit | d388e4dc166520babbb6f90540cea3490fa3586c (patch) | |
| tree | 86360a80aee54a50abd9cbf4d5625ceceecddeb3 | |
| parent | f4ea74d828fdf16a82ceba66f50738bd0907f250 (diff) | |
| download | php-git-d388e4dc166520babbb6f90540cea3490fa3586c.tar.gz | |
Enable mbstring use on windows. We were linking against mbstring for
some time now, but have never actually used it on Windows.
Fixes #31980.
| -rw-r--r-- | ext/exif/exif.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
