From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1887 invoked by alias); 19 Jul 2004 22:45:54 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 1879 invoked from network); 19 Jul 2004 22:45:53 -0000 Received: from unknown (HELO smtp6.mindspring.com) (207.69.200.110) by sourceware.org with SMTP; 19 Jul 2004 22:45:53 -0000 Received: from user-119a90a.biz.mindspring.com ([66.149.36.10] helo=berman.michael-chastain.com) by smtp6.mindspring.com with esmtp (Exim 3.33 #1) id 1BmgtN-0005ct-00; Mon, 19 Jul 2004 18:45:53 -0400 Received: by berman.michael-chastain.com (Postfix, from userid 502) id A47AD4B104; Mon, 19 Jul 2004 18:46:06 -0400 (EDT) To: gdb-patches@sources.redhat.com Subject: [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin Cc: brobecker@gnat.com Message-Id: <20040719224606.A47AD4B104@berman.michael-chastain.com> Date: Mon, 19 Jul 2004 22:45:00 -0000 From: mec.gnu@mindspring.com (Michael Elizabeth Chastain) X-SW-Source: 2004-07/txt/msg00244.txt.bz2 This patch changes the filename -gdb/testsuite/gdb.ada/gnat_ada.gpr.in +gdb/testsuite/gdb.ada/gnat_ada.gin I am doing this for MS-DOS compatibility. While I was in testsuite/configure.in, I added a comment about the version of autoconf needed to process it. If the comment is controversial, I can skip this for now. In addition to this diff, there are differences to configure plus these commands: cvs remove gnat_ada.gpr.in cvs add gnat_ada.gin Tested on native i686-pc-linux-gnu, red hat linux 8.0, with gnat 3.2-7-rh (the system version of gnat). I'll give this 24 hours for comment, then commit it to gdb HEAD. Then I'll give it a few days for any problems to surface and then test it with gdb gdb-6_2-branch and commit it to the branch. Michael C 2004-07-19 Michael Chastain * gdb.ada/gnat_ada.gpr.in: Rename from here ... * gdb.ada/gnat_ada.gin: ... to here. * configure.in: Use gnat_ada.gin. * configure: Regenerate. Index: configure.in =================================================================== RCS file: /cvs/src/src/gdb/testsuite/configure.in,v retrieving revision 1.14 diff -c -3 -p -r1.14 configure.in *** configure.in 1 Apr 2004 17:48:56 -0000 1.14 --- configure.in 19 Jul 2004 22:22:50 -0000 *************** *** 1,7 **** # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. ! # Copyright 2002, 2003 # Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify --- 1,7 ---- # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. ! # Copyright 2002, 2003, 2004 # Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify *************** *** 19,24 **** --- 19,30 ---- # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. + # NOTE ON AUTOCONF VERSION: + # AC_PREREQ says 2.13. + # The output file says "Generated automatically using autoconf version 2.13". + # But that is wrong. This file must be processed with autoconf 000227, + # a special version which identifies itself as autoconf 2.13. + AC_PREREQ(2.13) AC_INIT(gdb.base) *************** AC_CHECK_HEADERS(pthread.h) *** 112,118 **** AC_EXEEXT AC_CONFIG_SUBDIRS($configdirs) ! AC_OUTPUT([Makefile gdb.ada/Makefile gdb.ada/gnat_ada.gpr \ gdb.arch/Makefile gdb.asm/Makefile gdb.base/Makefile \ gdb.cp/Makefile gdb.disasm/Makefile gdb.java/Makefile gdb.mi/Makefile \ gdb.objc/Makefile gdb.threads/Makefile gdb.trace/Makefile]) --- 118,125 ---- AC_EXEEXT AC_CONFIG_SUBDIRS($configdirs) ! AC_OUTPUT([Makefile \ ! gdb.ada/Makefile gdb.ada/gnat_ada.gpr:gdb.ada/gnat_ada.gin \ gdb.arch/Makefile gdb.asm/Makefile gdb.base/Makefile \ gdb.cp/Makefile gdb.disasm/Makefile gdb.java/Makefile gdb.mi/Makefile \ gdb.objc/Makefile gdb.threads/Makefile gdb.trace/Makefile])