From d619e760b58b0cd8f0fb1a185c2fb19831021fee Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 12 Feb 2001 10:13:43 +0000 Subject: [PATCH] [project @ 2001-02-12 10:13:43 by simonmar] GhcWithInterpreter is now YES by default on supported architectures. --- mk/config.mk.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mk/config.mk.in b/mk/config.mk.in index 2dbe35a..7327d2a 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -190,11 +190,11 @@ endif # Include GHCi in the compiler. Default to NO for the time being. -# ifneq "$(findstring $(HostOS_CPP), linux solaris freebsd netbsd openbsd)" "" -# GhcWithInterpreter=YES -# else +ifneq "$(findstring $(HostOS_CPP), linux solaris freebsd netbsd openbsd)" "" +GhcWithInterpreter=YES +else GhcWithInterpreter=NO -# endif +endif # # Building various ways? -- 1.7.10.4