public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH 1/2] [pr53679] libgo: add a --enable-werror configure flag
@ 2012-12-23 23:30 Mike Frysinger
  2012-12-23 23:30 ` [PATCH 2/2] [pr32193] libgomp: " Mike Frysinger
  2013-01-15 14:56 ` [PATCH 1/2] [pr53679] libgo: " Ian Lance Taylor
  0 siblings, 2 replies; 11+ messages in thread
From: Mike Frysinger @ 2012-12-23 23:30 UTC (permalink / raw)
  To: gcc-patches

URL: http://gcc.gnu.org/PR53679
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 libgo/configure    | 15 ++++++++++++---
 libgo/configure.ac |  7 +++++--
 2 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/libgo/configure b/libgo/configure
index 04fa89d..49cc4a9 100755
--- a/libgo/configure
+++ b/libgo/configure
@@ -809,6 +809,7 @@ enable_static
 with_pic
 enable_fast_install
 enable_libtool_lock
+enable_werror
 enable_version_specific_runtime_libs
 with_libffi
 with_system_libunwind
@@ -1449,6 +1450,7 @@ Optional Features:
   --enable-fast-install[=PKGS]
                           optimize for fast installation [default=yes]
   --disable-libtool-lock  avoid locking (might break parallel builds)
+  --enable-werror         turns on -Werror [default=yes]
   --enable-version-specific-runtime-libs
                           Specify that runtime libraries should be installed
                           in a compiler-specific directory
@@ -11102,7 +11104,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 11105 "configure"
+#line 11107 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -11208,7 +11210,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 11211 "configure"
+#line 11213 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13386,7 +13388,14 @@ done
 WARN_FLAGS='-Wall -Wextra -Wwrite-strings -Wcast-qual'
 
 
-WERROR="-Werror"
+# Check whether --enable-werror was given.
+if test "${enable_werror+set}" = set; then :
+  enableval=$enable_werror;
+fi
+
+if test "x$enable_werror" != "xno"; then
+  WERROR="-Werror"
+fi
 
 
 glibgo_toolexecdir=no
diff --git a/libgo/configure.ac b/libgo/configure.ac
index 8cde50b..63d8cbc 100644
--- a/libgo/configure.ac
+++ b/libgo/configure.ac
@@ -50,8 +50,11 @@ AC_PROG_AWK
 WARN_FLAGS='-Wall -Wextra -Wwrite-strings -Wcast-qual'
 AC_SUBST(WARN_FLAGS)
 
-dnl FIXME: This should be controlled by --enable-maintainer-mode.
-WERROR="-Werror"
+AC_ARG_ENABLE(werror, [AS_HELP_STRING([--enable-werror],
+                                      [turns on -Werror @<:@default=yes@:>@])])
+if test "x$enable_werror" != "xno"; then
+  WERROR="-Werror"
+fi
 AC_SUBST(WERROR)
 
 glibgo_toolexecdir=no
-- 
1.8.0

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-03-07  6:59 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-23 23:30 [PATCH 1/2] [pr53679] libgo: add a --enable-werror configure flag Mike Frysinger
2012-12-23 23:30 ` [PATCH 2/2] [pr32193] libgomp: " Mike Frysinger
2013-01-15 14:56 ` [PATCH 1/2] [pr53679] libgo: " Ian Lance Taylor
2013-01-15 17:42   ` Mike Frysinger
2013-01-26  0:14     ` Ian Lance Taylor
2013-01-26  3:21       ` Mike Frysinger
2013-01-27  2:40         ` Ian Lance Taylor
2013-03-05  0:10           ` Mike Frysinger
2013-03-05  5:31             ` Ian Lance Taylor
2013-03-06 15:49               ` Diego Novillo
2013-03-07  6:59                 ` Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).