* [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin
@ 2004-07-19 22:45 Michael Elizabeth Chastain
2004-07-20 4:34 ` Eli Zaretskii
0 siblings, 1 reply; 6+ messages in thread
From: Michael Elizabeth Chastain @ 2004-07-19 22:45 UTC (permalink / raw)
To: gdb-patches; +Cc: brobecker
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 <mec.gnu@mindspring.com>
* 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])
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin
2004-07-19 22:45 [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin Michael Elizabeth Chastain
@ 2004-07-20 4:34 ` Eli Zaretskii
0 siblings, 0 replies; 6+ messages in thread
From: Eli Zaretskii @ 2004-07-20 4:34 UTC (permalink / raw)
To: Michael Elizabeth Chastain; +Cc: gdb-patches, brobecker
> Date: Mon, 19 Jul 2004 18:46:06 -0400 (EDT)
> From: mec.gnu@mindspring.com (Michael Elizabeth Chastain)
>
> 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.
Thanks.
> 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.
This patch is fine with me.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin
2004-07-27 0:55 ` Michael Chastain
@ 2004-07-27 14:35 ` Michael Chastain
0 siblings, 0 replies; 6+ messages in thread
From: Michael Chastain @ 2004-07-27 14:35 UTC (permalink / raw)
To: cagney; +Cc: gdb-patches, eliz, brobecker
mec> Yeah, give me 12 hours, I want to see how it looks in my latest spin.
Okay ... 13 hours.
Committed to the branch.
Tested before-and-after on native i686-pc-linux-gnu, red hat 8.0, with
gcc 3.2-7-rh, gcc 3.3.4, and gcc 3.4.1, dwarf-2 and stabs+. The gcc
3.2-7-rh is in there because it actually includes Ada. Plus I checked
gdb.ada/gnat_ada.gpr in the build directory to make sure it got
built okay.
Michael C
2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
* gdb.ada/gnat_ada.gpr.in: Rename from here ...
* gdb.ada/gnat_ada.gin: ... to here.
* configure.in: Use gnat_ada.gin.
* configure: Regenerate.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin
2004-07-26 22:12 ` Andrew Cagney
@ 2004-07-27 0:55 ` Michael Chastain
2004-07-27 14:35 ` Michael Chastain
0 siblings, 1 reply; 6+ messages in thread
From: Michael Chastain @ 2004-07-27 0:55 UTC (permalink / raw)
To: cagney; +Cc: gdb-patches, eliz, brobecker
> Can this be committed to the 6.2 branch?
Yeah, give me 12 hours, I want to see how it looks in my latest spin.
Michael C
===
2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
* gdb.ada/gnat_ada.gpr.in: Rename from here ...
* gdb.ada/gnat_ada.gin: ... to here.
* configure.in: Use gnat_ada.gin.
* configure: Regenerate.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin
2004-07-20 23:19 Michael Elizabeth Chastain
@ 2004-07-26 22:12 ` Andrew Cagney
2004-07-27 0:55 ` Michael Chastain
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Cagney @ 2004-07-26 22:12 UTC (permalink / raw)
To: Michael Elizabeth Chastain; +Cc: gdb-patches, brobecker, eliz
> Committed.
>
> I'll give this a couple of days in the field, and then test it and
> commit it on gdb gdb_6_2-branch as well.
>
> ===
>
> 2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
>
> * gdb.ada/gnat_ada.gpr.in: Rename from here ...
> * gdb.ada/gnat_ada.gin: ... to here.
> * configure.in: Use gnat_ada.gin.
> * configure: Regenerate.
Can this be committed to the 6.2 branch?
Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin
@ 2004-07-20 23:19 Michael Elizabeth Chastain
2004-07-26 22:12 ` Andrew Cagney
0 siblings, 1 reply; 6+ messages in thread
From: Michael Elizabeth Chastain @ 2004-07-20 23:19 UTC (permalink / raw)
To: gdb-patches; +Cc: brobecker, eliz
Committed.
I'll give this a couple of days in the field, and then test it and
commit it on gdb gdb_6_2-branch as well.
===
2004-07-19 Michael Chastain <mec.gnu@mindspring.com>
* gdb.ada/gnat_ada.gpr.in: Rename from here ...
* gdb.ada/gnat_ada.gin: ... to here.
* configure.in: Use gnat_ada.gin.
* configure: Regenerate.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2004-07-27 14:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-07-19 22:45 [patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin Michael Elizabeth Chastain
2004-07-20 4:34 ` Eli Zaretskii
2004-07-20 23:19 Michael Elizabeth Chastain
2004-07-26 22:12 ` Andrew Cagney
2004-07-27 0:55 ` Michael Chastain
2004-07-27 14:35 ` Michael Chastain
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox