This is the mail archive of the gdb-patches@sources.redhat.com 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]

[patch/testsuite/ada] rename gnat_ada.gpr.in to gnat_ada.gin


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])


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