GHCi off by default?

Malcolm Wallace Malcolm.Wallace@cs.york.ac.uk
Mon, 2 Sep 2002 12:12:23 +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.

Regards,
    Malcolm