# HG changeset patch # User truelight # Date 2006-03-23 17:38:31 # Node ID acc0a7f3c5b005e17f25a16f1937add7f92d6c41 # Parent dfa82eb5422a6e3944e0ee5bde72a42848e6ec46 (svn r4070) -Fix: on OSX COCOA was set by default, even with DEDICATED, while those 2 conflict diff --git a/makefiledir/Makefile.libdetection b/makefiledir/Makefile.libdetection --- a/makefiledir/Makefile.libdetection +++ b/makefiledir/Makefile.libdetection @@ -107,9 +107,11 @@ endif ifdef OSX # we prefer to use cocoa drivers rather than SDL drivers # if you really want SDL drivers, you can always modify Makefile.config +ifndef DEDICATED WITH_COCOA:=1 WITH_SDL:= endif +endif # workaround