From 1e0716d328e1c20447ea17b46551b9c208b7624b Mon Sep 17 00:00:00 2001 From: fche Date: Fri, 18 Jan 2008 15:24:07 +0000 Subject: 2008-01-18 Frank Ch. Eigler * systemtap.spec.in: Update version to 0.6-3. --- systemtap.spec.in | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'systemtap.spec.in') diff --git a/systemtap.spec.in b/systemtap.spec.in index 21acffc0..f9fb991e 100644 --- a/systemtap.spec.in +++ b/systemtap.spec.in @@ -1,5 +1,5 @@ # Release number for rpm build. Stays at 1 for new PACKAGE_VERSION increases. -%define release 2 +%define release 3 # Version number of oldest elfutils release that works with systemtap. %define elfutils_version 0.127 @@ -51,6 +51,9 @@ BuildRequires: libcap-devel BuildRequires: sqlite-devel Requires: sqlite %endif +%if "%rhel" >= "5" +BuildRequires: crash-devel +%endif # Requires: kernel-devel # or is that kernel-smp-devel? kernel-hugemem-devel? Requires: gcc make @@ -197,6 +200,10 @@ exit 0 %changelog +* Fri Jan 18 2008 Frank Ch. Eigler - 0.6-3 +- Add crash-devel buildreq to build staplog.so crash(8) module. +- Many robustness & functionality improvements: + * Wed Dec 5 2007 Will Cohen - 0.6-2 - Correct Source to point to location contain code. -- cgit From bfe2b4ab0a801c23b130b5083b7fbf5c00ab004a Mon Sep 17 00:00:00 2001 From: fche Date: Fri, 18 Jan 2008 15:29:25 +0000 Subject: bump to version 0.6.1 in prep for snapshot release 2008-01-18 Frank Ch. Eigler * configure.ac, systemtap.spec.in: Update version to 0.6.1 * configure: Regenerated. --- systemtap.spec.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'systemtap.spec.in') diff --git a/systemtap.spec.in b/systemtap.spec.in index f9fb991e..809c7e46 100644 --- a/systemtap.spec.in +++ b/systemtap.spec.in @@ -1,5 +1,5 @@ # Release number for rpm build. Stays at 1 for new PACKAGE_VERSION increases. -%define release 3 +%define release 1 # Version number of oldest elfutils release that works with systemtap. %define elfutils_version 0.127 @@ -200,7 +200,7 @@ exit 0 %changelog -* Fri Jan 18 2008 Frank Ch. Eigler - 0.6-3 +* Fri Jan 18 2008 Frank Ch. Eigler - 0.6.1-1 - Add crash-devel buildreq to build staplog.so crash(8) module. - Many robustness & functionality improvements: -- cgit From 6b535ce2ea1aebf408afe6cc51ef45b50f9a7879 Mon Sep 17 00:00:00 2001 From: dsmith Date: Wed, 23 Jan 2008 19:58:41 +0000 Subject: 2008-01-23 David Smith PR 5661. * configure.ac: Checks elfutils version number. * acsite.m4: New file containing macro to return elfutils version number. * configure: Regenerated. * systemtap.spec.in: Minimum elfutils version number is now filled in by configure. --- systemtap.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'systemtap.spec.in') diff --git a/systemtap.spec.in b/systemtap.spec.in index 809c7e46..b8ab8652 100644 --- a/systemtap.spec.in +++ b/systemtap.spec.in @@ -1,7 +1,7 @@ # Release number for rpm build. Stays at 1 for new PACKAGE_VERSION increases. %define release 1 # Version number of oldest elfutils release that works with systemtap. -%define elfutils_version 0.127 +%define elfutils_version @ELFUTILS_REQUIRED_VERSION@ # Set bundled_elfutils to 0 on systems that have %{elfutils_version} or newer. %if 0%{?fedora} -- cgit From 9921a199dd3d8bfce4cd2e4c95e17119903588ea Mon Sep 17 00:00:00 2001 From: dsmith Date: Thu, 24 Jan 2008 18:11:34 +0000 Subject: 2008-01-24 David Smith PR 5650 (partial). * configure.ac: Handles sqlite optional functionality correctly. If enabled/disabled by the user, do the right thing. If not specified by the user, use it if present. * configure: Regenerated. * systemtap.spec.in: Always specify to configure whether to use sqlite or not. --- systemtap.spec.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'systemtap.spec.in') diff --git a/systemtap.spec.in b/systemtap.spec.in index b8ab8652..7c2df0c4 100644 --- a/systemtap.spec.in +++ b/systemtap.spec.in @@ -127,9 +127,11 @@ cd .. %define elfutils_mflags LD_LIBRARY_PATH=`pwd`/lib-elfutils %endif +# Enable/disable the sqlite coverage testing support %if %{sqlite} -# Include the coverage testing support -%define sqlite_config --enable-sqlitedb +%define sqlite_config --enable-sqlite +%else +%define sqlite_config --disable-sqlite %endif %configure %{?elfutils_config} %{?sqlite_config} -- cgit From 7ae8037e595d8da298c83cdc059db6ac5b68d8dc Mon Sep 17 00:00:00 2001 From: dsmith Date: Thu, 24 Jan 2008 20:24:03 +0000 Subject: 2008-01-24 David Smith PR 5661 (reverted). * configure.ac: Removed elfutils version number check. * configure: Regenerated. * acsite.m4: Removed. * systemtap.spec.in: Minimum elfutils version number is no longer filled in by configure. --- systemtap.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'systemtap.spec.in') diff --git a/systemtap.spec.in b/systemtap.spec.in index 7c2df0c4..e2f93056 100644 --- a/systemtap.spec.in +++ b/systemtap.spec.in @@ -1,7 +1,7 @@ # Release number for rpm build. Stays at 1 for new PACKAGE_VERSION increases. %define release 1 # Version number of oldest elfutils release that works with systemtap. -%define elfutils_version @ELFUTILS_REQUIRED_VERSION@ +%define elfutils_version 0.127 # Set bundled_elfutils to 0 on systems that have %{elfutils_version} or newer. %if 0%{?fedora} -- cgit