diff options
author | rubidium <rubidium@openttd.org> | 2009-09-21 18:36:33 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-09-21 18:36:33 +0000 |
commit | 01ab1c60011eb1b9cef03fac73da4b71410f1460 (patch) | |
tree | db7eec7f2444b6f5381730c56692700a22551f77 /configure | |
parent | 3dd202ba1c15bb5e1bac3ab21eed7f63435a88bb (diff) | |
download | openttd-01ab1c60011eb1b9cef03fac73da4b71410f1460.tar.xz |
(svn r17606) -Add: initial support for Haiku; a dedicated server with zlib and libpng compiles and links (for me). Something's fishy with the network so it doesn't actually work (yet)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -115,9 +115,10 @@ AWKCOMMAND=' if ($0 == "DEDICATED" && "'$enable_dedicated'" != "1") { next; } if ($0 == "COCOA" && "'$with_cocoa'" == "0") { next; } if ($0 == "DOS" && "'$os'" != "DOS") { next; } - if ($0 == "BEOS" && "'$os'" != "BEOS") { next; } + if ($0 == "BEOS" && "'$os'" != "BEOS" && + "'$os'" != "HAIKU") { next; } if ($0 == "WIN32" && "'$os'" != "MINGW" && - "'$os'" != "CYGWIN" && "'$os'" != "MSVC" ) { next; } + "'$os'" != "CYGWIN" && "'$os'" != "MSVC") { next; } if ($0 == "MORPHOS" && "'$os'" != "MORPHOS") { next; } if ($0 == "WINCE" && "'$os'" != "WINCE") { next; } if ($0 == "MSVC" && "'$os'" != "MSVC") { next; } |