public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
From: sergio@sourceware.org
To: archer-commits@sourceware.org
Subject: [SCM]  master: *** empty log message ***
Date: Wed, 29 Oct 2008 17:15:00 -0000	[thread overview]
Message-ID: <20081029171512.11277.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  34264c2204bc4b44c036297cb94d08885f9a33c2 (commit)
       via  727fd51235c2bea7205bbd241b88d56eab499ca3 (commit)
       via  b30a4800251805a3fa4088f92619f493b0881832 (commit)
      from  b4584fb7df1e4142b62d2cba5fa51181d32f29a4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 34264c2204bc4b44c036297cb94d08885f9a33c2
Author: gdbadmin <gdbadmin@sourceware.org>
Date:   Wed Oct 29 00:00:33 2008 +0000

    *** empty log message ***

commit 727fd51235c2bea7205bbd241b88d56eab499ca3
Author: Alan Modra <amodra@bigpond.net.au>
Date:   Wed Oct 29 00:00:04 2008 +0000

    daily update

commit b30a4800251805a3fa4088f92619f493b0881832
Author: Tom Tromey <tromey@redhat.com>
Date:   Tue Oct 28 20:50:17 2008 +0000

    	* Makefile.in (SUBDIR_CLI_OBS): Don't mention cli-utils.o.
    	(SUBDIR_CLI_DEPS): Don't mention cli-utils.c.
    	(HFILES_NO_SRCDIR): Don't mention cli-utils.h.
    	(cli-utils.o): Remove.
    	* cli/cli-utils.c: Remove.
    	* cli/cli-utils.h: Remove.

-----------------------------------------------------------------------

Summary of changes:
 bfd/version.h       |    2 +-
 gdb/ChangeLog       |    9 +++++++++
 gdb/Makefile.in     |   11 +++--------
 gdb/cli/cli-utils.c |   19 -------------------
 gdb/cli/cli-utils.h |   20 --------------------
 gdb/version.in      |    2 +-
 6 files changed, 14 insertions(+), 49 deletions(-)
 delete mode 100644 gdb/cli/cli-utils.c
 delete mode 100644 gdb/cli/cli-utils.h

First 500 lines of diff:
diff --git a/bfd/version.h b/bfd/version.h
index fbccae5..459e45a 100644
--- a/bfd/version.h
+++ b/bfd/version.h
@@ -1,4 +1,4 @@
-#define BFD_VERSION_DATE 20081028
+#define BFD_VERSION_DATE 20081029
 #define BFD_VERSION @bfd_version@
 #define BFD_VERSION_STRING  @bfd_version_package@ @bfd_version_string@
 #define REPORT_BUGS_TO @report_bugs_to@
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b2fa68f..d104a96 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,14 @@
 2008-10-28  Tom Tromey  <tromey@redhat.com>
 
+	* Makefile.in (SUBDIR_CLI_OBS): Don't mention cli-utils.o.
+	(SUBDIR_CLI_DEPS): Don't mention cli-utils.c.
+	(HFILES_NO_SRCDIR): Don't mention cli-utils.h.
+	(cli-utils.o): Remove.
+	* cli/cli-utils.c: Remove.
+	* cli/cli-utils.h: Remove.
+
+2008-10-28  Tom Tromey  <tromey@redhat.com>
+
 	* varobj.c (value_get_print_value): Include valprint.h.
 	(value_get_print_value): Use get_formatted_print_options.
 	* value.h (struct value_print_options): Declare.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index ec4b1d2..5432c88 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -185,15 +185,14 @@ GNULIB_H = gnulib/string.h @GNULIB_STDINT_H@
 #
 SUBDIR_CLI_OBS = \
 	cli-dump.o \
-	cli-decode.o cli-script.o cli-cmds.o cli-setshow.o cli-utils.o \
+	cli-decode.o cli-script.o cli-cmds.o cli-setshow.o \
 	cli-logging.o \
 	cli-interp.o
 SUBDIR_CLI_SRCS = \
 	cli/cli-dump.c \
 	cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \
 	cli/cli-logging.c \
-	cli/cli-interp.c \
-	cli/cli-utils.c
+	cli/cli-interp.c
 SUBDIR_CLI_DEPS =
 SUBDIR_CLI_LDFLAGS=
 SUBDIR_CLI_CFLAGS=
@@ -682,7 +681,7 @@ exec.h m32r-tdep.h osabi.h gdbcore.h solib-som.h \
 i386bsd-nat.h xml-support.h xml-tdesc.h alphabsd-tdep.h gdb_obstack.h \
 ia64-tdep.h ada-lang.h varobj.h frv-tdep.h nto-tdep.h serial.h \
 c-lang.h frame.h event-loop.h block.h cli/cli-setshow.h	\
-cli/cli-decode.h cli/cli-cmds.h cli/cli-utils.h cli/cli-dump.h \
+cli/cli-decode.h cli/cli-cmds.h cli/cli-dump.h \
 cli/cli-script.h macrotab.h symtab.h version.h gnulib/wchar.in.h \
 gnulib/string.in.h gnulib/str-two-way.h gnulib/extra/link-warning.h \
 gnulib/stdint.in.h remote.h gdb.h sparc-nat.h gdbserver/win32-low.h \
@@ -1554,10 +1553,6 @@ cli-setshow.o: $(srcdir)/cli/cli-setshow.c
 	$(COMPILE) $(srcdir)/cli/cli-setshow.c
 	$(POSTCOMPILE)
 
-cli-utils.o: $(srcdir)/cli/cli-utils.c
-	$(COMPILE) $(srcdir)/cli/cli-utils.c
-	$(POSTCOMPILE)
-
 
 #
 # GDBTK sub-directory
diff --git a/gdb/cli/cli-utils.c b/gdb/cli/cli-utils.c
deleted file mode 100644
index adb8a6e..0000000
--- a/gdb/cli/cli-utils.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* GDB CLI utility library.
-   Copyright (c) 2001, 2007, 2008 Free Software Foundation, Inc.
-
-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 3 of the License, or
-   (at your option) any later version.
-
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
-
-#include "defs.h"
-#include "cli/cli-utils.h"
-
diff --git a/gdb/cli/cli-utils.h b/gdb/cli/cli-utils.h
deleted file mode 100644
index 303b768..0000000
--- a/gdb/cli/cli-utils.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Header file for GDB CLI utility library.
-   Copyright (c) 2001, 2007, 2008 Free Software Foundation, Inc.
-
-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 3 of the License, or
-   (at your option) any later version.
-
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
-
-#if !defined (CLI_UTILS_H)
-# define CLI_UTILS_H 1
-
-#endif /* !defined (CLI_UTILS_H) */
diff --git a/gdb/version.in b/gdb/version.in
index 30a4558..ccf982e 100644
--- a/gdb/version.in
+++ b/gdb/version.in
@@ -1 +1 @@
-6.8.50.20081028-cvs
+6.8.50.20081029-cvs


hooks/post-receive
--
Repository for Project Archer.


             reply	other threads:[~2008-10-29 17:15 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-29 17:15 sergio [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-09-17 10:12 jkratoch
2009-08-18 15:16 swagiaal
2009-05-03 13:07 jkratoch
2009-02-28 20:17 jkratoch
2008-11-10 15:43 sergio
2008-11-04  2:30 sergio
2008-10-21 17:13 sergio

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20081029171512.11277.qmail@sourceware.org \
    --to=sergio@sourceware.org \
    --cc=archer-commits@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).