aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2009-03-18 09:42:47 +0000
committerTravis Howell2009-03-18 09:42:47 +0000
commitd4fd77c8de8f2c587f92989ed558f59ffd0effc1 (patch)
treed22bfa625e88caec07176823037dddfac4cf3cdb
parent7918852b1df4dde88bdd2c7d569cdebbd27674e1 (diff)
downloadscummvm-rg350-d4fd77c8de8f2c587f92989ed558f59ffd0effc1.tar.gz
scummvm-rg350-d4fd77c8de8f2c587f92989ed558f59ffd0effc1.tar.bz2
scummvm-rg350-d4fd77c8de8f2c587f92989ed558f59ffd0effc1.zip
Fix bug #2684645 - AMIGAOS: Build breaks in base/commandline.
svn-id: r39508
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index 78245d5f24..23dd8ac3b9 100755
--- a/configure
+++ b/configure
@@ -1118,7 +1118,11 @@ case $_host_os in
DEFINES="$DEFINES -DUNIX -DSYSTEM_NOT_SUPPORTING_D_TYPE"
;;
amigaos*)
- # TODO: anything to be added here?
+ CXXFLAGS="$CFLAGS -mcrt=newlib -mstrict-align -mcpu=750 -mtune=7400"
+ LDFLAGS="$LDFLAGS -mcrt=newlib -use-dynld -Lsobjs:"
+ type_1_byte='char'
+ type_2_byte='short'
+ type_4_byte='long'
;;
# given this is a shell script assume some type of unix
*)