Commit 711bac0a authored by Georg Brandl's avatar Georg Brandl

Merged revisions 88426 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r88426 | georg.brandl | 2011-02-15 16:44:51 +0100 (Di, 15 Feb 2011) | 1 line

  #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, review by Antoine Pitrou.
........
parent 659e94ee
...@@ -1201,7 +1201,7 @@ distclean: clobber ...@@ -1201,7 +1201,7 @@ distclean: clobber
done done
-rm -f core Makefile Makefile.pre config.status \ -rm -f core Makefile Makefile.pre config.status \
Modules/Setup Modules/Setup.local Modules/Setup.config \ Modules/Setup Modules/Setup.local Modules/Setup.config \
Modules/ld_so_aix Misc/python.pc Modules/ld_so_aix Modules/python.exp Misc/python.pc
-rm -f python*-gdb.py -rm -f python*-gdb.py
find $(srcdir) '(' -name '*.fdc' -o -name '*~' \ find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
-o -name '[@,#]*' -o -name '*.old' \ -o -name '[@,#]*' -o -name '*.old' \
......
...@@ -187,6 +187,8 @@ Extension Modules ...@@ -187,6 +187,8 @@ Extension Modules
Build Build
----- -----
- Issue #941346: Fix broken shared library build on AIX.
- Issue #11268: Prevent Mac OS X Installer failure if Documentation - Issue #11268: Prevent Mac OS X Installer failure if Documentation
package had previously been installed. package had previously been installed.
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -5,14 +5,7 @@ dnl *********************************************** ...@@ -5,14 +5,7 @@ dnl ***********************************************
# Set VERSION so we only need to edit in one place (i.e., here) # Set VERSION so we only need to edit in one place (i.e., here)
m4_define(PYTHON_VERSION, 2.7) m4_define(PYTHON_VERSION, 2.7)
dnl Some m4 magic to ensure that the configure script is generated AC_PREREQ(2.65)
dnl by the correct autoconf version.
m4_define([version_required],
[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]), [$1]), 0,
[],
[m4_fatal([Autoconf version $1 is required for Python], 63)])
])
version_required(2.65)
AC_REVISION($Revision$) AC_REVISION($Revision$)
AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/) AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
...@@ -1764,7 +1757,7 @@ if test -z "$LDSHARED" ...@@ -1764,7 +1757,7 @@ if test -z "$LDSHARED"
then then
case $ac_sys_system/$ac_sys_release in case $ac_sys_system/$ac_sys_release in
AIX*) AIX*)
BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp -L\$(srcdir)" BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp"
LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp" LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
;; ;;
BeOS*) BeOS*)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment