[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
rpms/valgrind/devel valgrind-2.4.0-glibc24.patch, NONE, 1.1 valgrind-2.4.0-x86-insn-tests.patch, NONE, 1.1 valgrind.spec, 1.16, 1.17
- From: fedora-cvs-commits redhat com
- To: fedora-cvs-commits redhat com
- Subject: rpms/valgrind/devel valgrind-2.4.0-glibc24.patch, NONE, 1.1 valgrind-2.4.0-x86-insn-tests.patch, NONE, 1.1 valgrind.spec, 1.16, 1.17
- Date: Tue, 12 Jul 2005 10:00:45 -0400
Author: jakub
Update of /cvs/dist/rpms/valgrind/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv28923
Modified Files:
valgrind.spec
Added Files:
valgrind-2.4.0-glibc24.patch
valgrind-2.4.0-x86-insn-tests.patch
Log Message:
2.4.0-3
valgrind-2.4.0-glibc24.patch:
configure | 2 +-
configure.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--- NEW FILE valgrind-2.4.0-glibc24.patch ---
--- valgrind-2.4.0/configure.in.jj 2005-03-23 21:29:14.000000000 -0500
+++ valgrind-2.4.0/configure.in 2005-07-12 08:14:06.000000000 -0400
@@ -186,7 +186,7 @@ glibc="2.2")
AC_EGREP_CPP([GLIBC_23], [
#include <features.h>
#ifdef __GNU_LIBRARY__
- #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 3)
+ #if (__GLIBC__ == 2 && (__GLIBC_MINOR__ == 3 || __GLIBC_MINOR__ == 4))
GLIBC_23
#endif
#endif
--- valgrind-2.4.0/configure.jj 2005-03-23 21:30:48.000000000 -0500
+++ valgrind-2.4.0/configure 2005-07-12 08:14:29.000000000 -0400
@@ -4181,7 +4181,7 @@ cat >>conftest.$ac_ext <<_ACEOF
#include <features.h>
#ifdef __GNU_LIBRARY__
- #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 3)
+ #if (__GLIBC__ == 2 && (__GLIBC_MINOR__ == 3 || __GLIBC_MINOR__ == 4))
GLIBC_23
#endif
#endif
valgrind-2.4.0-x86-insn-tests.patch:
Makefile.am | 2 +-
Makefile.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--- NEW FILE valgrind-2.4.0-x86-insn-tests.patch ---
--- valgrind-2.4.0/none/tests/x86/Makefile.am.jj 2005-01-16 06:15:46.000000000 -0500
+++ valgrind-2.4.0/none/tests/x86/Makefile.am 2005-07-12 08:44:00.000000000 -0400
@@ -24,7 +24,7 @@ check_PROGRAMS = \
$(INSN_TESTS) \
int pushpopseg rcl_assert seg_override
-AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -I$(top_srcdir)/include
+AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -I$(top_srcdir)/include -msse2
AM_CXXFLAGS = $(AM_CFLAGS)
# generic C ones
--- valgrind-2.4.0/none/tests/x86/Makefile.in.jj 2005-03-23 21:30:45.000000000 -0500
+++ valgrind-2.4.0/none/tests/x86/Makefile.in 2005-07-12 08:44:26.000000000 -0400
@@ -264,7 +264,7 @@ EXTRA_DIST = $(noinst_SCRIPTS) \
rcl_assert.stderr.exp rcl_assert.vgtest \
seg_override.stderr.exp seg_override.stdout.exp seg_override.vgtest
-AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -I$(top_srcdir)/include
+AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -I$(top_srcdir)/include -msse2
AM_CXXFLAGS = $(AM_CFLAGS)
# generic C ones
Index: valgrind.spec
===================================================================
RCS file: /cvs/dist/rpms/valgrind/devel/valgrind.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- valgrind.spec 29 Mar 2005 22:12:08 -0000 1.16
+++ valgrind.spec 12 Jul 2005 14:00:29 -0000 1.17
@@ -1,11 +1,13 @@
Summary: Tool for finding memory management bugs in programs
Name: valgrind
Version: 2.4.0
-Release: 2
+Release: 3
Epoch: 1
Source0: http://developer.kde.org/~sewardj/valgrind-%{version}.tar.bz2
Patch1: valgrind-2.4.0-regtest.patch
Patch2: valgrind-2.4.0-valgrind_h.patch
+Patch3: valgrind-2.4.0-x86-insn-tests.patch
+Patch4: valgrind-2.4.0-glibc24.patch
License: GPL
URL: http://valgrind.kde.org/
Group: Development/Debuggers
@@ -33,6 +35,8 @@
%setup -q
%patch1 -p1
%patch2 -p1
+%patch3 -p1
+%patch4 -p1
%define __find_provides %{_builddir}/%{name}-%{version}/find-provides
find_provides=`rpm --eval %%{__find_provides}`
@@ -100,7 +104,11 @@
%{_mandir}/man1/valgrind*
%changelog
-* Wed Mar 30 2005 Colin Walters <walters redhat com> 2.4.0-2
+* Tue Jul 12 2005 Jakub Jelinek <jakub redhat com> 2.4.0-3
+- build some insn tests with -mmmx, -msse or -msse2 (#161572)
+- handle glibc-2.3.90 the same way as 2.3.[0-5]
+
+* Wed Mar 30 2005 Jakub Jelinek <jakub redhat com> 2.4.0-2
- resurrect the non-upstreamed part of valgrind_h patch
- remove 2.1.2-4G patch, seems to be upstreamed
- resurrect passing -fno-builtin in memcheck tests
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]