diff options
author | rubidium <rubidium@openttd.org> | 2008-04-14 19:54:33 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-04-14 19:54:33 +0000 |
commit | d022d4af3d8b64e06484cfb05e3d6e8b94f3d200 (patch) | |
tree | a38226d767be0babf008f3304e7a61a4a00af2aa /projects/generate | |
parent | bf1d42c23d9c7249d63edd953339af9e6acc9b0d (diff) | |
download | openttd-d022d4af3d8b64e06484cfb05e3d6e8b94f3d200.tar.xz |
(svn r12706) -Merge: the thread rewrite from NoAI. The rewrite makes the threading we have better extendable.
Diffstat (limited to 'projects/generate')
-rwxr-xr-x | projects/generate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/generate b/projects/generate index cdc29bf40..0e1929583 100755 --- a/projects/generate +++ b/projects/generate @@ -83,7 +83,7 @@ load_main_data() { if ($0 == "MSVC" && "'$os'" != "MSVC") { next; } if ($0 == "DIRECTMUSIC" && "'$enable_directmusic'" != "1") { next; } if ($0 == "LIBTIMIDITY" && "'$libtimidity'" == "" ) { next; } - if ($0 == "NO_THREADS" && "'$with_threads'" == "0") { next; } + if ($0 == "HAVE_THREAD" && "'$with_threads'" == "0") { next; } skip += 1; |