diff options
author | Ruediger Hanke | 2003-01-25 21:15:55 +0000 |
---|---|---|
committer | Ruediger Hanke | 2003-01-25 21:15:55 +0000 |
commit | f33b08ae66f760186b0bfe44918fbeb5c2c8fb1a (patch) | |
tree | 7c59b2edd492ae6f53545d6b6dee9737fc5f9253 /backends/morphos | |
parent | bfbfdcd4ec6f5832aa2ca736b091c5bac45da976 (diff) | |
download | scummvm-rg350-f33b08ae66f760186b0bfe44918fbeb5c2c8fb1a.tar.gz scummvm-rg350-f33b08ae66f760186b0bfe44918fbeb5c2c8fb1a.tar.bz2 scummvm-rg350-f33b08ae66f760186b0bfe44918fbeb5c2c8fb1a.zip |
Ok. I give up trying to teach that char is unsigned on some systems. Setting char to signed as default.
svn-id: r6543
Diffstat (limited to 'backends/morphos')
-rw-r--r-- | backends/morphos/build.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/morphos/build.rules b/backends/morphos/build.rules index e13839d08d..2ad6e8c28d 100644 --- a/backends/morphos/build.rules +++ b/backends/morphos/build.rules @@ -1,5 +1,5 @@ CXX = g++ -CFLAGS = -Wno-multichar -fstrength-reduce -fno-rtti -O2 +CXXFLAGS = -Wno-multichar -fstrength-reduce -fsigned-char -fno-rtti -O2 DEFINES = -DNDEBUG LDFLAGS = -noixemul -s LIBS = -lamiga -lamigastubs -lcybergraphics |