From ed845d9d6d471baa1a22124a5465dfa9d9c4801a Mon Sep 17 00:00:00 2001 From: ian Date: Thu, 22 Dec 2011 20:39:29 +0000 Subject: [PATCH] libgo: Use -std=gnu99 on Solaris 10. From Rainer Orth. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182637 138bc75d-0d04-0410-961f-82ee72b054a4 --- libgo/configure | 4 ++-- libgo/configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libgo/configure b/libgo/configure index d9915f91afc..c1ee7bac082 100755 --- a/libgo/configure +++ b/libgo/configure @@ -13818,9 +13818,9 @@ case "$target" in ;; *-*-solaris2.1[01]) # Solaris 10+ needs this so struct msghdr gets the msg_control - # etc. fields in (_XPG4_2). _XOPEN_SOURCE=500 as + # etc. fields in (_XPG4_2). _XOPEN_SOURCE=600 as # above doesn't work with C99. - OSCFLAGS="$OSCFLAGS -D_XOPEN_SOURCE=600 -D__EXTENSIONS__" + OSCFLAGS="$OSCFLAGS -std=gnu99 -D_XOPEN_SOURCE=600 -D__EXTENSIONS__" ;; esac diff --git a/libgo/configure.ac b/libgo/configure.ac index a001d50b58a..a56106eaca9 100644 --- a/libgo/configure.ac +++ b/libgo/configure.ac @@ -292,9 +292,9 @@ case "$target" in ;; *-*-solaris2.1[[01]]) # Solaris 10+ needs this so struct msghdr gets the msg_control - # etc. fields in (_XPG4_2). _XOPEN_SOURCE=500 as + # etc. fields in (_XPG4_2). _XOPEN_SOURCE=600 as # above doesn't work with C99. - OSCFLAGS="$OSCFLAGS -D_XOPEN_SOURCE=600 -D__EXTENSIONS__" + OSCFLAGS="$OSCFLAGS -std=gnu99 -D_XOPEN_SOURCE=600 -D__EXTENSIONS__" ;; esac AC_SUBST(OSCFLAGS) -- 2.11.0