summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-01-21 18:57:48 +0000
committerUlrich Drepper <drepper@redhat.com>2008-01-21 18:57:48 +0000
commit28a0c61595b71558e9a12a62a72ad144b2337fde (patch)
treefe3712a92c8b568d930f37fbb07aa62d9fcf5881
parent93490007bd4a5791dbd46aa4dab1fad69d7323b9 (diff)
0.132 release.
-rw-r--r--NEWS9
-rw-r--r--config/elfutils.spec.in6
-rw-r--r--configure.ac6
3 files changed, 18 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index ac86463a..8016316f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+Version 0.132:
+
+libcpu: Implement x86 and x86-64 disassembler.
+libasm: Add interface for disassembler.
+
+all programs: add debugging of branch prediction.
+
+libelf: new function elf_scnshndx.
+
Version 0.131:
libdw: DW_FORM_ref_addr support; dwarf_formref entry point now deprecated;
diff --git a/config/elfutils.spec.in b/config/elfutils.spec.in
index 5c5fc540..a6dcb60d 100644
--- a/config/elfutils.spec.in
+++ b/config/elfutils.spec.in
@@ -182,6 +182,12 @@ rm -rf ${RPM_BUILD_ROOT}
%{_libdir}/libelf.a
%changelog
+* Mon Jan 21 2008 Ulrich Drepper <drepper@redhat.com> 0.132-1
+- libcpu: Implement x86 and x86-64 disassembler.
+- libasm: Add interface for disassembler.
+- all programs: add debugging of branch prediction.
+- libelf: new function elf_scnshndx.
+
* Sun Nov 11 2007 Ulrich Drepper <drepper@redhat.com> 0.131-1
- libdw: DW_FORM_ref_addr support; dwarf_formref entry point now depreca
ted; bug fixes for oddly-formatted DWARF
diff --git a/configure.ac b/configure.ac
index 0b943ccb..03adc592 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
dnl Configure input file for elfutils. -*-autoconf-*-
dnl
-dnl Copyright (C) 1996-2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc.
+dnl Copyright (C) 1996-2002, 2003, 2004, 2005, 2006, 2007, 2008 Red Hat, Inc.
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
@@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software Foundation,
dnl Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
dnl
-AC_INIT([Red Hat elfutils],[0.131],[http://bugzilla.redhat.com/bugzilla/],
+AC_INIT([Red Hat elfutils],[0.132],[http://bugzilla.redhat.com/bugzilla/],
[elfutils])
AC_CONFIG_AUX_DIR([config])
@@ -136,7 +136,7 @@ AM_CONDITIONAL(MUDFLAP, test "$use_mudflap" = yes)
dnl enable debugging of branch prediction.
use_debugpred=0
-AC_ARG_ENABLE([debugpred],
+AC_ARG_ENABLE([debugpred],
AC_HELP_STRING([--enable-debugpred],
[build binaries with support to debug branch prediction]),
[use_debugpred=1], [use_debugpred=0])