GHCi off by default?
Simon Marlow
simonmar@microsoft.com
Mon, 2 Sep 2002 12:22:17 +0100
> > > #ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32 linux
> > > solaris2 freebsd
> > > netbsd openbsd)" ""
> > > GhcWithInterpreter=YES
> > > ifeq "$(HaveLibDL)" "YES"
> > > SRC_HC_OPTS += -ldl
> > > endif
> > > #else
> > > #GhcWithInterpreter=NO
> > > #endif
> > >
> > > This appears to turn GHCi off for mingw32, cygwin32, linux,
> > > solaris2, freebsd, netbsd, and openbsd.
>
> In Makefiles, # means the rest of the line is commented out.
> Only a plain `ifeq' (no #) has effect.
I think he commented out those lines so as to disable the conditional.
Cheers,
Simon