Only set WIN32 on mingw32 systems

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@13816 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-06-10 02:30:46 +00:00
parent 152b72d2eb
commit 1f4bbef322
3 changed files with 12 additions and 8 deletions

View file

@ -1,3 +1,7 @@
2002-06-09 Adam Fedor <fedor@gnu.org>
* configure.ac: Set WIN32 and WINLIB only on mingw32 systems.
2002-06-08 Fred Kiefer <FredKiefer@gmx.de> 2002-06-08 Fred Kiefer <FredKiefer@gmx.de>
* Headers/winlib/WIN32FontInfo.h * Headers/winlib/WIN32FontInfo.h

8
configure vendored
View file

@ -5274,10 +5274,10 @@ fi
#-------------------------------------------------------------------- #--------------------------------------------------------------------
BUILD_SERVER=x11 BUILD_SERVER=x11
BUILD_GRAPHICS=xlib BUILD_GRAPHICS=xlib
if test "$have_gdi32" = yes; then case $target_os in
BUILD_SERVER=win32 *mingw32* ) BUILD_SERVER=win32
BUILD_GRAPHICS=winlib BUILD_GRAPHICS=winlib;;
fi esac
# Check whether --enable-server or --disable-server was given. # Check whether --enable-server or --disable-server was given.
if test "${enable_server+set}" = set; then if test "${enable_server+set}" = set; then

View file

@ -391,10 +391,10 @@ AC_SUBST(GRAPHIC_LFLAGS)
#-------------------------------------------------------------------- #--------------------------------------------------------------------
BUILD_SERVER=x11 BUILD_SERVER=x11
BUILD_GRAPHICS=xlib BUILD_GRAPHICS=xlib
if test "$have_gdi32" = yes; then case $target_os in
BUILD_SERVER=win32 *mingw32* ) BUILD_SERVER=win32
BUILD_GRAPHICS=winlib BUILD_GRAPHICS=winlib;;
fi esac
AC_ARG_ENABLE(server, AC_ARG_ENABLE(server,
[ --enable-server=SRV Build server type: x11, win32],, [ --enable-server=SRV Build server type: x11, win32],,