From 2eb65457a883d3f231c8e378911c4de2cd644b4c Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 23 May 2009 19:35:33 +0000 Subject: [PATCH] Merged revisions 72871-72872 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r72871 | benjamin.peterson | 2009-05-23 14:24:37 -0500 (Sat, 23 May 2009) | 1 line support building with subversion 1.7 #6094 ........ r72872 | benjamin.peterson | 2009-05-23 14:31:02 -0500 (Sat, 23 May 2009) | 1 line reorder name ........ --- Makefile.pre.in | 2 +- Misc/ACKS | 1 + Misc/NEWS | 2 ++ Modules/getbuildinfo.c | 2 +- Python/sysmodule.c | 2 +- configure | 4 ++-- configure.in | 2 +- 7 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 5c5e29c37b6..689d248f405 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -501,7 +501,7 @@ Modules/getbuildinfo.o: $(PARSER_OBJS) \ $(SIGNAL_OBJS) \ $(MODOBJS) \ $(srcdir)/Modules/getbuildinfo.c - $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c + $(CC) -c $(PY_CFLAGS) -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" -o $@ $(srcdir)/Modules/getbuildinfo.c Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \ diff --git a/Misc/ACKS b/Misc/ACKS index 9573698c4a2..e0890e86954 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -684,6 +684,7 @@ Andrew Svetlov Kalle Svensson Paul Swartz Thenault Sylvain +Arfrever Frehtes Taifersar Arahesis Geoff Talvola William Tanksley Christian Tanzer diff --git a/Misc/NEWS b/Misc/NEWS index 018854b8c38..6fdbd0bcb2f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -98,6 +98,8 @@ Library Build ----- +- Issue #6094: Build correctly with Subversion 1.7. + - Issue #5726: Make Modules/ld_so_aix return the actual exit code of the linker, rather than always exit successfully. Patch by Floris Bruynooghe. diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c index b673f3f98d4..f4bd14aa930 100644 --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -48,5 +48,5 @@ _Py_svnversion(void) static const char svnversion[] = SVNVERSION; if (svnversion[0] != '$') return svnversion; /* it was interpolated, or passed on command line */ - return "exported"; + return "Unversioned directory"; } diff --git a/Python/sysmodule.c b/Python/sysmodule.c index ff7157fc650..10ba1cf668d 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1161,7 +1161,7 @@ svnversion_init(void) svnversion = _Py_svnversion(); - if (strcmp(svnversion, "exported") != 0) + if (strcmp(svnversion, "Unversioned directory") != 0 && strcmp(svnversion, "exported") != 0) svn_revision = svnversion; else if (istag) { len = strlen(_patchlevel_revision); diff --git a/configure b/configure index 67725d74aff..69f15ac8c35 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 70731 . +# From configure.in Revision: 72275 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 2.6. # @@ -4344,7 +4344,7 @@ if test $SVNVERSION = found then SVNVERSION="svnversion \$(srcdir)" else - SVNVERSION="echo exported" + SVNVERSION="echo Unversioned directory" fi case $MACHDEP in diff --git a/configure.in b/configure.in index 6730b4c9f51..481d4002245 100644 --- a/configure.in +++ b/configure.in @@ -767,7 +767,7 @@ if test $SVNVERSION = found then SVNVERSION="svnversion \$(srcdir)" else - SVNVERSION="echo exported" + SVNVERSION="echo Unversioned directory" fi case $MACHDEP in