# HG changeset patch # User Sam Lantinga # Date 1235728315 0 # Node ID 1c85c44557de8c9f69a3a67e18f364c6bfafd210 # Parent 4ccdf20bad6f194c96060b29ed0c1a8ddb109779 Removed unicows dependency, at least for now... diff -r 4ccdf20bad6f -r 1c85c44557de configure.in --- a/configure.in Fri Feb 27 09:39:39 2009 +0000 +++ b/configure.in Fri Feb 27 09:51:55 2009 +0000 @@ -2528,7 +2528,10 @@ have_loadso=yes fi # Set up the system libraries we need - EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lunicows -luser32 -lgdi32 -lmsimg32 -lwinmm" + # SDL 1.3 is unicode, and unicows emulates this on Windows 98/ME + # You can get this here: http://libunicows.sourceforge.net/ + #EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lunicows" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lmsimg32 -lwinmm" # The Win32 platform requires special setup SOURCES="$SOURCES $srcdir/src/main/win32/*.rc" SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c"