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

Skip to content

Commit 59e87bd

Browse files
committed
#730467: Another small AIX fix.
1 parent 9a829be commit 59e87bd

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: 88350 .
2+
# From configure.in Revision: 88426 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.68 for python 3.2.
55
#
@@ -7890,7 +7890,7 @@ $as_echo_n "checking for genuine AIX C++ extensions support... " >&6; }
78907890
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
78917891
/* end confdefs.h. */
78927892
7893-
#include "/usr/lpp/xlC/include/load.h"
7893+
#include <load.h>
78947894
int
78957895
main ()
78967896
{

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1912,7 +1912,7 @@ AC_CHECK_LIB(intl, textdomain,
19121912
case "$ac_sys_system" in
19131913
AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
19141914
AC_LINK_IFELSE([
1915-
AC_LANG_PROGRAM([[#include "/usr/lpp/xlC/include/load.h"]],
1915+
AC_LANG_PROGRAM([[#include <load.h>]],
19161916
[[loadAndInit("", 0, "")]])
19171917
],[
19181918
AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1,

0 commit comments

Comments
 (0)