Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7e4cfcb6
Commit
7e4cfcb6
authored
Dec 19, 2002
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unsupport --without-universal-newlines.
parent
93344ab0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
README
README
+2
-1
configure
configure
+4
-2
configure.in
configure.in
+3
-1
No files found.
README
View file @
7e4cfcb6
...
...
@@ -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)
...
...
configure
View file @
7e4cfcb6
#! /bin/sh
# From configure.in Revision: 1.37
4
.
# From configure.in Revision: 1.37
5
.
# 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
...
...
configure.in
View file @
7e4cfcb6
...
...
@@ -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.])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment