This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit/branch] development mode no longer enabled by default


I just checked in the following patch to make sure that development
mode isn't turned on by default for GDB releases (this disables
-Werror by default, for instance) 

2012-07-18  Joel Brobecker  <brobecker@adacore.com>

        * configure.ac (development): Set to false.
        * configure: Regenerate.

-- 
Joel
Index: configure.ac
===================================================================
RCS file: /cvs/src/src/gdb/configure.ac,v
retrieving revision 1.181
diff -u -p -r1.181 configure.ac
--- configure.ac	2 Jul 2012 20:31:09 -0000	1.181
+++ configure.ac	18 Jul 2012 03:43:30 -0000
@@ -26,7 +26,7 @@ AM_MAINTAINER_MODE
 # Provide more thorough testing by -lmcheck.
 # Set it to 'true' for development snapshots, 'false' for releases or
 # pre-releases.
-development=true
+development=false
 
 AC_PROG_CC
 AC_USE_SYSTEM_EXTENSIONS
Index: configure
===================================================================
RCS file: /cvs/src/src/gdb/configure,v
retrieving revision 1.370
diff -u -p -r1.370 configure
--- configure	2 Jul 2012 20:31:07 -0000	1.370
+++ configure	18 Jul 2012 03:43:30 -0000
@@ -2686,7 +2686,7 @@ fi
 # Provide more thorough testing by -lmcheck.
 # Set it to 'true' for development snapshots, 'false' for releases or
 # pre-releases.
-development=true
+development=false
 
 ac_ext=c
 ac_cpp='$CPP $CPPFLAGS'
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.14469.2.1
diff -u -p -r1.14469.2.1 ChangeLog
--- ChangeLog	18 Jul 2012 03:35:25 -0000	1.14469.2.1
+++ ChangeLog	18 Jul 2012 03:43:30 -0000
@@ -1,5 +1,10 @@
 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
 
+	* configure.ac (development): Set to false.
+	* configure: Regenerate.
+
+2012-07-18  Joel Brobecker  <brobecker@adacore.com>
+
 	GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
 	* version.in: Bump version to 7.4.90.20120718-cvs.
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]