r1447 and after versions - Cannot play GDI version on Windows 98SE
Well, I reported this in the old forum.
99.16 and after versions - Can I play GDI version on Windows 98SE ?
http://archive.forum.simutrans.com/topic/07775.0/index.html
I checked the version again, and I found that r1446 works but r1447 doesn't work.
The difference is makefile.
So, I changed makefile of r1956 a little and compiled it with MinGW.
Yes, it works on Windows 98SE , again. 
How do you think about this ?
Will VC++ version also work again ? ( Sorry, I can't test this.)
Index: Makefile
===================================================================
--- Makefile(r1956)
+++ Makefile(copy)
@@ -51,7 +51,7 @@
ifeq ($(OSTYPE),mingw)
SOURCES += simsys_w32_png.cc
OS_OPT ?= -mno-cygwin -DPNG_STATIC -DZLIB_STATIC -march=pentium
- STD_LIBS ?= -lz -lmingw32 -lgdi32 -lwinmm
+ STD_LIBS ?= -lunicows -lz -lmingw32 -lgdi32 -lwinmm
endif
ALLEGRO_CONFIG ?= allegro-config
@@ -326,7 +326,6 @@
SOURCES += simsys_w$(COLOUR_DEPTH).cc
SOURCES += music/w32_midi.cc
SOURCES += sound/win32_sound.cc
- STD_LIBS ?= -lunicows
endif