diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-03-31 15:53:49 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-03-31 15:53:49 (GMT) |
commit | 0b27ff92d2127ed39f52d9987e4e96313937cbc8 (patch) | |
tree | 4ff172e7da1f1f0f233854f279d7f50850961eed /configure | |
parent | aca44e277170fed72668ba18430c8b53c7f6f499 (diff) | |
download | cpython-0b27ff92d2127ed39f52d9987e4e96313937cbc8.zip cpython-0b27ff92d2127ed39f52d9987e4e96313937cbc8.tar.gz cpython-0b27ff92d2127ed39f52d9987e4e96313937cbc8.tar.bz2 |
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-x | configure | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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*) |