# HG changeset patch # User rubidium # Date 1228263546 0 # Node ID 03e9c6b00a006b0f64ea40f913394e7e4abaddfc # Parent 129857a9378606431b2d6025b777b21541dbe119 (svn r14651) -Fix [FS#2437] (r14636): extmidi wasn't compiled/linked anymore. diff -r 129857a93786 -r 03e9c6b00a00 configure --- a/configure Wed Dec 03 00:14:19 2008 +0000 +++ b/configure Wed Dec 03 00:19:06 2008 +0000 @@ -90,6 +90,7 @@ if ($0 == "PSP" && "'$os'" != "PSP") { next; } 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 == "WIN32" && "'$os'" != "MINGW" && "'$os'" != "CYGWIN" && "'$os'" != "MSVC" ) { next; } diff -r 129857a93786 -r 03e9c6b00a00 projects/generate --- a/projects/generate Wed Dec 03 00:14:19 2008 +0000 +++ b/projects/generate Wed Dec 03 00:19:06 2008 +0000 @@ -85,6 +85,7 @@ if ($0 == "OSX" && "'$os'" != "OSX") { next; } if ($0 == "OS2" && "'$os'" != "OS2") { next; } if ($0 == "PSP" && "'$os'" != "PSP") { next; } + if ($0 == "DOS" && "'$os'" != "DOS") { next; } if ($0 == "DEDICATED" && "'$enable_dedicated'" != "1") { next; } if ($0 == "COCOA" && "'$with_cocoa'" == "0") { next; } if ($0 == "BEOS" && "'$os'" != "BEOS") { next; }