diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-12-19 16:21:49 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-12-19 16:21:49 (GMT) |
commit | 7e4cfcb6bc6e6913fb69a7964bd61684ca3ad639 (patch) | |
tree | 34c66d8678e1dd36ad7c3c40704a734caf975d01 /configure.in | |
parent | 93344ab0365c4b55ef895c9fd3873dd06690ca00 (diff) | |
download | cpython-7e4cfcb6bc6e6913fb69a7964bd61684ca3ad639.zip cpython-7e4cfcb6bc6e6913fb69a7964bd61684ca3ad639.tar.gz cpython-7e4cfcb6bc6e6913fb69a7964bd61684ca3ad639.tar.bz2 |
Unsupport --without-universal-newlines.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index f41b11d..c6fd6a1 100644 --- a/configure.in +++ b/configure.in @@ -1606,7 +1606,9 @@ AC_ARG_WITH(universal-newlines, if test -z "$with_universal_newlines" then with_universal_newlines="yes" fi -if test "$with_universal_newlines" != "no" +if test "$with_universal_newlines" = "no" + echo --without-universal-newlines is unsupported, see README + exit 1 then AC_DEFINE(WITH_UNIVERSAL_NEWLINES, 1, [Define if you want to read files with foreign newlines.]) |