X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=configure.in;h=e00ce22540c629577869db731f93266361f89432;hb=f05b6981de4c1f76279e17a59d3c42e83ee8d244;hp=da73e8668ac93f3c2b8f61b0ad6e752dbd2c5f7f;hpb=827b49e5c1d8c93b00ad90603ad237a4e0fde406;p=ghc-hetmet.git diff --git a/configure.in b/configure.in index da73e86..e00ce22 100644 --- a/configure.in +++ b/configure.in @@ -204,9 +204,9 @@ i[[3456]]86-*-mingw32*) exeext='.exe' # We assume you're using mingw32 via the gcc that comes # with cygwin, and not the native port, so let's augment - # the gcc command-line used here with -mno-cygwin to - # arrange for good things to happen. - CFLAGS="-mno-cygwin $CFLAGS" + # the gcc command-line used here with -mno-cygwin -mwin32 + # to arrange for good things to happen. + CFLAGS="-mno-cygwin -mwin32 $CFLAGS" ;; m68k-next-nextstep2) HostPlatform_CPP='m68k_next_nextstep2' @@ -355,15 +355,6 @@ if test "$GHC" = ""; then AC_PATH_PROG(GHC,ghc) fi -AC_ARG_WITH(hc, -[ --with-hc= - Use a command different from 'ghc' to compile generic Haskell code. -], -[WithHc="$withval"], -[WithHc=$GHC] -) -AC_SUBST(WithHc) - AC_ARG_WITH(ghc, [ --with-ghc= Use a command different from 'ghc' to compile GHC-specific Haskell code @@ -374,6 +365,15 @@ AC_ARG_WITH(ghc, ) AC_SUBST(WithGhc) +AC_ARG_WITH(hc, +[ --with-hc= + Use a command different from 'ghc' to compile generic Haskell code. +], +[WithHc="$withval"], +[WithHc=$WithGhc] +) +AC_SUBST(WithHc) + if test "$WithGhc" != ""; then FPTOOLS_GHC_VERSION([GhcVersion], [GhcMajVersion], [GhcMinVersion], [GhcPatchLevel])dnl AC_SUBST(GhcVersion)dnl @@ -510,6 +510,11 @@ FPTOOLS_HAVE_GCC dnl ** figure out how to invoke cpp directly (gcc -E is no good) AC_PROG_CPP +case $HostOS_CPP in +mingw32) + CPP="$CPP -mno-cygwin -mwin32" + ;; +esac dnl ** figure out how to do context diffs FPTOOLS_PROG_DIFF @@ -577,7 +582,7 @@ AC_SUBST(CompressSuffix) dnl ** check for installed happy binary + version dnl (don't do it if we're booting from .hc files though.) -if (test "$BootingFromHc" = "NO"); then +if test "$BootingFromHc" = "NO"; then FPTOOLS_HAPPY fi; @@ -842,6 +847,18 @@ else fi AC_SUBST(LibsReadline) +if test "$HaveLibReadline"; then + AC_CHECK_LIB(readline, rl_erase_empty_line, + [AC_DEFINE(HAVE_READLINE_4, 1)], + [AC_DEFINE(HAVE_READLINE_4, 0)]) +else + AC_DEFINE(HAVE_READLINE_4, 0) +fi + +dnl ** check for math library +FPTOOLS_CHECK_LIBM() +AC_SUBST(LIBM) + dnl ################################################################ dnl Check for libraries dnl ################################################################