summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-03-31 15:53:49 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2003-03-31 15:53:49 +0000
commit2bf0cfbb3acd6e2d65570039d922ef1461975106 (patch)
tree1bee3730c8d3559d88da9e419f798e2bd696b0ef /configure
parent3e8a3b00a84ec5bc411082a2da9227ec5bbcd087 (diff)
downloadcpython-2bf0cfbb3acd6e2d65570039d922ef1461975106.tar.gz
SF patch #712367, get build working on AIX
configure change is necessary to pass "." to makexp_aix so that dynamic modules work setup change gets curses working
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure b/configure
index a7c4a9d421..24d60e8ffc 100755
--- a/configure
+++ b/configure
@@ -3176,7 +3176,12 @@ then
fi
case $ac_sys_system in
AIX*)
- LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $LINKCC";;
+ exp_extra="\"\""
+ if test $ac_sys_release -ge 5 -o \
+ $ac_sys_release -eq 4 -a `uname -r` -ge 2 ; then
+ exp_extra="."
+ fi
+ LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp $exp_extra \$(LIBRARY); $LINKCC";;
dgux*)
LINKCC="LD_RUN_PATH=$libdir $LINKCC";;
Monterey64*)