Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3f0df3b

Browse files
committed
Merged revisions 88430 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r88430 | georg.brandl | 2011-02-15 20:48:59 +0100 (Di, 15 Feb 2011) | 1 line #730467: Another small AIX fix. ........
1 parent 6baf117 commit 3f0df3b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Python/dynload_aix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
#ifdef AIX_GENUINE_CPLUSPLUS
15-
#include "/usr/lpp/xlC/include/load.h"
15+
#include <load.h>
1616
#define aix_load loadAndInit
1717
#else
1818
#define aix_load load

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 87699 .
2+
# From configure.in Revision: 88560 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.68 for python 3.1.
55
#
@@ -7914,7 +7914,7 @@ case "$ac_sys_system" in
79147914
$as_echo_n "checking for genuine AIX C++ extensions support... " >&6; }
79157915
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
79167916
/* end confdefs.h. */
7917-
#include "/usr/lpp/xlC/include/load.h"
7917+
#include <load.h>
79187918
int
79197919
main ()
79207920
{

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1969,7 +1969,7 @@ AC_CHECK_LIB(intl, textdomain,
19691969
# checks for system dependent C++ extensions support
19701970
case "$ac_sys_system" in
19711971
AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
1972-
AC_TRY_LINK([#include "/usr/lpp/xlC/include/load.h"],
1972+
AC_TRY_LINK([#include <load.h>],
19731973
[loadAndInit("", 0, "")],
19741974
[AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1,
19751975
[Define for AIX if your compiler is a genuine IBM xlC/xlC_r

0 commit comments

Comments
 (0)