Commit 758cdc11 by Joseph Myers Committed by Joseph Myers

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
parent bdeb7efa
2005-05-07 Joseph S. Myers <joseph@codesourcery.com>
* 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 <joseph@codesourcery.com>
* config/ia64/hpux.h (NO_IMPLICIT_EXTERN_C): Define.
2005-05-07 Hans-Peter Nilsson <hp@axis.com>
......
......@@ -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 " \
......
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