diff options
| author | bringert <bringert@cs.chalmers.se> | 2006-04-19 08:48:54 +0000 |
|---|---|---|
| committer | bringert <bringert@cs.chalmers.se> | 2006-04-19 08:48:54 +0000 |
| commit | 43b962f525448492bf7843541ebc1b2c818172e8 (patch) | |
| tree | d283dfc80858aca267d99149af2ad203a5b172f8 /src | |
| parent | a663a046edf310247cf1e82761c79397d9bd42ad (diff) | |
Disable readline support on cygwin, regardless of GHC version.
Diffstat (limited to 'src')
| -rw-r--r-- | src/configure.ac | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/configure.ac b/src/configure.ac index 09888200f..34156df30 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -61,9 +61,10 @@ AC_ARG_WITH(readline, else READLINE="$withval" fi], - [if test "$GHC_VERSION" = "6.4" && test "$host_os" = "cygwin"; then - AC_MSG_WARN([There are problems with readline on 6.4 for Windows, - disabling readline support. + [if test "$host_os" = "cygwin"; then + AC_MSG_WARN([There are problems with readline for Windows, + for example, pipe characters do not work. + Disabling readline support. Use --with-readline to override.]) READLINE="no" else |
