Makefile and Mac
Hello,
I try to make nightly for MAC (look at http://forum.simutrans.com/index.php?topic=2084.0)
But for nightlys I must patch every day the Makefile because .. the MACSound in the nightly use quicktime, but I only can use SDL
so I must patche the Lines:
ifeq ($(OSTYPE),mac)
# Core Audio (Quicktime) base sound system routines
SOURCES += sound/core-audio_sound.mm
SOURCES += music/core-audio_midi.mm
else
to
ifeq ($(OSTYPE),mac)
# Core Audio (Quicktime) base sound system routines
SOURCES += sound/sdl_sound.cc
SOURCES += music/no_midi.cc
else
so .. can we us a parameter like "quicktime" ore .. to change the lines?
Werner