# HG changeset patch # User Christian Kamm # Date 1219595145 -7200 # Node ID a426104603081d5ac09588525a4e151a47490514 # Parent f478666f5b969c98e7f86b53feef52b350020f6a# Parent 1c7220171d41b3edf746cdc797653aef5797100a Automated merge with http://hg.dsource.org/projects/llvmdc diff -r f478666f5b96 -r a42610460308 premake.lua --- a/premake.lua Sun Aug 24 18:11:08 2008 +0200 +++ b/premake.lua Sun Aug 24 18:25:45 2008 +0200 @@ -6,14 +6,11 @@ OPAQUE_VTBLS = 1 -- use of boehm gc -if OS == "windows" then - USE_BOEHM_GC = 0 -else - addoption("no-boehm", "Disable use of the Boehm GC") +USE_BOEHM_GC = 0 +if OS ~= "windows" then + addoption("enable-boehm-gc", "Enable use of the Boehm GC (broken!)") - if options["no-boehm"] then - USE_BOEHM_GC = 0 - else + if options["enable-boehm-gc"] then USE_BOEHM_GC = 1 end end