diff options
author | Judah Jacobson <judah.jacobson@gmail.com> | 2008-11-14 18:33:34 +0000 |
---|---|---|
committer | Judah Jacobson <judah.jacobson@gmail.com> | 2008-11-14 18:33:34 +0000 |
commit | 33189c6969f4838dab3558497dd66f7400ee77d0 (patch) | |
tree | 004dd59f0a38c2a2bf504d53bd9b771695a2a625 | |
parent | d600bf7a6afdbfc4a22f9379406a9c6f789a4c2d (diff) | |
download | haskell-33189c6969f4838dab3558497dd66f7400ee77d0.tar.gz |
Add help messages about --with-editline-(includes,libraries) to the ghc configure script.
-rw-r--r-- | configure.ac | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index fa33982e6c..38ba4b7ba8 100644 --- a/configure.ac +++ b/configure.ac @@ -680,6 +680,22 @@ fi # Check whether this GHC has editline installed FP_GHC_HAS_EDITLINE +# Dummy arguments to print help for --with-editline-* arguments. +# Those are actually passed to the editline package's configure script +# via the CONFIGURE_ARGS variable in mk/config.mk +AC_ARG_WITH(dummy-editline-includes, + [AC_HELP_STRING([--with-editline-includes], + [directory containing editline/editline.h or editline/readline.h])], + [], + []) + +AC_ARG_WITH(dummy-editline-libraries, + [AC_HELP_STRING([--with-editline-libraries], + [directory containing the editline library])], + [], + []) + + AC_PATH_PROGS(NHC,nhc nhc98) AC_PATH_PROG(HBC,hbc) |