public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
* [SCM]  master: 2009-03-24  H.J. Lu  <hongjiu.lu@intel.com>
@ 2009-03-25  0:37 tromey
  0 siblings, 0 replies; only message in thread
From: tromey @ 2009-03-25  0:37 UTC (permalink / raw)
  To: archer-commits

The branch, master has been updated
       via  3157aba1ab73fb5b5cd0e2dbb5c031a1336a93db (commit)
       via  64c287329177f68d0da2ce81207f5f3f105dabfe (commit)
       via  cbd12f3666346846dd18e762f7881f4a0b1767ee (commit)
      from  3092115a3d791e551209af2e1945666169a04de7 (commit)

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

- Log -----------------------------------------------------------------
commit 3157aba1ab73fb5b5cd0e2dbb5c031a1336a93db
Author: H.J. Lu <hjl@lucon.org>
Date:   Tue Mar 24 18:07:14 2009 +0000

    2009-03-24  H.J. Lu  <hongjiu.lu@intel.com>
    
    	* cpu-i386.c (bfd_x86_64_arch_intel_syntax): Make it static.
    	(bfd_i386_arch_intel_syntax): Likewise.
    	(i8086_arch): Likewise.
    	(bfd_x86_64_arch): Likewise.

commit 64c287329177f68d0da2ce81207f5f3f105dabfe
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Tue Mar 24 17:01:29 2009 +0000

    	* configure.ac: Initialize the variable $PREFER_CURSES.
    	* configure: Regenerated.

commit cbd12f3666346846dd18e762f7881f4a0b1767ee
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Tue Mar 24 16:54:33 2009 +0000

    	* configure.ac: Enable $PREFER_CURSES even with default $ENABLE_TUI.
    	* configure: Regenerated.

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

Summary of changes:
 bfd/ChangeLog    |    7 +++++++
 bfd/cpu-i386.c   |    8 ++++----
 gdb/ChangeLog    |   10 ++++++++++
 gdb/configure    |    5 +++--
 gdb/configure.ac |    5 +++--
 5 files changed, 27 insertions(+), 8 deletions(-)

First 500 lines of diff:
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index ea96f89..dfb9bb5 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,10 @@
+2009-03-24  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* cpu-i386.c (bfd_x86_64_arch_intel_syntax): Make it static.
+	(bfd_i386_arch_intel_syntax): Likewise.
+	(i8086_arch): Likewise.
+	(bfd_x86_64_arch): Likewise.
+
 2009-03-24  Hans-Peter Nilsson  <hp@axis.com>
 
 	* elf32-cris.c (cris_elf_relocate_section): <case
diff --git a/bfd/cpu-i386.c b/bfd/cpu-i386.c
index 4001a05..952e659 100644
--- a/bfd/cpu-i386.c
+++ b/bfd/cpu-i386.c
@@ -23,7 +23,7 @@
 #include "bfd.h"
 #include "libbfd.h"
 
-const bfd_arch_info_type bfd_x86_64_arch_intel_syntax =
+static const bfd_arch_info_type bfd_x86_64_arch_intel_syntax =
 {
   64, /* 64 bits in a word */
   64, /* 64 bits in an address */
@@ -39,7 +39,7 @@ const bfd_arch_info_type bfd_x86_64_arch_intel_syntax =
   0
 };
 
-const bfd_arch_info_type bfd_i386_arch_intel_syntax =
+static const bfd_arch_info_type bfd_i386_arch_intel_syntax =
 {
   32,	/* 32 bits in a word */
   32,	/* 32 bits in an address */
@@ -55,7 +55,7 @@ const bfd_arch_info_type bfd_i386_arch_intel_syntax =
   &bfd_x86_64_arch_intel_syntax
 };
 
-const bfd_arch_info_type i8086_arch =
+static const bfd_arch_info_type i8086_arch =
 {
   32,	/* 32 bits in a word */
   32,	/* 32 bits in an address (well, not really) */
@@ -71,7 +71,7 @@ const bfd_arch_info_type i8086_arch =
   &bfd_i386_arch_intel_syntax
 };
 
-const bfd_arch_info_type bfd_x86_64_arch =
+static const bfd_arch_info_type bfd_x86_64_arch =
 {
   64, /* 32 bits in a word */
   64, /* 32 bits in an address */
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index bfa43ff..a88bc6b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,13 @@
+2009-03-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+	* configure.ac: Initialize the variable $PREFER_CURSES.
+	* configure: Regenerated.
+
+2009-03-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+	* configure.ac: Enable $PREFER_CURSES even with default $ENABLE_TUI.
+	* configure: Regenerated.
+
 2009-03-24  Pierre Muller  <muller@ics.u-strasbg.fr>
 
 	ARI fix: "strerror" rule.
diff --git a/gdb/configure b/gdb/configure
index 0a6eed4..e0bf786 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -8125,8 +8125,9 @@ if test "${with_curses+set}" = set; then
   opt_curses=$withval
 fi;
 
+prefer_curses=no
 if test "$opt_curses" = "yes"; then
-	prefer_curses=yes
+  prefer_curses=yes
 fi
 
 # Profiling support.
@@ -10323,7 +10324,7 @@ echo "$as_me: error: Building GDB with TUI mode is not supported on this host" >
 esac
 
 # For the TUI, we need enhanced curses functionality.
-if test x"$enable_tui" = xyes; then
+if test x"$enable_tui" != xno; then
   prefer_curses=yes
 fi
 
diff --git a/gdb/configure.ac b/gdb/configure.ac
index 6e97ef1..e8102a9 100644
--- a/gdb/configure.ac
+++ b/gdb/configure.ac
@@ -334,8 +334,9 @@ fi
 opt_curses=no
 AC_ARG_WITH(curses, AC_HELP_STRING([--with-curses], [use the curses library instead of the termcap library]), opt_curses=$withval)
 
+prefer_curses=no
 if test "$opt_curses" = "yes"; then
-	prefer_curses=yes
+  prefer_curses=yes
 fi
 
 # Profiling support.
@@ -467,7 +468,7 @@ case $host_os in
 esac
 
 # For the TUI, we need enhanced curses functionality.
-if test x"$enable_tui" = xyes; then
+if test x"$enable_tui" != xno; then
   prefer_curses=yes
 fi
 


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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-25  0:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-25  0:37 [SCM] master: 2009-03-24 H.J. Lu <hongjiu.lu@intel.com> tromey

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