diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-03-22 23:31:52 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-03-22 23:31:52 +0000 |
commit | 0d2bd85a61aed484af268c482407487245cf7edc (patch) | |
tree | 4c96131d825da9302874fcf752c7edf53a64857c /ext/calendar | |
parent | 170de9b95ccd41a6b9f9924a8724bef511cf1999 (diff) | |
download | php-git-0d2bd85a61aed484af268c482407487245cf7edc.tar.gz |
Fixed win32 build, which fails with non-SBCS-compatible locale settings.
Diffstat (limited to 'ext/calendar')
-rw-r--r-- | ext/calendar/jewish.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/calendar/jewish.c b/ext/calendar/jewish.c index b83f4fa04f..3dbb01c26a 100644 --- a/ext/calendar/jewish.c +++ b/ext/calendar/jewish.c @@ -260,6 +260,10 @@ * **************************************************************************/ +#ifdef PHP_WIN32 +#pragma setlocale("english") +#endif + #include "sdncal.h" #define HALAKIM_PER_HOUR 1080 |