diff options
author | Max Horn | 2008-07-19 21:42:31 +0000 |
---|---|---|
committer | Max Horn | 2008-07-19 21:42:31 +0000 |
commit | 4ab211f6732afb445e8f0e579b9e07b7fbfaa644 (patch) | |
tree | 3b1304ae1c70d74ad106c1b7b7f7907dc0239226 /Makefile | |
parent | ec02171268db13d069dd312cdd38ab281087366c (diff) | |
download | scummvm-rg350-4ab211f6732afb445e8f0e579b9e07b7fbfaa644.tar.gz scummvm-rg350-4ab211f6732afb445e8f0e579b9e07b7fbfaa644.tar.bz2 scummvm-rg350-4ab211f6732afb445e8f0e579b9e07b7fbfaa644.zip |
Removed -Wundef from the default list of compiler flags, and changed PLUGIN_ENABLED_DYNAMIC to not use 'defined()', thus avoiding compiler problems on e.g. BeOS
svn-id: r33114
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ CXXFLAGS:= -Wall $(CXXFLAGS) CXXFLAGS+= -Wno-long-long -Wno-multichar -Wno-unknown-pragmas -Wno-reorder # Enable even more warnings... CXXFLAGS+= -pedantic -Wpointer-arith -Wcast-qual -Wcast-align -CXXFLAGS+= -Wshadow -Wimplicit -Wundef -Wnon-virtual-dtor -Wwrite-strings +CXXFLAGS+= -Wshadow -Wimplicit -Wnon-virtual-dtor -Wwrite-strings # Disable RTTI and exceptions, and enabled checking of pointers returned by "new" CXXFLAGS+= -fno-rtti -fno-exceptions -fcheck-new |