backout -r2827 and add correct fix

This commit is contained in:
Igor Sysoev 2009-05-10 19:49:14 +00:00
parent 07c3f967cb
commit c0df517dd7
2 changed files with 7 additions and 1 deletions

6
auto/configure vendored
View File

@ -31,6 +31,12 @@ if test -z "$NGX_PLATFORM"; then
NGX_PLATFORM="$NGX_SYSTEM:$NGX_RELEASE:$NGX_MACHINE";
case "$NGX_SYSTEM" in
MINGW32_*)
NGX_PLATFORM=win32
;;
esac
else
echo "building for $NGX_PLATFORM"
NGX_SYSTEM=$NGX_PLATFORM

View File

@ -22,7 +22,7 @@ case "$NGX_PLATFORM" in
. auto/os/darwin
;;
win32 | MINGW32_* )
win32)
. auto/os/win32
;;