X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=configure.ac;h=ce9e04b34e5b75cddaaac75c0002b31195ffb38f;hb=1a74e14655acb56919ac74bd92c116c7d01d7c30;hp=d4335229e165eb3c6ccad65d57ed90e09398723d;hpb=8b7e4e09174a407fb4e9f6e8f2e105c9d272b214;p=ghc-hetmet.git diff --git a/configure.ac b/configure.ac index d433522..ce9e04b 100644 --- a/configure.ac +++ b/configure.ac @@ -27,10 +27,12 @@ AC_INIT([The Glorious Glasgow Haskell Compilation System], [6.7], [glasgow-haske # when the source distribution was created. if test ! -f mk/config.h.in; then - echo "mk/config.h.in doesn't exist: perhaps you haven't run 'autoreconf'?" + echo "mk/config.h.in doesn't exist: perhaps you haven't run 'sh boot'?" exit 1 fi +AC_SUBST([CONFIGURE_ARGS], [$ac_configure_args]) + FP_SETUP_PROJECT_VERSION # Hmmm, we fix the RPM release number to 1 here... Is this convenient? @@ -44,13 +46,6 @@ dnl We need 2.50 due to the use of AC_SYS_LARGEFILE and AC_MSG_NOTICE. dnl We need 2.52 due to the use of AS_TR_CPP and AS_TR_SH. AC_PREREQ([2.52]) -dnl * Declare subdirectories that have a private configure script -dnl -dnl After the toplevel configuration is complete, the script will recurse into -dnl these subdirectories if they exist. The use of a cache file makes repeated -dnl checks cheap. -AC_CONFIG_SUBDIRS([libraries]) - # ------------------------------------------------------------------------- # Prepare to generate the following header files # @@ -715,16 +710,18 @@ if test "$WithGhc" != ""; then AC_SUBST(GhcMajVersion)dnl AC_SUBST(GhcMinVersion)dnl AC_SUBST(GhcPatchLevel)dnl - ghc_ge_504=`if test $(GhcCanonVersion) -ge 504; then echo YES; else echo NO; fi` - AC_SUBST(ghc_ge_504)dnl - ghc_ge_601=`if test $(GhcCanonVersion) -ge 601; then echo YES; else echo NO; fi` + GhcMinVersion2=`echo "$GhcMinVersion" | sed 's/^\\(.\\)$/0\\1/'` + GhcCanonVersion="$GhcMajVersion$GhcMinVersion2" + if test $GhcCanonVersion -ge 601; then ghc_ge_601=YES; else ghc_ge_601=NO; fi + if test $GhcCanonVersion -ge 602; then ghc_ge_602=YES; else ghc_ge_602=NO; fi + if test $GhcCanonVersion -ge 603; then ghc_ge_603=YES; else ghc_ge_603=NO; fi + if test $GhcCanonVersion -ge 605; then ghc_ge_605=YES; else ghc_ge_605=NO; fi + if test $GhcCanonVersion -ge 607; then ghc_ge_607=YES; else ghc_ge_607=NO; fi AC_SUBST(ghc_ge_601)dnl - ghc_ge_602=`if test $(GhcCanonVersion) -ge 602; then echo YES; else echo NO; fi` AC_SUBST(ghc_ge_602)dnl - ghc_ge_603=`if test $(GhcCanonVersion) -ge 603; then echo YES; else echo NO; fi` AC_SUBST(ghc_ge_603)dnl - ghc_ge_605=`if test $(GhcCanonVersion) -ge 605; then echo YES; else echo NO; fi` AC_SUBST(ghc_ge_605)dnl + AC_SUBST(ghc_ge_607)dnl fi # Check whether this GHC has readline installed @@ -754,6 +751,25 @@ AC_ARG_WITH(gcc, ) AC_SUBST(WhatGccIsCalled) +dnl ** Which ld to use? +dnl -------------------------------------------------------------- +AC_ARG_WITH(ld, +[AC_HELP_STRING([--with-ld=ARG], + [Use ARG as the path to LD [default=autodetect]])], +[if test "x$HostPlatform" = "xi386-unknown-mingw32" + then + if test "${OSTYPE}" != "msys" + then + # Canonicalise to :/path/to/ld + withval=`cygpath -w ${withval} | sed -e 's@\\\\@/@g' ` + fi + fi; + LD=$withval + FP_PROG_LD([$LD]) + ], + [FP_PROG_LD()] +) + dnl ** Booting from .hc files? dnl -------------------------------------------------------------- AC_ARG_ENABLE(hc-boot,