diff options
author | David Edelsohn <edelsohn@gnu.org> | 2008-01-26 16:28:03 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2008-01-26 11:28:03 -0500 |
commit | 62a37275feaabf300a7bed13e76994262b8114da (patch) | |
tree | 37d193372ed79fb43d563ba35b0efb65a14b45f7 | |
parent | ba6a1b78c009c8114f4852a93cb97443e7bf4243 (diff) | |
download | gcc-62a37275feaabf300a7bed13e76994262b8114da.zip gcc-62a37275feaabf300a7bed13e76994262b8114da.tar.gz gcc-62a37275feaabf300a7bed13e76994262b8114da.tar.bz2 |
re PR target/34794 (build of gcc 4.2.2 fails on AIX 6.1 / libstdc++-v3/libmath/stubs.c:47)
PR target/34794
* config/os/aix/os_defines.h: Define __COMPATMATH__.
From-SVN: r131866
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/config/os/aix/os_defines.h | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index afeab8d..d10e4f3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2008-01-26 David Edelsohn <edelsohn@gnu.org> + + PR target/34794 + * config/os/aix/os_defines.h: Define __COMPATMATH__. + 2008-01-24 David Edelsohn <edelsohn@gnu.org> * configure: Regenerate. diff --git a/libstdc++-v3/config/os/aix/os_defines.h b/libstdc++-v3/config/os/aix/os_defines.h index 8f1f813..2aa9f7f 100644 --- a/libstdc++-v3/config/os/aix/os_defines.h +++ b/libstdc++-v3/config/os/aix/os_defines.h @@ -1,6 +1,6 @@ // Specific definitions for AIX -*- C++ -*- -// Copyright (C) 2000, 2002, 2005 Free Software Foundation, Inc. +// Copyright (C) 2000, 2002, 2005, 2008 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -48,4 +48,9 @@ #define _ALL_SOURCE #endif +// C99 math +#ifndef __COMPATMATH__ +#define __COMPATMATH__ +#endif + #endif |