]> granicus.if.org Git - python/commitdiff
Unsupport --without-universal-newlines.
authorMartin v. Löwis <martin@v.loewis.de>
Thu, 19 Dec 2002 16:21:49 +0000 (16:21 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Thu, 19 Dec 2002 16:21:49 +0000 (16:21 +0000)
README
configure
configure.in

diff --git a/README b/README
index abea8dba14b1e9220bd381dc9934b14e488d0fc4..b7b53afb64599b32721e7e0f8f0ffcc531157b2b 100644 (file)
--- a/README
+++ b/README
@@ -245,6 +245,7 @@ longer:
 - Systems defining PY_PTHREAD_D4, PY_PTHREAD_D6,
   or PY_PTHREAD_D7 in thread_pthread.h
 - Systems using --with-dl-dld
+- Systems using --without-universal-newlines
 
 Platform specific notes
 -----------------------
@@ -957,7 +958,7 @@ Modules/getpath.o.
        any of \r, \n or \r\n is acceptable as end-of-line character.
        If enabled import and execfile will automatically accept any newline
        in files. Python code can open a file with open(file, 'U') to
-       read it in universal newline mode.
+       read it in universal newline mode. THIS OPTION IS UNSUPPORTED.
 
 
 Building for multiple architectures (using the VPATH feature)
index 20d7199c882071e27955b93d5c71f353ac74db35..a5e51b3ff39eed783febde9116f3f4167f63b75b 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.374 .
+# From configure.in Revision: 1.375 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.53 for python 2.3.
 #
@@ -11653,7 +11653,9 @@ fi;
 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
 
 cat >>confdefs.h <<\_ACEOF
index f41b11d9c111735900c9598a0c656ecb50c41f29..c6fd6a1902f6a7d226ab62eaa7aa91271010261d 100644 (file)
@@ -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.])