From 758cdc11236776e041052596fe0580edd0081e40 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Sat, 7 May 2005 21:14:42 +0100 Subject: [PATCH] pa-hpux11.h (TARGET_OS_CPP_BUILTINS): Do not define inappropriate feature test macros if flag_iso. * config/pa/pa-hpux11.h (TARGET_OS_CPP_BUILTINS): Do not define inappropriate feature test macros if flag_iso. From-SVN: r99363 --- gcc/ChangeLog | 5 +++++ gcc/config/pa/pa-hpux11.h | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e38ca345d77..b9af6f1ae4e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-05-07 Joseph S. Myers + + * config/pa/pa-hpux11.h (TARGET_OS_CPP_BUILTINS): Do not define + inappropriate feature test macros if flag_iso. + 2005-05-07 Joseph S. Myers * config/ia64/hpux.h (NO_IMPLICIT_EXTERN_C): Define. diff --git a/gcc/config/pa/pa-hpux11.h b/gcc/config/pa/pa-hpux11.h index edb7436193e..72e3bfa483e 100644 --- a/gcc/config/pa/pa-hpux11.h +++ b/gcc/config/pa/pa-hpux11.h @@ -66,7 +66,7 @@ Boston, MA 02111-1307, USA. */ } \ if (!TARGET_64BIT) \ builtin_define ("_ILP32"); \ - if (flag_pa_unix >= 1995) \ + if (flag_pa_unix >= 1995 && !flag_iso) \ { \ builtin_define ("_XOPEN_UNIX"); \ builtin_define ("_XOPEN_SOURCE_EXTENDED"); \ @@ -75,8 +75,11 @@ Boston, MA 02111-1307, USA. */ { \ if (flag_pa_unix >= 1998) \ { \ - builtin_define ("_INCLUDE__STDC_A1_SOURCE"); \ - builtin_define ("_INCLUDE_XOPEN_SOURCE_500"); \ + if (flag_isoc94 || flag_isoc99 || c_dialect_cxx() \ + || !flag_iso) \ + builtin_define ("_INCLUDE__STDC_A1_SOURCE"); \ + if (!flag_iso) \ + builtin_define ("_INCLUDE_XOPEN_SOURCE_500"); \ } \ else if (flag_isoc94 || flag_isoc99 || c_dialect_cxx ()) \ warning (0, "-munix=98 option required for C89 " \ -- 2.30.2