
2 Sep
2002
2 Sep
'02
11:12 a.m.
#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