diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-04-16 05:51:02 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-04-16 05:51:02 (GMT) |
commit | e8aea58b99c28bf7404cc9bf292c0a9edd3fd4e5 (patch) | |
tree | 715ead59bc16298152e7cd8e91d8e28c52e8b5a9 /configure.in | |
parent | 16f9055a9bf1c28bd398ea7b82195d32f8ab44b1 (diff) | |
download | cpython-e8aea58b99c28bf7404cc9bf292c0a9edd3fd4e5.zip cpython-e8aea58b99c28bf7404cc9bf292c0a9edd3fd4e5.tar.gz cpython-e8aea58b99c28bf7404cc9bf292c0a9edd3fd4e5.tar.bz2 |
Move WITH_UNIVERSAL_NEWLINES template into configure.in.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7aef29a..de9f216 100644 --- a/configure.in +++ b/configure.in @@ -1455,7 +1455,8 @@ then with_universal_newlines="yes" fi if test "$with_universal_newlines" != "no" then - AC_DEFINE(WITH_UNIVERSAL_NEWLINES) + AC_DEFINE(WITH_UNIVERSAL_NEWLINES, 1, + [Define if you want to read files with foreign newlines.]) fi AC_MSG_RESULT($with_universal_newlines) |