summaryrefslogtreecommitdiff
path: root/os
AgeCommit message (Collapse)Author
2006-03-15(svn r3884) renamed TRIPPLE_BINARY to TRIPLE_BINARYbjarni
2006-03-15(svn r3882) -Codechange: [OSX] changed the way universal and tripple ↵bjarni
binaries are build Instead of compiling a binary for each arch and then join them in the end, each .o file is now compiled as a fat file This means that the makefile will not call itself to make a binary for each target and we don't have to make clean between each build it also means that if one file changed, we don't have to recompile all files Another benefit is since it's handled at .o level and though LDFLAGS, no special code is needed if we decide to compile more binaries (like a lot of stuff used to happen at post linking) We also needs much less flags to set up, so it should be even easier to get to work out of the box now The tradeoff in doing so is that now the binary needs at least OSX 10.3.9 to execute To deal with this issue, the JAGUAR flag can be used to compile for older OSes. We will release a binary for old OSes at next release to see if anybody even downloads it (not that many people use OSX 10.2 anymore) GPMI will not work on 10.2 anyway so we will cut support for it some day anyway
2006-03-08(svn r3801) * Update debian packaging files to the ones used for releasing ↵matthijs
0.4.5 (see os/debian/changelog for details). * Fix a small debconf issue which was in the 0.4.5 release.
2006-03-03(svn r3745) Fix two buffer overflows, one case of undefined behavior (the ↵tron
destination buffer of sprintf() may not alias with one of its arguments) and some other minor stuff introduced in r3740
2006-03-02(svn r3740) -Feature: [OSX] added OS version, CPU type and newGRF settings ↵bjarni
to assert window and a message to tell people to add that to a bug report It also adds a new error window, which can be used just like assert, but it is also active when asserts are turned off This is useful for places where it's really important to check even if assert is turned off. It's not used in the code yet
2006-02-27(svn r3682) -Fix: didn't write $ correct in G5_detector in r3673, which ↵bjarni
caused problems for tortoisesvn
2006-02-27(svn r3679) -Fix: [OSX] fixed warning introduced in r3670 about permission ↵bjarni
denied in G5_detector.c when compiling without having Makefile.config
2006-02-26(svn r3676) -Change: [OSX] changed info about package to how to install the gamebjarni
the package is long gone and people don't read a doc about a missing package when they don't expect to find one the doc is called install even though it's not a real install and have nothing to do with make install. People just read it the first time they see it when it's called install ;)
2006-02-25(svn r3675) -Fix: [OSX] made the default gcc names for building universal ↵bjarni
binaries into the newest gcc for each target instead of hardcoding it for 4.0.0
2006-02-25(svn r3674) -Feature: [OSX] Added support for tripple binaries (binaries ↵bjarni
optimised for G3, G5 and i686) G4 have no problems using G3 code while G5 can, but really benefit from getting their own optimised code (Apple: G5 is not just a fast G4) Also changed FAT_BINARY to UNIVERSAL_BINARY since Apple removed most (all?) references to fat binaries on their homepage two days after I added FAT_BINARY
2006-02-25(svn r3673) -Codechange: [OSX] changed the makefile to autodetect if it ↵bjarni
compiles on G5 and then adds flags to optimise for G5 This will not interfere with crosscompiling or universal binaries
2006-02-12(svn r3596) -Codechange: [OSX] changed to use Apple's macros instead of OTTD ↵bjarni
macros for endian conversion This increases the execution speed a lot since GCC can't detect the OTTD macro as an endian conversion while Apple's code uses the instruction to convert endian instead of a series of instructions to produce the same result Since we don't have that many endian conversions in the game, overall performance should not increase noteworthy
2006-02-01(svn r3512) Yet more whitespace fixes (mostly by Rubidium)peter1138
2006-01-31(svn r3502) - Update appropiate files with release information for 0.4.5Darkvater
2006-01-12(svn r3395) Add Id tag (and svn property) to macosx files.peter1138
2006-01-07(svn r3383) -Code cleanup: [OSX] removed SDL support from FAT binaries as it ↵bjarni
caused problems for non-SDL builds FAT binaries now need to rely on COCOA drivers. SDL didn't work properly anyway
2006-01-07(svn r3382) -Feature: [OSX] added the flag JAGUAR to crosscompile for OSX ↵bjarni
10.2.8 on 10.4
2006-01-06(svn r3375) -Add: [ FS#29 ] show an error dialog for OSX cocoa driver (egladil)truelight
2005-12-20(svn r3324) - Codechange: set native eol-style on missing files not yet set soDarkvater
2005-12-10(svn r3286) -Fix: [OSX] 10.2 works again and universal binaries got 10.2 as ↵bjarni
target by default
2005-12-10(svn r3281) -Feature: [OSX] added native cocoa sound and video drivers (egladil)bjarni
you can still use SDL drivers if you like and you have to run "make upgradeconf" to start using the cocoa drivers (or manually write WITH_COCOA:=1) since SDL breaks the cocoa drivers, you can't compile with both SDL and cocoa support Using cocoa drivers makes it easier to make universal binaries and it solves: -FS#18 [OSX] SDL is weird in universal binaries -FS#2 [OSX] lazy pointer crash on exit -FS#10 [OSX] linking error when linking statically to SDL 1.2.8 (needless to explain this, but it means it should be able to compile statically with the default settings now) -[ 1215073 ] Switching to large size out of fullscreen crashes Using SDL drivers will still have those issues though
2005-12-09(svn r3276) reverted the last two commits. OSX 10.2 kept finding new stuff ↵bjarni
to prevent it from running OpenTTD, so now it's not supported anymore
2005-12-09(svn r3275) -Fix: [OSX] removed libpng support and error dialogs from jaguar ↵bjarni
crosscompiles to fix crash
2005-12-09(svn r3274) -Fix: [OSX] added JAGUAR flag to crosscompile for OSX 10.2 ↵bjarni
(codenamed jaguar) JAGUAR and FAT_BINARY can't be used at the same time JAGUAR will disable network support due to missing libs in 10.2
2005-12-09(svn r3273) -Fix: [OSX] PPC part of universal binaries now target 10.3 ↵bjarni
instead of 10.4 10.2 support appears to be broken right now Changed BUILD_UNIVERSAL_BINARY into FAT_BINARY (I got tired of typing)
2005-12-06(svn r3267) -Codechange: [OSX] universal binary makefile code cleanupbjarni
now PPC code is always compiled before x86 code strgen and lng files are only compiled once, which results in shorter building time the makefile now assigns default values to undefined values so much less needs to be set up the code is now easier to maintain
2005-12-06(svn r3262) -Fix: [OSX] universal binaries can now include the dynamic SDL ↵bjarni
lib into the bundle
2005-12-04(svn r3259) -Fix: [OSX] fixed that universal binaries did not make a bundlebjarni
2005-12-04(svn r3258) -Feature: [OSX] added support for universal binariesbjarni
it needs both PPC and x86 libs to compile due to this fact, compilation with libPNG or SDL is not tested (dedicated servers only) only PPC part is tested as I don't have x86 OSX
2005-12-03(svn r3257) -Codechange: [OSX] removed the dynamic lib in bundle option ↵bjarni
(introduced in rev 3230) it caused way more problems than it solved
2005-12-03(svn r3256) -Fix: [OSX] fixed issue where building the bundle could take ↵bjarni
place before linking if -j 2 was used
2005-11-23(svn r3230) -Feature: [OSX] OSX builds can now change where it searches for ↵bjarni
dynamic libs and can move libs into the bundle This is not a fix for the issues with static linking, more like a workaround. Static linking still got issues Apple recommends to use dynamic linking anyway, so I guess this doesn't matter much
2005-11-13(svn r3175) - Updated OS/2 project file to include station_newgrf.corudge
2005-10-11(svn r3031) forgot 1 file and two lines in rev 3029 (mac midi stuff)bjarni
2005-10-10(svn r3029) -Change: [OSX] removed the buggy java midi player, which was ↵bjarni
rendered obsolite by r3022
2005-09-09(svn r2928) - Update OS/2 project with AI file changesorudge
2005-09-01(svn r2905) fix casingDarkvater
2005-09-01(svn r2904) Stupid editors, and renaming files with the same name just ↵Darkvater
different casing is not really possible, so here comes another commit
2005-08-21(svn r2882) Some fixes for MorphOS (by tokai)tron
- Don't track dependencies on system headers - Add an include path - Silence a warning regarding a bad signal prototype - Remove executable flag from pictures - Add proper OTTD icon
2005-08-15(svn r2869) - Update Watcom project with gfxinit.corudge
2005-07-31(svn r2765) - Update MSVC6 and Watcom projects with strgen/stdafx.c removalorudge
2005-07-29(svn r2745) -Fix: [OSX] removed the assert window introduced in 2741 from strgenbjarni
- it appeared to cause problems and strgen don't need a GUI - renamed ottd to openttd in the app menu (Tobin)
2005-07-28(svn r2741) -Feature: [OSX] added a window to display asserts on OSX (Tobin)bjarni
2005-07-24(svn r2703) - Feature: [OSX] Added a native alert window to show whatever ↵bjarni
error() needs to print (Tobin made this, while I fixed some issued in it) - As a bonus, we now have an objective C file (os/macosx/macos.m) to use the functions Apple made to interact with OS stuff
2005-07-23(svn r2695) - Fix: OS/2 project update, add os2.h to dedicated_v.corudge
2005-07-23(svn r2689) - Split OS/2 music driver into os2_m.c, update project fileorudge
2005-07-23(svn r2685) -Codechange: Split the music/sound/video drivers into separate ↵tron
files and move them into subfolders. This results in shorter and hopefully easier to maintain files. Note: I had to change paths in #include statements of some unrelated files, because I added the ottd base directory to the include path (-I.)
2005-07-22(svn r2681) - Fix OS/2 port, please do not modify openttd.wpj/tgt by hand ↵orudge
unless you know what you're doing!
2005-06-16(svn r2446) * Made os/debian/rules executable.matthijs
2005-06-02(svn r2398) - CodeChange: forgot to update unix and os2 specific files as well.Darkvater