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] Make utils/wince use autoconf 2.59


Builds fine on i686-pc-linux-gnu; no meaningful Makefile changes.
I'm quite sure this is safe and effective.

OK to commit?  (I'm still not quite sure what the GDB permission process
for configure.in type changes is, but I assume I need permission?)

Also, is it OK to blow away the copy of doschk (and the 'misc' directory,
which exists solely to contain it)?  Michael Chastain and Andrew Cagney
appeared to say that it was a good idea; I just wanted to check that it was OK
to actually commit that.

Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/utils/wince/ChangeLog,v
retrieving revision 1.1
diff -u -r1.1 ChangeLog
--- ChangeLog	28 Feb 2000 18:11:56 -0000	1.1
+++ ChangeLog	5 Aug 2004 20:34:52 -0000
@@ -1,3 +1,11 @@
+2004-08-05  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+	* Makefile.in: Delete Makefile in 'distclean'; fixes PR gdb/920.
+	Remove dead code.
+	* configure.in: Update to autoconf 2.59, rename to...
+	* configure.ac: ...this.
+	* configure: Regenerate.
+
 2000-02-25  DJ Delorie  <dj@cygnus.com>
 
 	* cesetup.c: add support for CE 3.00 SDK and ARM chips
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/utils/wince/Makefile.in,v
retrieving revision 1.1
diff -u -r1.1 Makefile.in
--- Makefile.in	28 Feb 2000 18:11:56 -0000	1.1
+++ Makefile.in	5 Aug 2004 20:34:52 -0000
@@ -17,12 +17,9 @@
 prefix = @prefix@
 exec_prefix = @exec_prefix@
 
-host_alias = @host_alias@
-target_alias = @target_alias@
 program_transform_name = @program_transform_name@
 bindir = $(exec_prefix)/bin
 libdir = $(exec_prefix)/lib
-tooldir = $(libdir)/$(target_alias)
 
 datadir = $(prefix)/share
 mandir = $(prefix)/man
@@ -107,6 +104,7 @@
 
 distclean:	clean
 	rm -f config.log config.cache
+	rm -f Makefile
 
 maintainer-clean realclean:	distclean
 
Index: configure.ac
===================================================================
RCS file: configure.ac
diff -N configure.ac
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ configure.ac	5 Aug 2004 20:34:54 -0000
@@ -0,0 +1,20 @@
+dnl Process this file with autoconf to produce a configure script.
+AC_PREREQ([2.59])
+AC_INIT
+AC_CONFIG_SRCDIR([cesetup.c])
+AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
+
+AC_CANONICAL_TARGET
+AC_ARG_PROGRAM
+
+AC_PROG_INSTALL
+
+CC=${CC-cc}
+AC_PROG_CC
+
+AC_EXEEXT
+PROGS='cesetup$(EXEEXT)'
+AC_SUBST(PROGS)
+
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT
Index: configure.in
===================================================================
RCS file: configure.in
diff -N configure.in
--- configure.in	28 Feb 2000 18:11:56 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,18 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-AC_PREREQ(2.3)dnl
-AC_INIT(cesetup.c)
-
-CC=${CC-cc}
-AC_PROG_CC
-AC_EXEEXT
-
-AC_PROG_INSTALL
-
-AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
-AC_CANONICAL_SYSTEM
-AC_ARG_PROGRAM
-
-PROGS='cesetup$(EXEEXT)'
-AC_SUBST(PROGS)
-
-AC_OUTPUT(Makefile)

-- 
There are none so blind as those who will not see.


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