Commit 59e87bd2 authored by Georg Brandl's avatar Georg Brandl

#730467: Another small AIX fix.

parent 9a829bed
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#ifdef AIX_GENUINE_CPLUSPLUS #ifdef AIX_GENUINE_CPLUSPLUS
#include "/usr/lpp/xlC/include/load.h" #include <load.h>
#define aix_load loadAndInit #define aix_load loadAndInit
#else #else
#define aix_load load #define aix_load load
......
#! /bin/sh #! /bin/sh
# From configure.in Revision: 88350 . # From configure.in Revision: 88426 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for python 3.2. # Generated by GNU Autoconf 2.68 for python 3.2.
# #
...@@ -7890,7 +7890,7 @@ $as_echo_n "checking for genuine AIX C++ extensions support... " >&6; } ...@@ -7890,7 +7890,7 @@ $as_echo_n "checking for genuine AIX C++ extensions support... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */ /* end confdefs.h. */
#include "/usr/lpp/xlC/include/load.h" #include <load.h>
int int
main () main ()
{ {
......
...@@ -1912,7 +1912,7 @@ AC_CHECK_LIB(intl, textdomain, ...@@ -1912,7 +1912,7 @@ AC_CHECK_LIB(intl, textdomain,
case "$ac_sys_system" in case "$ac_sys_system" in
AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support) AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
AC_LINK_IFELSE([ AC_LINK_IFELSE([
AC_LANG_PROGRAM([[#include "/usr/lpp/xlC/include/load.h"]], AC_LANG_PROGRAM([[#include <load.h>]],
[[loadAndInit("", 0, "")]]) [[loadAndInit("", 0, "")]])
],[ ],[
AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1, AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment