Merged revisions 88426 via svnmerge from
svn+ssh://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. ........
This commit is contained in:
parent
2774310c27
commit
6baf117d88
|
@ -1193,7 +1193,7 @@ clobber: clean profile-removal
|
|||
distclean: clobber
|
||||
-rm -f core Makefile Makefile.pre config.status \
|
||||
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
|
||||
find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
|
||||
-o -name '[@,#]*' -o -name '*.old' \
|
||||
-o -name '*.orig' -o -name '*.rej' \
|
||||
|
|
|
@ -178,6 +178,8 @@ Extensions
|
|||
Build
|
||||
-----
|
||||
|
||||
- Issue #941346: Fix broken shared library build on AIX.
|
||||
|
||||
- Issue #7716: Under Solaris, don't assume existence of /usr/xpg4/bin/grep in
|
||||
the configure script but use $GREP instead. Patch by Fabian Groffen.
|
||||
|
||||
|
|
|
@ -1730,7 +1730,7 @@ if test -z "$LDSHARED"
|
|||
then
|
||||
case $ac_sys_system/$ac_sys_release in
|
||||
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"
|
||||
;;
|
||||
IRIX/5*) LDSHARED="ld -shared";;
|
||||
|
|
Loading…
Reference in New Issue