diff options
author | Max Horn | 2009-02-15 08:09:42 +0000 |
---|---|---|
committer | Max Horn | 2009-02-15 08:09:42 +0000 |
commit | 002d55bc93578b8d443074242a14dae490a7daec (patch) | |
tree | 1f92ebb3d268e2fe9ac3a1b1172dbf16ea5a9bfa | |
parent | 76e3172f4a18bde523efc0970834532bbacd176a (diff) | |
download | scummvm-rg350-002d55bc93578b8d443074242a14dae490a7daec.tar.gz scummvm-rg350-002d55bc93578b8d443074242a14dae490a7daec.tar.bz2 scummvm-rg350-002d55bc93578b8d443074242a14dae490a7daec.zip |
SCI: Fix the worst compilation problems
svn-id: r38194
-rw-r--r-- | engines/sci/module.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/sci/module.mk b/engines/sci/module.mk index 6f8d5da745..1f5641ac26 100644 --- a/engines/sci/module.mk +++ b/engines/sci/module.mk @@ -91,7 +91,9 @@ MODULE_OBJS = \ sfx/timer/scummvm.o \ sfx/timer/timers.o -CPPFLAGS+=-DSCUMMVM -I$(srcdir)/engines/sci/src/include +# FIXME: The following is supposed to be a set of *temporary* hacks +CXXFLAGS += -Wno-variadic-macros +CPPFLAGS := -DSCUMMVM -I$(srcdir)/engines/sci/include $(CPPFLAGS) # Build .c files as C++ %.o: %.c |