[Python-checkins] python/dist/src configure, 1.439,
1.440 configure.in, 1.450, 1.451 pyconfig.h.in, 1.93, 1.94
montanaro at users.sourceforge.net
montanaro at users.sourceforge.net
Sat Feb 7 08:53:47 EST 2004
Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25111
Modified Files:
configure configure.in pyconfig.h.in
Log Message:
Remove support for --without-universal-newlines (see PEP 11).
Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.439
retrieving revision 1.440
diff -C2 -d -r1.439 -r1.440
*** configure 7 Feb 2004 12:55:44 -0000 1.439
--- configure 7 Feb 2004 13:53:44 -0000 1.440
***************
*** 1,4 ****
#! /bin/sh
! # From configure.in Revision: 1.449 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.57 for python 2.4.
--- 1,4 ----
#! /bin/sh
! # From configure.in Revision: 1.450 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.57 for python 2.4.
***************
*** 867,872 ****
deprecated; use --with(out)-threads
--with-pth use GNU pth threading libraries
- --with(out)-universal-newlines
- disable/enable foreign newlines
--with(out)-doc-strings disable/enable documentation strings
--with(out)-pymalloc disable/enable specialized mallocs
--- 867,870 ----
***************
*** 11962,11992 ****
fi
- # Check for universal newline support
- echo "$as_me:$LINENO: checking for --with-universal-newlines" >&5
- echo $ECHO_N "checking for --with-universal-newlines... $ECHO_C" >&6
-
- # Check whether --with-universal-newlines or --without-universal-newlines was given.
- if test "${with_universal_newlines+set}" = set; then
- withval="$with_universal_newlines"
-
- fi;
-
- if test -z "$with_universal_newlines"
- then with_universal_newlines="yes"
- fi
- if test "$with_universal_newlines" = "no"
- then
- echo --without-universal-newlines is unsupported, see README
- exit 1
- else
-
- cat >>confdefs.h <<\_ACEOF
- #define WITH_UNIVERSAL_NEWLINES 1
- _ACEOF
-
- fi
- echo "$as_me:$LINENO: result: $with_universal_newlines" >&5
- echo "${ECHO_T}$with_universal_newlines" >&6
-
# Check for --with-doc-strings
echo "$as_me:$LINENO: checking for --with-doc-strings" >&5
--- 11960,11963 ----
Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.450
retrieving revision 1.451
diff -C2 -d -r1.450 -r1.451
*** configure.in 7 Feb 2004 12:55:45 -0000 1.450
--- configure.in 7 Feb 2004 13:53:45 -0000 1.451
***************
*** 1886,1907 ****
fi
- # Check for universal newline support
- AC_MSG_CHECKING(for --with-universal-newlines)
- AC_ARG_WITH(universal-newlines,
- AC_HELP_STRING(--with(out)-universal-newlines, disable/enable foreign newlines))
-
- if test -z "$with_universal_newlines"
- then with_universal_newlines="yes"
- fi
- if test "$with_universal_newlines" = "no"
- then
- echo --without-universal-newlines is unsupported, see README
- exit 1
- else
- AC_DEFINE(WITH_UNIVERSAL_NEWLINES, 1,
- [Define if you want to read files with foreign newlines.])
- fi
- AC_MSG_RESULT($with_universal_newlines)
-
# Check for --with-doc-strings
AC_MSG_CHECKING(for --with-doc-strings)
--- 1886,1889 ----
Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.93
retrieving revision 1.94
diff -C2 -d -r1.93 -r1.94
*** pyconfig.h.in 7 Feb 2004 12:55:45 -0000 1.93
--- pyconfig.h.in 7 Feb 2004 13:53:45 -0000 1.94
***************
*** 793,799 ****
#undef WITH_THREAD
- /* Define if you want to read files with foreign newlines. */
- #undef WITH_UNIVERSAL_NEWLINES
-
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */
--- 793,796 ----
More information about the Python-checkins
mailing list