From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21115 invoked by alias); 6 Jun 2012 18:06:16 -0000 Received: (qmail 21091 invoked by uid 22791); 6 Jun 2012 18:06:14 -0000 X-SWARE-Spam-Status: No, hits=-6.3 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 06 Jun 2012 18:06:00 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q56I5WLg010838 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 6 Jun 2012 14:05:59 -0400 Received: from host2.jankratochvil.net (ovpn-116-47.ams2.redhat.com [10.36.116.47]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q56Gw0xP009485 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 6 Jun 2012 12:58:02 -0400 Date: Wed, 06 Jun 2012 18:06:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [commit#2] [RFC patch] non-release srctrees: --enable-targets=all & 64bit & -lmcheck Message-ID: <20120606165759.GA23673@host2.jankratochvil.net> References: <20120518211410.GA32107@host2.jankratochvil.net> <87396fqaf4.fsf@fleche.redhat.com> <20120601182135.GA8348@host2.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120601182135.GA8348@host2.jankratochvil.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-06/txt/msg00188.txt.bz2 On Fri, 01 Jun 2012 20:21:35 +0200, Jan Kratochvil wrote: > http://sourceware.org/ml/gdb-cvs/2012-06/msg00005.html > > --- src/gdb/ChangeLog 2012/06/01 16:37:56 1.14309 > +++ src/gdb/ChangeLog 2012/06/01 18:20:16 1.14310 > @@ -1,3 +1,11 @@ > +2012-06-01 Jan Kratochvil > + > + * configure.ac (development): Define new variable. > + Call AC_CHECK_LIB for mcheck if $development. > + (ERROR_ON_WARNING): Enable it by default only if $development. > + * config.in: Regenerate. > + * configure: Regenerate. I have found accidentally the 'configure' part does not contain the 'development=true' statement. Currently it works as if it was set but it could not be disabled after 7.5 stable branching. Checked in. Sorry, Jan http://sourceware.org/ml/gdb-cvs/2012-06/msg00047.html --- src/gdb/ChangeLog 2012/06/06 06:04:42 1.14330 +++ src/gdb/ChangeLog 2012/06/06 16:57:34 1.14331 @@ -1,3 +1,8 @@ +2012-06-06 Jan Kratochvil + + * configure.ac: Move development=true below AC_INIT. + * configure: Regenerate. + 2012-06-05 Stan Shebs * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from --- src/gdb/configure 2012/06/01 18:20:18 1.366 +++ src/gdb/configure 2012/06/06 16:57:36 1.367 @@ -2683,6 +2683,11 @@ +# Provide more thorough testing by -lmcheck. +# Set it to 'true' for development snapshots, 'false' for releases or +# pre-releases. +development=true + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' --- src/gdb/configure.ac 2012/06/01 18:20:18 1.177 +++ src/gdb/configure.ac 2012/06/06 16:57:38 1.178 @@ -18,16 +18,16 @@ dnl Process this file with autoconf to produce a configure script. -dnl Provide more thorough testing by -lmcheck. -dnl Set it to 'true' for development snapshots, 'false' for releases or -dnl pre-releases. -development=true - AC_PREREQ(2.59)dnl AC_INIT(main.c) AC_CONFIG_HEADER(config.h:config.in) AM_MAINTAINER_MODE +# Provide more thorough testing by -lmcheck. +# Set it to 'true' for development snapshots, 'false' for releases or +# pre-releases. +development=true + AC_PROG_CC AC_USE_SYSTEM_EXTENSIONS ACX_LARGEFILE