From 27f9da4f20404b33cd16260288f4f390e04cef69 Mon Sep 17 00:00:00 2001 From: truelight Date: Thu, 23 Mar 2006 17:38:31 +0000 Subject: [PATCH] (svn r4070) -Fix: on OSX COCOA was set by default, even with DEDICATED, while those 2 conflict --- makefiledir/Makefile.libdetection | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makefiledir/Makefile.libdetection b/makefiledir/Makefile.libdetection index 213c62b76a..237c02f98a 100644 --- 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