Browse Source

Issue #10656: Fix out-of-tree building on AIX

The ld_so_aix script and python.exp file are created in the build directory.
Patch by Tristan Carel and Michael Haubenwallner.
pull/40/head
Martin Panter 9 years ago
parent
commit
395733d46b
  1. 2
      Makefile.pre.in
  2. 2
      Misc/ACKS
  3. 3
      Misc/NEWS
  4. 1
      Modules/ld_so_aix.in
  5. 2
      configure
  6. 2
      configure.ac

2
Makefile.pre.in

@ -1418,7 +1418,7 @@ libainstall: all python-config
$(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
$(DESTDIR)$(LIBPL)/makexp_aix; \
echo "$(LIBPL)/makexp_aix"; \
$(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
$(INSTALL_SCRIPT) Modules/ld_so_aix \
$(DESTDIR)$(LIBPL)/ld_so_aix; \
echo "$(LIBPL)/ld_so_aix"; \
echo; echo "See Misc/AIX-NOTES for details."; \

2
Misc/ACKS

@ -225,6 +225,7 @@ Arnaud Calmettes
Daniel Calvelo
Tony Campbell
Brett Cannon
Tristan Carel
Mike Carlton
Pierre Carrier
Terry Carroll
@ -573,6 +574,7 @@ Travis B. Hartwell
Larry Hastings
Tim Hatch
Shane Hathaway
Michael Haubenwallner
Janko Hauser
Rycharde Hawkes
Ben Hayden

3
Misc/NEWS

@ -555,6 +555,9 @@ Windows
Build
-----
- Issue #10656: Fix out-of-tree building on AIX. Patch by Tristan Carel and
Michael Haubenwallner.
- Issue #26359: Rename --with-optimiations to --enable-optimizations.
- Issue #28444: Fix missing extensions modules when cross compiling.

1
Modules/ld_so_aix.in

@ -70,6 +70,7 @@ if test ! -n "$*"; then
fi
makexp=`dirname $0`/makexp_aix
test -x "${makexp}" || makexp="@abs_srcdir@/makexp_aix"
# Check for existence of compiler.
CC=$1; shift

2
configure

@ -9226,7 +9226,7 @@ if test -z "$LDSHARED"
then
case $ac_sys_system/$ac_sys_release in
AIX*)
BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp"
BLDSHARED="Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
;;
IRIX/5*) LDSHARED="ld -shared";;

2
configure.ac

@ -2358,7 +2358,7 @@ if test -z "$LDSHARED"
then
case $ac_sys_system/$ac_sys_release in
AIX*)
BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp"
BLDSHARED="Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
;;
IRIX/5*) LDSHARED="ld -shared";;

Loading…
Cancel
Save