aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2009-02-15 08:09:42 +0000
committerMax Horn2009-02-15 08:09:42 +0000
commit002d55bc93578b8d443074242a14dae490a7daec (patch)
tree1f92ebb3d268e2fe9ac3a1b1172dbf16ea5a9bfa
parent76e3172f4a18bde523efc0970834532bbacd176a (diff)
downloadscummvm-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.mk4
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