summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2006-12-28 01:24:00 +0000
committerbjarni <bjarni@openttd.org>2006-12-28 01:24:00 +0000
commitd657aa97de44adc8a1957529718eebedbebc3ba9 (patch)
tree66e900d8deb29aa0bacebfc628e5f38a10041449 /Makefile
parent1f836aa99586d4d9dd6fcac1977b92a47cade305 (diff)
downloadopenttd-d657aa97de44adc8a1957529718eebedbebc3ba9.tar.xz
(svn r7588) -Change: [OSX] removed the flag JAGUAR since it didn't work anyway
Also removed all the Makefile code regarding this flag since it's no longer needed Removed documentation about special limitations regarding running the game on OSX 10.2 OpenTTD now officially needs OSX 10.3.9 to work correctly (the trunk needed that for months)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 113496dc6..023577462 100644
--- a/Makefile
+++ b/Makefile
@@ -112,9 +112,6 @@
# OTTD_PPC, OTTD_PPC970, OTTD_i386: compile for target architecture.
# Multiple flags can be used so OTTD_PPC:=1 OTTD_i386:=1 produces the same result as UNIVERSAL_BINARY
#
-# JAGUAR: Crosscompiling for OSX 1.2.8 (codenamed Jaguar). Only works if OSX is defined too. Only works with GCC 4 or newer
-# This can be changed to any PPC version of OSX by changing the ppc flags in Makefile.config
-#
# ENDIAN_FORCE: forces the endian-check to give a certain result. Can be BE, LE or PREPROCESSOR.
# PREPROCESSOR is always used on all OSX targets and will make the preprocessor pick the right endian.
# this means that you don't have to think about endianess when compiling for OSX.
@@ -538,10 +535,8 @@ endif
# iconv is enabled defaultly on OSX >= 10.3
ifdef OSX
- ifndef JAGUAR
- WITH_ICONV=1
- LIBS += -liconv
- endif
+ WITH_ICONV=1
+ LIBS += -liconv
endif
ifdef WITH_ICONV