2bf70d
%{?scl:%scl_package valgrind}
2bf70d
2bf70d
Summary: Tool for finding memory management bugs in programs
2bf70d
Name: %{?scl_prefix}valgrind
2bf70d
Version: 3.15.0
2bf70d
Release: 11%{?dist}
2bf70d
Epoch: 1
2bf70d
License: GPLv2+
2bf70d
URL: http://www.valgrind.org/
2bf70d
Group: Development/Debuggers
2bf70d
2bf70d
# Only necessary for RHEL, will be ignored on Fedora
2bf70d
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2bf70d
2bf70d
# Are we building for a Software Collection?
2bf70d
%{?scl:%global is_scl 1}
2bf70d
%{!?scl:%global is_scl 0}
2bf70d
2bf70d
# We never want the openmpi subpackage when building a software collecton.
2bf70d
# We always want it for fedora.
2bf70d
# We only want it for older rhel. But not s390x for too old rhel.
2bf70d
%if %{is_scl}
2bf70d
  %global build_openmpi 0
2bf70d
%else
2bf70d
  %if 0%{?fedora}
2bf70d
    %global build_openmpi 1
2bf70d
  %endif
2bf70d
  %if 0%{?rhel}
2bf70d
    # We only ever build for these architectures. Historically s390x
2bf70d
    # didn't have an openmpi implementation.
2bf70d
    %ifarch %{ix86} x86_64 ppc ppc64 ppc64le %{arm} aarch64
2bf70d
      %global build_openmpi 1
2bf70d
    %else
2bf70d
      %global build_openmpi 0
2bf70d
    %endif
2bf70d
  %endif
2bf70d
%endif
2bf70d
2bf70d
# We only want to build the valgrind-tools-devel package for Fedora proper
2bf70d
# as convenience. But not for DTS or RHEL.
2bf70d
%if %{is_scl}
2bf70d
  %global build_tools_devel 0
2bf70d
%else
2bf70d
  %if 0%{?rhel}
2bf70d
    %global build_tools_devel 0
2bf70d
  %else
2bf70d
    %global build_tools_devel 1
2bf70d
  %endif
2bf70d
%endif
2bf70d
2bf70d
# Whether to run the full regtest or only a limited set
2bf70d
# The full regtest includes gdb_server integration tests
2bf70d
# and experimental tools.
2bf70d
# Only run full regtests on fedora, but not on older rhel
2bf70d
# or when creating scl, the gdb_server tests might hang.
2bf70d
%if %{is_scl}
2bf70d
  %global run_full_regtest 0
2bf70d
%else
2bf70d
  %if 0%{?fedora}
2bf70d
    %global run_full_regtest 1
2bf70d
  %endif
2bf70d
  %if 0%{?rhel}
2bf70d
    %global run_full_regtest (%rhel >= 7)
2bf70d
  %endif
2bf70d
%endif
2bf70d
2bf70d
# Generating minisymtabs doesn't really work for the staticly linked
2bf70d
# tools. Note (below) that we don't strip the vgpreload libraries at all
2bf70d
# because valgrind might read and need the debuginfo in those (client)
2bf70d
# libraries for better error reporting and sometimes correctly unwinding.
2bf70d
# So those will already have their full symbol table.
2bf70d
%undefine _include_minidebuginfo
2bf70d
2bf70d
Source0: ftp://sourceware.org/pub/valgrind/valgrind-%{version}.tar.bz2
2bf70d
2bf70d
# Needs investigation and pushing upstream
2bf70d
Patch1: valgrind-3.9.0-cachegrind-improvements.patch
2bf70d
2bf70d
# KDE#211352 - helgrind races in helgrind's own mythread_wrapper
2bf70d
Patch2: valgrind-3.9.0-helgrind-race-supp.patch
2bf70d
2bf70d
# Make ld.so supressions slightly less specific.
2bf70d
Patch3: valgrind-3.9.0-ldso-supp.patch
2bf70d
2bf70d
# We want all executables and libraries in libexec instead of lib
2bf70d
# so they are only available for valgrind usage itself and so the
2bf70d
# same directory is used independent of arch.
2bf70d
Patch4: valgrind-3.15.0-pkglibexecdir.patch
2bf70d
2bf70d
# KDE#398649 s390x z13 support doesn't build with older gcc/binutils
2bf70d
# Disable z13 support (on rhel6)
2bf70d
Patch5: valgrind-3.15.0-disable-s390x-z13.patch
2bf70d
2bf70d
# Add some stack-protector
2bf70d
Patch6: valgrind-3.15.0-some-stack-protector.patch
2bf70d
2bf70d
# KDE#406561  mcinfcallWSRU gdbserver_test fails on ppc64
2bf70d
Patch7: valgrind-3.15.0-ppc64-filter_gdb.patch
2bf70d
2bf70d
# KDE#407218 Add support for the copy_file_range syscall
2bf70d
Patch8: valgrind-3.15.0-copy_file_range.patch
2bf70d
2bf70d
# KDE#407307 Intercept stpcpy also in ld.so for arm64
2bf70d
Patch9: valgrind-3.15.0-arm64-ld-stpcpy.patch
2bf70d
2bf70d
# commit 59784c aarch64 (arm64) isn't a supported architecture for exp-sgcheck.
2bf70d
Patch10: valgrind-3.15.0-exp-sgcheck-no-aarch64.patch
2bf70d
2bf70d
# commit 917e42 Make memcheck/tests/arm64-linux/scalar work under root
2bf70d
Patch11: valgrind-3.15.0-scalar-arm64.patch
2bf70d
2bf70d
# commit abc09f Make memcheck/tests/x86-linux/scalar test work under root.
2bf70d
Patch12: valgrind-3.15.0-scalar-x86.patch
2bf70d
2bf70d
# KDE#407764 s390x: drd fails on z13 due to function wrapping issue
2bf70d
Patch13: valgrind-3.15.0-s390x-wrap-drd.patch
2bf70d
2bf70d
# Add some -Wl,z,now.
2bf70d
Patch14: valgrind-3.15.0-some-Wl-z-now.patch
2bf70d
2bf70d
# KDE#408009 Expose rdrand and f16c even on avx if host cpu supports them
2bf70d
Patch15: valgrind-3.15.0-avx-rdrand-f16c.patch
2bf70d
2bf70d
# KDE#408091 Missing pkey syscalls
2bf70d
Patch16: valgrind-3.15.0-pkey.patch
2bf70d
2bf70d
# KDE#408414 Add support for preadv2 and pwritev2 syscalls
2bf70d
Patch17: valgrind-3.15.0-preadv2-pwritev2.patch
2bf70d
2bf70d
# Upstream commit 9616e9bc9a1950f70ab1abd1c6ca9abc3f26eb7f
2bf70d
Patch18: valgrind-3.15.0-arm-membarrier.patch
2bf70d
2bf70d
# KDE#404406 s390x: z14 miscellaneous instructions not implemented
2bf70d
Patch19: valgrind-3.15.0-z14-misc.patch
2bf70d
2bf70d
2bf70d
# RHBZ#996927 Ignore PPC floating point phased out category.
2bf70d
# The result might differ on ppc vs ppc64 and config.h ends up as
2bf70d
# public header under /usr/include/valgrind causing multilib problems.
2bf70d
# The result would only be used for two test cases.
2bf70d
Patch7001: valgrind-3.11.0-ppc-fppo.patch
2bf70d
2bf70d
2bf70d
BuildRequires: glibc-devel
2bf70d
2bf70d
%if %{build_openmpi}
2bf70d
BuildRequires: openmpi-devel
2bf70d
%endif
2bf70d
2bf70d
%if %{run_full_regtest}
2bf70d
BuildRequires: gdb
2bf70d
%endif
2bf70d
2bf70d
# gdbserver_tests/filter_make_empty uses ps in test
2bf70d
BuildRequires: procps
2bf70d
2bf70d
# Some testcases require g++ to build
2bf70d
BuildRequires: gcc-c++
2bf70d
2bf70d
# check_headers_and_includes uses Getopt::Long
2bf70d
%if 0%{?fedora}
2bf70d
BuildRequires: perl-generators
2bf70d
%endif
2bf70d
BuildRequires: perl(Getopt::Long)
2bf70d
2bf70d
# We always autoreconf
2bf70d
BuildRequires: automake
2bf70d
BuildRequires: autoconf
2bf70d
2bf70d
%{?scl:Requires:%scl_runtime}
2bf70d
2bf70d
# We need to fixup selinux file context when doing a scl build.
2bf70d
# In RHEL6 we might need to fix up the labels even though the
2bf70d
# meta package sets up a fs equivalence. See post.
2bf70d
%if 0%{?rhel} == 6
2bf70d
%{?scl:Requires(post): /sbin/restorecon}
2bf70d
%endif
2bf70d
2bf70d
# We could use %%valgrind_arches as defined in redhat-rpm-config
2bf70d
# But that is really for programs using valgrind, it defines the
2bf70d
# set of architectures that valgrind works correctly on.
2bf70d
ExclusiveArch: %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64
2bf70d
2bf70d
# Define valarch, the architecture name that valgrind uses
2bf70d
# And only_arch, the configure option to only build for that arch.
2bf70d
%ifarch %{ix86}
2bf70d
%define valarch x86
2bf70d
%define only_arch --enable-only32bit
2bf70d
%endif
2bf70d
%ifarch x86_64
2bf70d
%define valarch amd64
2bf70d
%define only_arch --enable-only64bit
2bf70d
%endif
2bf70d
%ifarch ppc
2bf70d
%define valarch ppc32
2bf70d
%define only_arch --enable-only32bit
2bf70d
%endif
2bf70d
%ifarch ppc64
2bf70d
%define valarch ppc64be
2bf70d
%define only_arch --enable-only64bit
2bf70d
%endif
2bf70d
%ifarch ppc64le
2bf70d
%define valarch ppc64le
2bf70d
%define only_arch --enable-only64bit
2bf70d
%endif
2bf70d
%ifarch s390x
2bf70d
%define valarch s390x
2bf70d
%define only_arch --enable-only64bit
2bf70d
%endif
2bf70d
%ifarch armv7hl
2bf70d
%define valarch arm
2bf70d
%define only_arch --enable-only32bit
2bf70d
%endif
2bf70d
%ifarch aarch64
2bf70d
%define valarch arm64
2bf70d
%define only_arch --enable-only64bit
2bf70d
%endif
2bf70d
2bf70d
%description
2bf70d
Valgrind is an instrumentation framework for building dynamic analysis
2bf70d
tools. There are Valgrind tools that can automatically detect many
2bf70d
memory management and threading bugs, and profile your programs in
2bf70d
detail. You can also use Valgrind to build new tools. The Valgrind
2bf70d
distribution currently includes six production-quality tools: a memory
2bf70d
error detector (memcheck, the default tool), two thread error
2bf70d
detectors (helgrind and drd), a cache and branch-prediction profiler
2bf70d
(cachegrind), a call-graph generating cache and branch-prediction
2bf70d
profiler (callgrind), and a heap profiler (massif).
2bf70d
2bf70d
%package devel
2bf70d
Summary: Development files for valgrind
2bf70d
Group: Development/Debuggers
2bf70d
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
2bf70d
Provides: %{name}-static = %{epoch}:%{version}-%{release}
2bf70d
2bf70d
%description devel
2bf70d
Header files and libraries for development of valgrind aware programs
2bf70d
or valgrind plugins.
2bf70d
2bf70d
%if %{build_openmpi}
2bf70d
%package openmpi
2bf70d
Summary: OpenMPI support for valgrind
2bf70d
Group: Development/Debuggers
2bf70d
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
2bf70d
2bf70d
%description openmpi
2bf70d
A wrapper library for debugging OpenMPI parallel programs with valgrind.
2bf70d
See the section on Debugging MPI Parallel Programs with Valgrind in the
2bf70d
Valgrind User Manual for details.
2bf70d
%endif
2bf70d
2bf70d
%prep
2bf70d
%setup -q -n %{?scl:%{pkg_name}}%{!?scl:%{name}}-%{version}
2bf70d
2bf70d
%patch1 -p1
2bf70d
%patch2 -p1
2bf70d
%patch3 -p1
2bf70d
%patch4 -p1
2bf70d
2bf70d
# Disable s390x z13 support on old rhel, binutils is just too old.
2bf70d
%if 0%{?rhel} == 6
2bf70d
%patch5 -p1
2bf70d
%endif
2bf70d
2bf70d
# Old rhel gcc doesn't have -fstack-protector-strong.
2bf70d
%if 0%{?fedora} || 0%{?rhel} >= 7
2bf70d
%patch6 -p1
2bf70d
%endif
2bf70d
2bf70d
%patch7 -p1
2bf70d
%patch8 -p1
2bf70d
%patch9 -p1
2bf70d
%patch10 -p1
2bf70d
%patch11 -p1
2bf70d
%patch12 -p1
2bf70d
%patch13 -p1
2bf70d
2bf70d
# This depends on patch6, old rhel gcc doesn't have -fstack-protector-strong.
2bf70d
%if 0%{?fedora} || 0%{?rhel} >= 7
2bf70d
%patch14 -p1
2bf70d
%endif
2bf70d
2bf70d
%patch15 -p1
2bf70d
%patch16 -p1
2bf70d
%patch17 -p1
2bf70d
%patch18 -p1
2bf70d
2bf70d
# Don't add s390x z14 support on old rhel, binutils is just too old.
2bf70d
%if 0%{?fedora} || 0%{?rhel} >= 7
2bf70d
%patch19 -p1
2bf70d
%endif
2bf70d
2bf70d
2bf70d
# RHEL7 specific patches
2bf70d
%patch7001 -p1
2bf70d
2bf70d
2bf70d
%build
2bf70d
2bf70d
# Some patches (might) touch Makefile.am or configure.ac files.
2bf70d
# Just always autoreconf so we don't need patches to prebuild files.
2bf70d
./autogen.sh
2bf70d
2bf70d
# Old openmpi-devel has version depended paths for mpicc.
2bf70d
%if %{build_openmpi}
2bf70d
%if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
2bf70d
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/bin/mpicc
2bf70d
%else
2bf70d
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/*/bin/mpicc
2bf70d
%endif
2bf70d
%else
2bf70d
# We explicitly don't want the libmpi wrapper. So make sure that configure
2bf70d
# doesn't pick some random mpi compiler that happens to be installed.
2bf70d
%define mpiccpath /bin/false
2bf70d
%endif
2bf70d
2bf70d
# Filter out "hardening" flags that don't make sense for valgrind.
2bf70d
# -fstack-protector just cannot work (valgrind would have to implement
2bf70d
# its own version since it doesn't link with glibc and handles stack
2bf70d
# setup itself). We patch some flags back in just for those helper
2bf70d
# programs where it does make sense.
2bf70d
#
2bf70d
# -Wl,-z,now doesn't make sense for static linked tools
2bf70d
# and would prevent using the vgpreload libraries on binaries that
2bf70d
# don't link themselves against libraries (like pthread) which symbols
2bf70d
# are needed (but only if the inferior itself would use them).
2bf70d
#
2bf70d
# -O2 doesn't work for the vgpreload libraries either. They are meant
2bf70d
# to not be optimized to show precisely what happened. valgrind adds
2bf70d
# -O2 itself wherever suitable.
2bf70d
#
2bf70d
# On ppc64[be] -fexceptions is troublesome.
2bf70d
# It might cause an undefined reference to `_Unwind_Resume'
2bf70d
# in libcoregrind-ppc64be-linux.a(libcoregrind_ppc64be_linux_a-readelf.o):
2bf70d
# In function `read_elf_symtab__ppc64be_linux.
2bf70d
#
2bf70d
# Also disable strict symbol checks because the vg_preload library
2bf70d
# will use hidden/undefined symbols from glibc like __libc_freeres.
2bf70d
%undefine _strict_symbol_defs_build
2bf70d
2bf70d
%ifarch ppc64
2bf70d
CFLAGS="`echo " %{optflags} " | sed 's/ -fstack-protector\([-a-z]*\) / / g;s/ -O2 / /g;s/ -fexceptions / /g;'`"
2bf70d
%else
2bf70d
CFLAGS="`echo " %{optflags} " | sed 's/ -fstack-protector\([-a-z]*\) / / g;s/ -O2 / /g;'`"
2bf70d
%endif
2bf70d
export CFLAGS
2bf70d
2bf70d
# Older Fedora/RHEL only had __global_ldflags.
2bf70d
# Even older didn't even have that (so we don't need to scrub them).
2bf70d
%if 0%{?build_ldflags:1}
2bf70d
LDFLAGS="`echo " %{build_ldflags} "    | sed 's/ -Wl,-z,now / / g;'`"
2bf70d
%else
2bf70d
%if 0%{?__global_ldflags:1}
2bf70d
LDFLAGS="`echo " %{__global_ldflags} " | sed 's/ -Wl,-z,now / / g;'`"
2bf70d
%endif
2bf70d
%endif
2bf70d
export LDFLAGS
2bf70d
2bf70d
%configure \
2bf70d
  --with-mpicc=%{mpiccpath} \
2bf70d
  %{only_arch} \
2bf70d
  GDB=%{_bindir}/gdb
2bf70d
2bf70d
make %{?_smp_mflags}
2bf70d
2bf70d
%install
2bf70d
rm -rf $RPM_BUILD_ROOT
2bf70d
make DESTDIR=$RPM_BUILD_ROOT install
2bf70d
mkdir docs/installed
2bf70d
mv $RPM_BUILD_ROOT%{_datadir}/doc/valgrind/* docs/installed/
2bf70d
rm -f docs/installed/*.ps
2bf70d
2bf70d
# We want the MPI wrapper installed under the openmpi libdir so the script
2bf70d
# generating the MPI library requires picks them up and sets up the right
2bf70d
# openmpi libmpi.so requires. Install symlinks in the original/upstream
2bf70d
# location for backwards compatibility.
2bf70d
%if %{build_openmpi}
2bf70d
pushd $RPM_BUILD_ROOT%{_libdir}
2bf70d
mkdir -p openmpi/valgrind
2bf70d
cd valgrind
2bf70d
mv libmpiwrap-%{valarch}-linux.so ../openmpi/valgrind/
2bf70d
ln -s ../openmpi/valgrind/libmpiwrap-%{valarch}-linux.so
2bf70d
popd
2bf70d
%endif
2bf70d
2bf70d
%ifarch %{ix86} x86_64
2bf70d
# To avoid multilib clashes in between i?86 and x86_64,
2bf70d
# tweak installed <valgrind/config.h> a little bit.
2bf70d
for i in HAVE_PTHREAD_CREATE_GLIBC_2_0 HAVE_PTRACE_GETREGS HAVE_AS_AMD64_FXSAVE64; do
2bf70d
  sed -i -e 's,^\(#define '$i' 1\|/\* #undef '$i' \*/\)$,#ifdef __x86_64__\n# define '$i' 1\n#endif,' \
2bf70d
    $RPM_BUILD_ROOT%{_includedir}/valgrind/config.h
2bf70d
done
2bf70d
%endif
2bf70d
2bf70d
# We don't want debuginfo generated for the vgpreload libraries.
2bf70d
# Turn off execute bit so they aren't included in the debuginfo.list.
2bf70d
# We'll turn the execute bit on again in %%files.
2bf70d
chmod 644 $RPM_BUILD_ROOT%{_libexecdir}/valgrind/vgpreload*-%{valarch}-*so
2bf70d
2bf70d
%check
2bf70d
# Make sure some info about the system is in the build.log
2bf70d
# Add || true because rpm on copr EPEL6 acts weirdly and we don't want
2bf70d
# to break the build.
2bf70d
uname -a
2bf70d
rpm -q glibc gcc binutils || true
2bf70d
%if %{run_full_regtest}
2bf70d
rpm -q gdb || true
2bf70d
%endif
2bf70d
2bf70d
LD_SHOW_AUXV=1 /bin/true
2bf70d
cat /proc/cpuinfo
2bf70d
2bf70d
# Make sure a basic binary runs. There should be no errors.
2bf70d
./vg-in-place --error-exitcode=1 /bin/true --help
2bf70d
2bf70d
# Build the test files with the software collection compiler if available.
2bf70d
%{?scl:PATH=%{_bindir}${PATH:+:${PATH}}}
2bf70d
# Make sure no extra CFLAGS, CXXFLAGS or LDFLAGS leak through,
2bf70d
# the testsuite sets all flags necessary. See also configure above.
2bf70d
make %{?_smp_mflags} CFLAGS="" CXXFLAGS="" LDFLAGS="" check
2bf70d
2bf70d
# Workaround https://bugzilla.redhat.com/show_bug.cgi?id=1434601
2bf70d
# for gdbserver tests.
2bf70d
export PYTHONCOERCECLOCALE=0
2bf70d
2bf70d
echo ===============TESTING===================
2bf70d
%if %{run_full_regtest}
2bf70d
  make regtest || :
2bf70d
%else
2bf70d
  make nonexp-regtest || :
2bf70d
%endif
2bf70d
2bf70d
# Make sure test failures show up in build.log
2bf70d
# Gather up the diffs (at most the first 20 lines for each one)
2bf70d
MAX_LINES=20
2bf70d
diff_files=`find gdbserver_tests */tests -name '*.diff*' | sort`
2bf70d
if [ z"$diff_files" = z ] ; then
2bf70d
   echo "Congratulations, all tests passed!" >> diffs
2bf70d
else
2bf70d
   for i in $diff_files ; do
2bf70d
      echo "=================================================" >> diffs
2bf70d
      echo $i                                                  >> diffs
2bf70d
      echo "=================================================" >> diffs
2bf70d
      if [ `wc -l < $i` -le $MAX_LINES ] ; then
2bf70d
         cat $i                                                >> diffs
2bf70d
      else
2bf70d
         head -n $MAX_LINES $i                                 >> diffs
2bf70d
         echo "<truncated beyond $MAX_LINES lines>"            >> diffs
2bf70d
      fi
2bf70d
   done
2bf70d
fi
2bf70d
cat diffs
2bf70d
echo ===============END TESTING===============
2bf70d
2bf70d
%files
2bf70d
%defattr(-,root,root)
2bf70d
%doc COPYING NEWS README_*
2bf70d
%doc docs/installed/html docs/installed/*.pdf
2bf70d
%{_bindir}/*
2bf70d
%dir %{_libexecdir}/valgrind
2bf70d
# Install everything in the libdir except the .so.
2bf70d
# The vgpreload so files might need file mode adjustment.
2bf70d
%{_libexecdir}/valgrind/*[^o]
2bf70d
# Turn on executable bit again for vgpreload libraries.
2bf70d
# Was disabled in %%install to prevent debuginfo stripping.
2bf70d
%attr(0755,root,root) %{_libexecdir}/valgrind/vgpreload*-%{valarch}-*so
2bf70d
%{_mandir}/man1/*
2bf70d
2bf70d
%files devel
2bf70d
%defattr(-,root,root)
2bf70d
%{_includedir}/valgrind
2bf70d
%dir %{_libdir}/valgrind
2bf70d
%{_libdir}/valgrind/*.a
2bf70d
%{_libdir}/pkgconfig/*
2bf70d
2bf70d
%if %{build_openmpi}
2bf70d
%files openmpi
2bf70d
%defattr(-,root,root)
2bf70d
%dir %{_libdir}/valgrind
2bf70d
%{_libdir}/openmpi/valgrind/libmpiwrap*.so
2bf70d
%{_libdir}/valgrind/libmpiwrap*.so
2bf70d
%endif
2bf70d
2bf70d
%changelog
2bf70d
* Mon Aug  5 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-11
2bf70d
- Rebase to 3.15.0 plus backports and z14-misc support
2bf70d
2bf70d
* Tue Mar  5 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-16
2bf70d
- Rebase to 3.14.0 plus backports and z13 support (#1519410)
2bf70d
2bf70d
* Thu Jun 21 2018 Mark Wielaard <mjw@redhat.com> - 3.13.0-13
2bf70d
- Improved valgrind-3.13.0-arm64-hwcap.patch (#1593686)
2bf70d
- Add valgrind-3.13.0-arm64-ptrace.patch (#1593682)
2bf70d
2bf70d
* Tue Jun 12 2018 Mark Wielaard <mjw@redhat.com> - 3.13.0-12
2bf70d
- Keep build_openmpi explicitly off for s390x (#1530219)
2bf70d
2bf70d
* Tue Jun 12 2018 Mark Wielaard <mjw@redhat.com> - 3.13.0-11
2bf70d
- Make building of libmpi wrapper explicit (#1530219)
2bf70d
- Add valgrind-3.13.0-debug-alt-file.patch
2bf70d
  and valgrind-3.13.0-build-id-phdrs.patch (#1589844)
2bf70d
- Add valgrind-3.13.0-s390-cgijnl.patch (#1589848)
2bf70d
- Add valgrind-3.13.0-ppc64-mtfprwa-constraint.patch (#1589852)
2bf70d
2bf70d
* Thu Nov  2 2017 Mark Wielaard <mjw@redhat.com> - 3.13.0-10
2bf70d
- Add valgrind-3.13.0-ppc64-timebase.patch (#1508148)
2bf70d
2bf70d
* Tue Oct 17 2017 Mark Wielaard <mjw@redhat.com> - 3.13.0-9
2bf70d
- valgrind 3.13.0 (fedora).
2bf70d
- Update description.
2bf70d
- Drop all upstreamed patches.
2bf70d
- Add valgrind-3.13.0-ppc64-check-no-vsx.patch
2bf70d
- Add valgrind-3.13.0-epoll_pwait.patch (#1462258)
2bf70d
- Add valgrind-3.13.0-ppc64-diag.patch
2bf70d
- Add valgrind-3.13.0-arm64-hwcap.patch (#1464211)
2bf70d
- Add valgrind-3.13.0-arm-index-hardwire.patch (#1466017)
2bf70d
- Add valgrind-3.13.0-ucontext_t.patch
2bf70d
- Add valgrind-3.13.0-gdb-8-testfix.patch
2bf70d
- Add valgrind-3.13.0-disable-vgdb-child.patch
2bf70d
- Add --error-exitcode=1 to /bin/true check.
2bf70d
- Add valgrind-3.13.0-xml-socket.patch
2bf70d
- Add valgrind-3.13.0-ppc64-vex-fixes.patch
2bf70d
- Add valgrind-3.13.0-amd64-eflags-tests.patch
2bf70d
- Add valgrind-3.13.0-suppress-dl-trampoline-sse-avx.patch
2bf70d
- Add valgrind-3.13.0-static-tls.patch
2bf70d
- Workaround gdb/python bug in testsuite (#1434601)
2bf70d
2bf70d
* Thu Sep 21 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-9
2bf70d
- Add valgrind-3.12.0-ll-sc-fallback[1234].patch (#1492753)
2bf70d
2bf70d
* Tue Mar 28 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-8
2bf70d
- Add valgrind-3.12.0-powerpc-register-pair.patch (#1437030)
2bf70d
- Add valgrind-3.12.0-ppc64-isa-3_00.patch (#1437032)
2bf70d
2bf70d
* Sat Feb 18 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-7
2bf70d
- Rebase to 3.12.0 fedora backports (#1391217, #1385006, #1368706, #1270889)
2bf70d
2bf70d
* Thu Jul 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-24
2bf70d
- Add valgrind-3.11.0-pcmpxstrx-0x70-0x19.patch (#1354557)
2bf70d
2bf70d
* Tue Jun 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-23
2bf70d
- Update valgrind-3.11.0-ppoll-mask.patch (#1347626)
2bf70d
2bf70d
* Mon May 30 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-22
2bf70d
- Add valgrind-3.11.0-arm64-handle_at.patch
2bf70d
- Add valgrind-3.11.0-ppc64-syscalls.patch
2bf70d
2bf70d
* Fri Apr 29 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-21
2bf70d
- Add valgrind-3.11.0-deduppoolalloc.patch (#1328347)
2bf70d
- Add valgrind-3.11.0-ppc-bcd-addsub.patch (#1331738)
2bf70d
- Add valgrind-3.11.0-ppc64-vgdb-vr-regs.patch (#1331774)
2bf70d
2bf70d
* Fri Apr 15 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-20
2bf70d
- Rebase to fedora 3.11.0
2bf70d
  (#1316512 #1306844 #1305962 #1298888 #1296318 #1271754 #1265566 #1265557)
2bf70d
2bf70d
* Fri Aug 28 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-16
2bf70d
- Patch both 32 and 64 in valgrind-3.10.1-ppc32-tabortdc.patch (#1257623)
2bf70d
2bf70d
* Thu Aug 27 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-15
2bf70d
- Add valgrind-3.10.1-ppc32-tabortdc.patch (#1257623)
2bf70d
2bf70d
* Mon Aug 10 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-14
2bf70d
- Add setuid and setresgid to valgrind-3.10.1-aarch64-syscalls.patch (#1251181)
2bf70d
2bf70d
* Mon Aug 03 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-13
2bf70d
- Add valgrind-3.10.1-ppc64-hwcap2.patch (#1249381)
2bf70d
2bf70d
* Wed Jul 29 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-12
2bf70d
- Add valgrind-3.10.1-kernel-4.0.patch (#1247557)
2bf70d
2bf70d
* Thu Jul 09 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-11
2bf70d
- Add valgrind-3.10.1-s390x-fiebra.patch (#1181993)
2bf70d
2bf70d
* Tue Jul 07 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-10
2bf70d
- Add valgrind-3.10.1-di_notify_mmap.patch (#1237206)
2bf70d
2bf70d
* Thu May 28 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-9
2bf70d
- Add valgrind-3.10-1-ppc64-sigpending.patch. (#1225964)
2bf70d
2bf70d
* Thu May 28 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-8
2bf70d
- Add valgrind-3.10-s390-spechelper.patch. (#1190169)
2bf70d
- Add valgrind-3.10.1-aarch64-syscalls.patch. (#1188622)
2bf70d
- Add accept4 to valgrind-3.10.1-aarch64-syscalls.patch. (#1190660)
2bf70d
- Add valgrind-3.10.1-ppc64-accept4.patch. (#1190660)
2bf70d
- Add valgrind-3.10.1-send-recv-mmsg.patch. (#1192103)
2bf70d
- Add mount and umount2 to valgrind-3.10.1-aarch64-syscalls.patch. (#1193796)
2bf70d
2bf70d
* Tue Jan 13 2015 Mark Wielaard <mjw@redhat.com> - 3.10.0-7
2bf70d
- Add valgrind-3.10.1-mempcpy.patch (#1178813)
2bf70d
2bf70d
* Wed Nov 19 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-6
2bf70d
- Add getgroups/setgroups to valgrind-3.10.0-aarch64-syscalls.patch
2bf70d
2bf70d
* Tue Nov  4 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-5
2bf70d
- Merge valgrind-3.10.0-aarch64-times.patch
2bf70d
  and valgrind-3.10.0-aarch64-getsetsid.patch
2bf70d
  into valgrind-3.10.0-aarch64-syscalls.patch
2bf70d
  add fdatasync, msync, pread64, setreuid, setregid,
2bf70d
  mknodat, fchdir, chroot, fchownat, fchmod and fchown.
2bf70d
- Add valgrind-3.10.0-aarch64-frint.patch
2bf70d
- Add valgrind-3.10.0-fcvtmu.patch
2bf70d
- Add valgrind-3.10.0-aarch64-fcvta.patch
2bf70d
2bf70d
* Sat Oct 11 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-4
2bf70d
- Add valgrind-3.10.0-aarch64-times.patch
2bf70d
- Add valgrind-3.10.0-aarch64-getsetsid.patch
2bf70d
- Add valgrind-3.10.0-aarch64-dmb-sy.patch
2bf70d
2bf70d
* Mon Sep 15 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-3
2bf70d
- Add valgrind-3.10.0-old-ppc32-instr-magic.patch.
2bf70d
2bf70d
* Fri Sep 12 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-2
2bf70d
- Fix ppc32 multilib handling on ppc64[be].
2bf70d
- Drop ppc64 secondary for ppc32 primary support.
2bf70d
- Except for armv7hl we don't support any other arm[32] arch.
2bf70d
2bf70d
* Thu Sep 11 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-1
2bf70d
- Update to 3.10.0 final.
2bf70d
- Don't run dwz or generate minisymtab.
2bf70d
- Remove valgrind-3.9.0-s390x-ld-supp.patch fixed upstream.
2bf70d
- Add valgrind-openmpi for ppc64le.
2bf70d
2bf70d
* Tue Sep  2 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-0.1.BETA1
2bf70d
- Update to official upstream 3.10.0 BETA1.
2bf70d
  - Enables inlined frames in stacktraces.
2bf70d
2bf70d
* Mon Mar 10 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-6
2bf70d
- Add valgrind-3.9.0-ppc64-priority.patch. (#1073613)
2bf70d
2bf70d
* Fri Feb 21 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-5
2bf70d
- Add valgrind-3.9.0-s390-dup3.patch. (#1067486)
2bf70d
2bf70d
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:3.9.0-4
2bf70d
- Mass rebuild 2014-01-24
2bf70d
2bf70d
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:3.9.0-3
2bf70d
- Mass rebuild 2013-12-27
2bf70d
2bf70d
* Thu Dec 12 2013 Mark Wielaard <mjw@redhat.com>
2bf70d
- Add valgrind-3.9.0-manpage-memcheck-options.patch. (#1040914)
2bf70d
- Add valgrind-3.9.0-s390-fpr-pair.patch. (#1036615)
2bf70d
2bf70d
* Thu Nov 28 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-2.2
2bf70d
- Add valgrind-3.9.0-s390x-ld-supp.patch. (#1032282)
2bf70d
- Add valgrind-3.9.0-xabort.patch. (#1035704)
2bf70d
2bf70d
* Wed Nov 20 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-2.1
2bf70d
- Add valgrind-3.9.0-dwz-alt-buildid.patch. (#1029875)
2bf70d
2bf70d
* Thu Nov  7 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-1.2
2bf70d
- Remove unnecessary and unapplied valgrind-3.8.1-movntdqa.patch
2bf70d
- Remove valgrind-3.9.0-s390x-workarounds.patch
2bf70d
- Add valgrind-3.9.0-s390-risbg.patch (#1018325)
2bf70d
2bf70d
* Fri Nov  1 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-1.1
2bf70d
- Add s390x workarounds. (#1018325)
2bf70d
2bf70d
* Fri Nov  1 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-1
2bf70d
- Upgrade to valgrind 3.9.0 final.
2bf70d
- Remove support for really ancient GCCs (valgrind-3.9.0-config_h.patch).
2bf70d
- Add valgrind-3.9.0-amd64_gen_insn_test.patch.
2bf70d
- Remove and cleanup fake 32-bit libgcc package.
2bf70d
2bf70d
* Mon Oct 28 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-0.1.TEST1
2bf70d
- Upgrade to valgrind 3.9.0.TEST1
2bf70d
- Remove patches that are now upstream:
2bf70d
  - valgrind-3.8.1-abbrev-parsing.patch
2bf70d
  - valgrind-3.8.1-af-bluetooth.patch
2bf70d
  - valgrind-3.8.1-aspacemgr_VG_N_SEGs.patch
2bf70d
  - valgrind-3.8.1-avx2-bmi-fma.patch.gz
2bf70d
  - valgrind-3.8.1-avx2-prereq.patch
2bf70d
  - valgrind-3.8.1-bmi-conf-check.patch
2bf70d
  - valgrind-3.8.1-capget.patch
2bf70d
  - valgrind-3.8.1-cfi_dw_ops.patch
2bf70d
  - valgrind-3.8.1-dwarf-anon-enum.patch
2bf70d
  - valgrind-3.8.1-filter_gdb.patch
2bf70d
  - valgrind-3.8.1-find-buildid.patch
2bf70d
  - valgrind-3.8.1-gdbserver_exit.patch
2bf70d
  - valgrind-3.8.1-gdbserver_tests-syscall-template-source.patch
2bf70d
  - valgrind-3.8.1-glibc-2.17-18.patch
2bf70d
  - valgrind-3.8.1-index-supp.patch
2bf70d
  - valgrind-3.8.1-initial-power-isa-207.patch
2bf70d
  - valgrind-3.8.1-manpages.patch
2bf70d
  - valgrind-3.8.1-memcheck-mc_translate-Iop_8HLto16.patch
2bf70d
  - valgrind-3.8.1-mmxext.patch
2bf70d
  - valgrind-3.8.1-movntdqa.patch
2bf70d
  - valgrind-3.8.1-new-manpages.patch
2bf70d
  - valgrind-3.8.1-openat.patch
2bf70d
  - valgrind-3.8.1-overlap_memcpy_filter.patch
2bf70d
  - valgrind-3.8.1-pie.patch
2bf70d
  - valgrind-3.8.1-pkg-config.patch
2bf70d
  - valgrind-3.8.1-power-isa-205-deprecation.patch
2bf70d
  - valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch
2bf70d
  - valgrind-3.8.1-ppc-setxattr.patch
2bf70d
  - valgrind-3.8.1-proc-auxv.patch
2bf70d
  - valgrind-3.8.1-ptrace-include-configure.patch
2bf70d
  - valgrind-3.8.1-ptrace-setgetregset.patch
2bf70d
  - valgrind-3.8.1-ptrace-thread-area.patch
2bf70d
  - valgrind-3.8.1-regtest-fixlets.patch
2bf70d
  - valgrind-3.8.1-s390-STFLE.patch
2bf70d
  - valgrind-3.8.1-s390_tsearch_supp.patch
2bf70d
  - valgrind-3.8.1-sendmsg-flags.patch
2bf70d
  - valgrind-3.8.1-sigill_diag.patch
2bf70d
  - valgrind-3.8.1-static-variables.patch
2bf70d
  - valgrind-3.8.1-stpncpy.patch
2bf70d
  - valgrind-3.8.1-text-segment.patch
2bf70d
  - valgrind-3.8.1-wcs.patch
2bf70d
  - valgrind-3.8.1-x86_amd64_features-avx.patch
2bf70d
  - valgrind-3.8.1-xaddb.patch
2bf70d
  - valgrind-3.8.1-zero-size-sections.patch
2bf70d
- Remove special case valgrind-3.8.1-enable-armv5.patch.
2bf70d
- Remove valgrind-3.8.1-x86-backtrace.patch, rely on new upstream fp/cfi
2bf70d
  try-cache mechanism.
2bf70d
2bf70d
* Mon Oct 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-31
2bf70d
- Fix multilib issue with HAVE_PTRACE_GETREGS in config.h.
2bf70d
2bf70d
* Thu Sep 26 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30
2bf70d
- Add valgrind-3.8.1-index-supp.patch (#1011713)
2bf70d
- Ignore PPC floating point phased out category. (#996927).
2bf70d
2bf70d
* Wed Sep 25 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-29
2bf70d
- Filter out -mcpu= so tests are compiled with the right flags. (#996927).
2bf70d
2bf70d
* Mon Sep 23 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-28
2bf70d
- Implement SSE4 MOVNTDQA insn (valgrind-3.8.1-movntdqa.patch)
2bf70d
- Don't BuildRequire /bin/ps, just BuildRequire procps
2bf70d
  (procps-ng provides procps).
2bf70d
2bf70d
* Thu Sep 05 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-27
2bf70d
- Fix power_ISA2_05 testcase (valgrind-3.8.1-power-isa-205-deprecation.patch)
2bf70d
- Fix ppc32 make check build (valgrind-3.8.1-initial-power-isa-207.patch)
2bf70d
- Add valgrind-3.8.1-mmxext.patch
2bf70d
2bf70d
* Wed Aug 21 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-26
2bf70d
- Allow building against glibc 2.18. (#999169)
2bf70d
2bf70d
* Thu Aug 15 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-25
2bf70d
- Add valgrind-3.8.1-s390-STFLE.patch
2bf70d
  s390 message-security assist (MSA) instruction extension not implemented.
2bf70d
2bf70d
* Wed Aug 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-24
2bf70d
- Add valgrind-3.8.1-power-isa-205-deprecation.patch
2bf70d
  Deprecation of some ISA 2.05 POWER6 instructions.
2bf70d
- Fixup auto-foo generation of new manpage doc patch.
2bf70d
2bf70d
* Wed Aug 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-23
2bf70d
- tests/check_isa-2_07_cap should be executable.
2bf70d
2bf70d
* Tue Aug 13 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-22
2bf70d
- Add valgrind-3.8.1-initial-power-isa-207.patch
2bf70d
  Initial ISA 2.07 support for POWER8-tuned libc.
2bf70d
2bf70d
* Thu Aug 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-21
2bf70d
- Don't depend on docdir location and version in openmpi subpackage
2bf70d
  description (#993938).
2bf70d
- Enable openmpi subpackage also on arm.
2bf70d
2bf70d
* Thu Aug 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-20
2bf70d
- Add valgrind-3.8.1-ptrace-include-configure.patch (#992847)
2bf70d
2bf70d
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.8.1-19
2bf70d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2bf70d
2bf70d
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 1:3.8.1-18
2bf70d
- Perl 5.18 rebuild
2bf70d
2bf70d
* Mon Jul 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-17
2bf70d
- Add valgrind-3.8.1-dwarf-anon-enum.patch
2bf70d
- Cleanup valgrind-3.8.1-sigill_diag.patch .orig file changes (#949687).
2bf70d
- Add valgrind-3.8.1-ppc-setxattr.patch
2bf70d
- Add valgrind-3.8.1-new-manpages.patch
2bf70d
- Add valgrind-3.8.1-ptrace-thread-area.patch
2bf70d
- Add valgrind-3.8.1-af-bluetooth.patch
2bf70d
2bf70d
* Tue May 28 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 1:3.8.1-16
2bf70d
- Provide virtual -static package in -devel subpackage (#609624).
2bf70d
2bf70d
* Thu Apr 25 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-15
2bf70d
- Add valgrind-3.8.1-zero-size-sections.patch. Resolves issues with zero
2bf70d
  sized .eh_frame sections on ppc64.
2bf70d
2bf70d
* Thu Apr 18 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-14
2bf70d
- fixup selinux file context when doing a scl build.
2bf70d
- Enable regtest suite on ARM.
2bf70d
- valgrind-3.8.1-abbrev-parsing.patch, drop workaround, enable real fix.
2bf70d
- Fix -Ttext-segment configure check. Enables s390x again.
2bf70d
- BuildRequire ps for testsuite.
2bf70d
2bf70d
* Tue Apr 02 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-13
2bf70d
- Fix quoting in valgrind valgrind-3.8.1-enable-armv5.patch and
2bf70d
  remove arm configure hunk from valgrind-3.8.1-text-segment.patch #947440
2bf70d
- Replace valgrind-3.8.1-text-segment.patch with upstream variant.
2bf70d
- Add valgrind-3.8.1-regtest-fixlets.patch.
2bf70d
2bf70d
* Wed Mar 20 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-12
2bf70d
- Add valgrind-3.8.1-text-segment.patch
2bf70d
- Don't undefine _missing_build_ids_terminate_build.
2bf70d
2bf70d
* Tue Mar 12 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-11
2bf70d
- Add valgrind-3.8.1-manpages.patch
2bf70d
2bf70d
* Fri Mar 01 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-10
2bf70d
- Don't disable -debuginfo package generation, but do undefine
2bf70d
  _missing_build_ids_terminate_build.
2bf70d
2bf70d
* Thu Feb 28 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-9
2bf70d
- Replace valgrind-3.8.1-sendmsg-flags.patch with upstream version.
2bf70d
2bf70d
* Tue Feb 19 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-8
2bf70d
- Add valgrind-3.8.1-sendmsg-flags.patch
2bf70d
- Add valgrind-3.8.1-ptrace-setgetregset.patch
2bf70d
- Add valgrind-3.8.1-static-variables.patch
2bf70d
2bf70d
* Thu Feb 07 2013 Jon Ciesla <limburgher@gmail.com> 1:3.8.1-7
2bf70d
- Merge review fixes, BZ 226522.
2bf70d
2bf70d
* Wed Jan 16 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-6
2bf70d
- Allow building against glibc-2.17.
2bf70d
2bf70d
* Sun Nov  4 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-5
2bf70d
- Add valgrind-3.8.1-stpncpy.patch (KDE#309427)
2bf70d
- Add valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch (#810992, KDE#308573)
2bf70d
- Add valgrind-3.8.1-sigill_diag.patch (#810992, KDE#309425)
2bf70d
2bf70d
* Tue Oct 16 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-4
2bf70d
- Add valgrind-3.8.1-xaddb.patch (#866793, KDE#307106)
2bf70d
2bf70d
* Mon Oct 15 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-3
2bf70d
- Add valgrind-3.8.1-x86_amd64_features-avx.patch (KDE#307285)
2bf70d
- Add valgrind-3.8.1-gdbserver_tests-syscall-template-source.patch (KDE#307155)
2bf70d
- Add valgrind-3.8.1-overlap_memcpy_filter.patch (KDE#307290)
2bf70d
- Add valgrind-3.8.1-pkg-config.patch (#827219, KDE#307729)
2bf70d
- Add valgrind-3.8.1-proc-auxv.patch (KDE#253519)
2bf70d
- Add valgrind-3.8.1-wcs.patch (#755242, KDE#307828)
2bf70d
- Add valgrind-3.8.1-filter_gdb.patch (KDE#308321)
2bf70d
- Add valgrind-3.8.1-gdbserver_exit.patch (#862795, KDE#308341)
2bf70d
- Add valgrind-3.8.1-aspacemgr_VG_N_SEGs.patch (#730303, KDE#164485)
2bf70d
- Add valgrind-3.8.1-s390_tsearch_supp.patch (#816244, KDE#308427)
2bf70d
2bf70d
* Fri Sep 21 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-2
2bf70d
- Add valgrind-3.8.1-gdbserver_tests-mcinvoke-ppc64.patch
2bf70d
- Replace valgrind-3.8.1-cfi_dw_ops.patch with version as committed upstream.
2bf70d
- Remove erroneous printf change from valgrind-3.8.1-abbrev-parsing.patch.
2bf70d
- Add scalar testcase change to valgrind-3.8.1-capget.patch.
2bf70d
2bf70d
* Thu Sep 20 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-1
2bf70d
- Add partial backport of upstream revision 12884
2bf70d
  valgrind-3.8.0-memcheck-mc_translate-Iop_8HLto16.patch
2bf70d
  without it AVX2 VPBROADCASTB insn is broken under memcheck.
2bf70d
- Add valgrind-3.8.0-cfi_dw_ops.patch (KDE#307038)
2bf70d
  DWARF2 CFI reader: unhandled DW_OP_ opcode 0x8 (DW_OP_const1u and friends)
2bf70d
- Add valgrind-3.8.0-avx2-prereq.patch.
2bf70d
- Remove accidentially included diffs for gdbserver_tests and helgrind/tests
2bf70d
  Makefile.in from valgrind-3.8.0-avx2-bmi-fma.patch.gz
2bf70d
- Remove valgrind-3.8.0-tests.patch tests no longer hang.
2bf70d
- Added SCL macros to support building as part of a Software Collection.
2bf70d
- Upgrade to valgrind 3.8.1.
2bf70d
2bf70d
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-8
2bf70d
- Add configure fixup valgrind-3.8.0-bmi-conf-check.patch
2bf70d
2bf70d
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-7
2bf70d
- Add valgrind-3.8.0-avx2-bmi-fma.patch (KDE#305728)
2bf70d
2bf70d
* Tue Sep 11 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-6
2bf70d
- Add valgrind-3.8.0-lzcnt-tzcnt-bugfix.patch (KDE#295808)
2bf70d
- Add valgrind-3.8.0-avx-alignment-check.patch (KDE#305926)
2bf70d
2bf70d
* Mon Aug 27 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-5
2bf70d
- Add valgrind-3.8.0-abbrev-parsing.patch for #849783 (KDE#305513).
2bf70d
2bf70d
* Sun Aug 19 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-4
2bf70d
- Add valgrind-3.8.0-find-buildid.patch workaround bug #849435 (KDE#305431).
2bf70d
2bf70d
* Wed Aug 15 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-3
2bf70d
- fix up last change
2bf70d
2bf70d
* Wed Aug 15 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-2
2bf70d
- tweak up <valgrind/config.h> to allow simultaneous installation
2bf70d
  of valgrind-devel.{i686,x86_64} (#848146)
2bf70d
2bf70d
* Fri Aug 10 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-1
2bf70d
- update to 3.8.0 release
2bf70d
- from CFLAGS/CXXFLAGS filter just fortification flags, not arch
2bf70d
  specific flags
2bf70d
- on i?86 prefer to use CFI over %%ebp unwinding, as GCC 4.6+
2bf70d
  defaults to -fomit-frame-pointer
2bf70d
2bf70d
* Tue Aug 07 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-0.1.TEST1.svn12858
2bf70d
- Update to 3.8.0-TEST1
2bf70d
- Clear CFLAGS CXXFLAGS LDFLAGS.
2bf70d
- Fix \ line continuation in configure line.
2bf70d
2bf70d
* Fri Aug 03 2012 Mark Wielaard <mjw@redhat.com> 3.7.0-7
2bf70d
- Fixup shadowing warnings valgrind-3.7.0-dwz.patch
2bf70d
- Add valgrind-3.7.0-ref_addr.patch (#842659, KDE#298864)
2bf70d
2bf70d
* Wed Jul 25 2012 Mark Wielaard <mjw@redhat.com> 3.7.0-6
2bf70d
- handle dwz DWARF compressor output (#842659, KDE#302901)
2bf70d
- allow glibc 2.16.
2bf70d
2bf70d
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.7.0-5
2bf70d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2bf70d
2bf70d
* Mon May  7 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-4
2bf70d
- adjust suppressions so that it works even with ld-2.15.so (#806854)
2bf70d
- handle DW_TAG_unspecified_type and DW_TAG_rvalue_reference_type
2bf70d
  (#810284, KDE#278313)
2bf70d
- handle .debug_types sections (#810286, KDE#284124)
2bf70d
2bf70d
* Sun Mar  4 2012 Peter Robinson <pbrobinson@fedoraproject.org> 3.7.0-2
2bf70d
- Fix building on ARM platform
2bf70d
2bf70d
* Fri Jan 27 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-1
2bf70d
- update to 3.7.0 (#769213, #782910, #772343)
2bf70d
- handle some further SCSI ioctls (#783936)
2bf70d
- handle fcntl F_SETOWN_EX and F_GETOWN_EX (#770746)
2bf70d
2bf70d
* Wed Aug 17 2011 Adam Jackson <ajax@redhat.com> 3.6.1-6
2bf70d
- rebuild for rpm 4.9.1 trailing / bug
2bf70d
2bf70d
* Thu Jul 21 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-5
2bf70d
- handle PLT unwind info (#723790, KDE#277045)
2bf70d
2bf70d
* Mon Jun 13 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-4
2bf70d
- fix memcpy/memmove redirection on x86_64 (#705790)
2bf70d
2bf70d
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-3
2bf70d
- fix testing against glibc 2.14
2bf70d
2bf70d
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-2
2bf70d
- fix build on ppc64 (#711608)
2bf70d
- don't fail if s390x support patch hasn't been applied,
2bf70d
  move testing into %%check (#708522)
2bf70d
- rebuilt against glibc 2.14
2bf70d
2bf70d
* Wed Feb 23 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-1
2bf70d
- update to 3.6.1
2bf70d
2bf70d
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.6.0-3
2bf70d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2bf70d
2bf70d
* Fri Jan 28 2011 Jakub Jelinek <jakub@redhat.com> 3.6.0-2
2bf70d
- rebuilt against glibc 2.13 (#673046)
2bf70d
- hook in pwrite64 syscall on ppc64 (#672858)
2bf70d
- fix PIE handling on ppc/ppc64 (#665289)
2bf70d
2bf70d
* Fri Nov 12 2010 Jakub Jelinek <jakub@redhat.com> 3.6.0-1
2bf70d
- update to 3.6.0
2bf70d
- add s390x support (#632354)
2bf70d
- provide a replacement for str{,n}casecmp{,_l} (#626470)
2bf70d
2bf70d
* Tue May 18 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-18
2bf70d
- rebuilt against glibc 2.12
2bf70d
2bf70d
* Mon Apr 12 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-16
2bf70d
- change pub_tool_basics.h not to include config.h (#579283)
2bf70d
- add valgrind-openmpi package for OpenMPI support (#565541)
2bf70d
- allow NULL second argument to capget (#450976)
2bf70d
2bf70d
* Wed Apr  7 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-15
2bf70d
- handle i686 nopw insns with more than one data16 prefix (#574889)
2bf70d
- DWARF4 support
2bf70d
- handle getcpu and splice syscalls
2bf70d
2bf70d
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-14
2bf70d
- fix build against latest glibc headers
2bf70d
2bf70d
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-13
2bf70d
- DW_OP_mod is unsigned modulus instead of signed
2bf70d
- fix up valgrind.pc (#551277)
2bf70d
2bf70d
* Mon Dec 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-12
2bf70d
- don't require offset field to be set in adjtimex's
2bf70d
  ADJ_OFFSET_SS_READ mode (#545866)
2bf70d
2bf70d
* Wed Dec  2 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-10
2bf70d
- add handling of a bunch of recent syscalls and fix some
2bf70d
  other syscall wrappers (Dodji Seketeli)
2bf70d
- handle prelink created split of .bss into .dynbss and .bss
2bf70d
  and similarly for .sbss and .sdynbss (#539874)
2bf70d
2bf70d
* Wed Nov  4 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-9
2bf70d
- rebuilt against glibc 2.11
2bf70d
- use upstream version of the ifunc support
2bf70d
2bf70d
* Wed Oct 28 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-8
2bf70d
- add preadv/pwritev syscall support
2bf70d
2bf70d
* Tue Oct 27 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-7
2bf70d
- add perf_counter_open syscall support (#531271)
2bf70d
- add handling of some sbb/adc insn forms on x86_64 (KDE#211410)
2bf70d
2bf70d
* Fri Oct 23 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-6
2bf70d
- ppc and ppc64 fixes
2bf70d
2bf70d
* Thu Oct 22 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-5
2bf70d
- add emulation of 0x67 prefixed loop* insns on x86_64 (#530165)
2bf70d
2bf70d
* Wed Oct 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-4
2bf70d
- handle reading of .debug_frame in addition to .eh_frame
2bf70d
- ignore unknown DWARF3 expressions in evaluate_trivial_GX
2bf70d
- suppress helgrind race errors in helgrind's own mythread_wrapper
2bf70d
- fix compilation of x86 tests on x86_64 and ppc tests
2bf70d
2bf70d
* Wed Oct 14 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-3
2bf70d
- handle many more DW_OP_* ops that GCC now uses
2bf70d
- handle the more compact form of DW_AT_data_member_location
2bf70d
- don't strip .debug_loc etc. from valgrind binaries
2bf70d
2bf70d
* Mon Oct 12 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-2
2bf70d
- add STT_GNU_IFUNC support (Dodji Seketeli, #518247)
2bf70d
- wrap inotify_init1 syscall (Dodji Seketeli, #527198)
2bf70d
- fix mmap/mprotect handling in memcheck (KDE#210268)
2bf70d
2bf70d
* Fri Aug 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-1
2bf70d
- update to 3.5.0
2bf70d
2bf70d
* Tue Jul 28 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-7
2bf70d
- handle futex ops newly added during last 4 years (#512121)
2bf70d
2bf70d
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 3.4.1-6
2bf70d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2bf70d
2bf70d
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-5
2bf70d
- add support for DW_CFA_{remember,restore}_state
2bf70d
2bf70d
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-4
2bf70d
- handle version 3 .debug_frame, .eh_frame, .debug_info and
2bf70d
  .debug_line (#509197)
2bf70d
2bf70d
* Mon May 11 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-3
2bf70d
- rebuilt against glibc 2.10.1
2bf70d
2bf70d
* Wed Apr 22 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-2
2bf70d
- redirect x86_64 ld.so strlen early (#495645)
2bf70d
2bf70d
* Mon Mar  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-1
2bf70d
- update to 3.4.1
2bf70d
2bf70d
* Mon Feb  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.0-3
2bf70d
- update to 3.4.0
2bf70d
2bf70d
* Wed Apr 16 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-3
2bf70d
- add suppressions for glibc 2.8
2bf70d
- add a bunch of syscall wrappers (#441709)
2bf70d
2bf70d
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-2
2bf70d
- add _dl_start suppression for ppc/ppc64
2bf70d
2bf70d
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-1
2bf70d
- update to 3.3.0
2bf70d
- split off devel bits into valgrind-devel subpackage
2bf70d
2bf70d
* Thu Oct 18 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-7
2bf70d
- add suppressions for glibc >= 2.7
2bf70d
2bf70d
* Fri Aug 31 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-6
2bf70d
- handle new x86_64 nops (#256801, KDE#148447)
2bf70d
- add support for private futexes (KDE#146781)
2bf70d
- update License tag
2bf70d
2bf70d
* Fri Aug  3 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-5
2bf70d
- add ppc64-linux symlink in valgrind ppc.rpm, so that when
2bf70d
  rpm prefers 32-bit binaries over 64-bit ones 32-bit
2bf70d
  /usr/bin/valgrind can find 64-bit valgrind helper binaries
2bf70d
  (#249773)
2bf70d
- power5+ and power6 support (#240762)
2bf70d
2bf70d
* Thu Jun 28 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-4
2bf70d
- pass GDB=%%{_prefix}/gdb to configure to fix default
2bf70d
  --db-command (#220840)
2bf70d
2bf70d
* Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-3
2bf70d
- add suppressions for glibc >= 2.6
2bf70d
- avoid valgrind internal error if io_destroy syscall is
2bf70d
  passed a bogus argument
2bf70d
2bf70d
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-2
2bf70d
- fix valgrind.pc again
2bf70d
2bf70d
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-1
2bf70d
- update to 3.2.3
2bf70d
2bf70d
* Wed Nov  8 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-7
2bf70d
- some cachegrind improvements (Ulrich Drepper)
2bf70d
2bf70d
* Mon Nov  6 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-6
2bf70d
- fix valgrind.pc (#213149)
2bf70d
- handle Intel Core2 cache sizes in cachegrind (Ulrich Drepper)
2bf70d
2bf70d
* Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-5
2bf70d
- fix valgrind on ppc/ppc64 where PAGESIZE is 64K (#211598)
2bf70d
2bf70d
* Sun Oct  1 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-4
2bf70d
- adjust for glibc-2.5
2bf70d
2bf70d
* Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-3
2bf70d
- another DW_CFA_set_loc handling fix
2bf70d
2bf70d
* Tue Sep 26 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-2
2bf70d
- fix openat handling (#208097)
2bf70d
- fix DW_CFA_set_loc handling
2bf70d
2bf70d
* Tue Sep 19 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-1
2bf70d
- update to 3.2.1 bugfix release
2bf70d
  - SSE3 emulation fixes, reduce memcheck false positive rate,
2bf70d
    4 dozens of bugfixes
2bf70d
2bf70d
* Mon Aug 21 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-5
2bf70d
- handle the new i686/x86_64 nops (#203273)
2bf70d
2bf70d
* Fri Jul 28 2006 Jeremy Katz <katzj@redhat.com> - 1:3.2.0-4
2bf70d
- rebuild to bring ppc back
2bf70d
2bf70d
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.2.0-3.1
2bf70d
- rebuild
2bf70d
2bf70d
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-3
2bf70d
- handle [sg]et_robust_list syscall on ppc{32,64}
2bf70d
2bf70d
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-2
2bf70d
- fix ppc64 symlink to 32-bit valgrind libdir
2bf70d
- handle a few extra ppc64 syscalls
2bf70d
2bf70d
* Thu Jun 15 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-1
2bf70d
- update to 3.2.0
2bf70d
  - ppc64 support
2bf70d
2bf70d
* Fri May 26 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-3
2bf70d
- handle [sg]et_robust_list syscalls on i?86/x86_64
2bf70d
- handle *at syscalls on ppc
2bf70d
- ensure on x86_64 both 32-bit and 64-bit glibc{,-devel} are
2bf70d
  installed in the buildroot (#191820)
2bf70d
2bf70d
* Wed Apr 12 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-2
2bf70d
- handle many syscalls that were unhandled before, especially on ppc
2bf70d
2bf70d
* Mon Apr  3 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-1
2bf70d
- upgrade to 3.1.1
2bf70d
  - many bugfixes
2bf70d
2bf70d
* Mon Mar 13 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-2
2bf70d
- add support for DW_CFA_val_offset{,_sf}, DW_CFA_def_cfa_sf
2bf70d
  and skip over DW_CFA_val_expression quietly
2bf70d
- adjust libc/ld.so filenames in glibc-2.4.supp for glibc 2.4
2bf70d
  release
2bf70d
2bf70d
* Mon Jan  9 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-1
2bf70d
- upgrade to 3.1.0 (#174582)
2bf70d
  - many bugfixes, ppc32 support
2bf70d
2bf70d
* Thu Oct 13 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-2
2bf70d
- remove Obsoletes for valgrind-callgrind, as it has been
2bf70d
  ported to valgrind 3.0.x already
2bf70d
2bf70d
* Sun Sep 11 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-1
2bf70d
- upgrade to 3.0.1
2bf70d
  - many bugfixes
2bf70d
- handle xattr syscalls on x86-64 (Ulrich Drepper)
2bf70d
2bf70d
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-3
2bf70d
- fix amd64 handling of cwtd instruction
2bf70d
- fix amd64 handling of e.g. sarb $0x4,val(%%rip)
2bf70d
- speedup amd64 insn decoding
2bf70d
2bf70d
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-2
2bf70d
- lower x86_64 stage2 base from 112TB down to 450GB, so that
2bf70d
  valgrind works even on 2.4.x kernels.  Still way better than
2bf70d
  1.75GB that stock valgrind allows
2bf70d
2bf70d
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-1
2bf70d
- upgrade to 3.0.0
2bf70d
  - x86_64 support
2bf70d
- temporarily obsolete valgrind-callgrind, as it has not been
2bf70d
  ported yet
2bf70d
2bf70d
* Tue Jul 12 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-3
2bf70d
- build some insn tests with -mmmx, -msse or -msse2 (#161572)
2bf70d
- handle glibc-2.3.90 the same way as 2.3.[0-5]
2bf70d
2bf70d
* Wed Mar 30 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-2
2bf70d
- resurrect the non-upstreamed part of valgrind_h patch
2bf70d
- remove 2.1.2-4G patch, seems to be upstreamed
2bf70d
- resurrect passing -fno-builtin in memcheck tests
2bf70d
2bf70d
* Sun Mar 27 2005 Colin Walters <walters@redhat.com> 2.4.0-1
2bf70d
- New upstream version 
2bf70d
- Update valgrind-2.2.0-regtest.patch to 2.4.0; required minor
2bf70d
  massaging
2bf70d
- Disable valgrind-2.1.2-4G.patch for now; Not going to touch this,
2bf70d
  and Fedora does not ship 4G kernel by default anymore
2bf70d
- Remove upstreamed valgrind-2.2.0.ioctls.patch
2bf70d
- Remove obsolete valgrind-2.2.0-warnings.patch; Code is no longer
2bf70d
  present
2bf70d
- Remove upstreamed valgrind-2.2.0-valgrind_h.patch
2bf70d
- Remove obsolete valgrind-2.2.0-unnest.patch and
2bf70d
  valgrind-2.0.0-pthread-stacksize.patch; valgrind no longer
2bf70d
  includes its own pthread library
2bf70d
2bf70d
* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-10
2bf70d
- rebuilt with GCC 4
2bf70d
2bf70d
* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-8
2bf70d
- avoid unnecessary use of nested functions for pthread_once
2bf70d
  cleanup
2bf70d
2bf70d
* Mon Dec  6 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-7
2bf70d
- update URL (#141873)
2bf70d
2bf70d
* Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-6
2bf70d
- act as if NVALGRIND is defined when using <valgrind.h>
2bf70d
  in non-m32/i386 programs (#138923)
2bf70d
- remove weak from VALGRIND_PRINTF*, make it static and
2bf70d
  add unused attribute
2bf70d
2bf70d
* Mon Nov  8 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-4
2bf70d
- fix a printout and possible problem with local variable
2bf70d
  usage around setjmp (#138254)
2bf70d
2bf70d
* Tue Oct  5 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-3
2bf70d
- remove workaround for buggy old makes (#134563)
2bf70d
2bf70d
* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-2
2bf70d
- handle some more ioctls (Peter Jones, #131967)
2bf70d
2bf70d
* Thu Sep  2 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-1
2bf70d
- update to 2.2.0
2bf70d
2bf70d
* Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-3
2bf70d
- fix packaging of documentation
2bf70d
2bf70d
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-2
2bf70d
- allow tracing of 32-bit binaries on x86-64
2bf70d
2bf70d
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-1
2bf70d
- update to 2.1.2
2bf70d
- run make regtest as part of package build
2bf70d
- use glibc-2.3 suppressions instead of glibc-2.2 suppressions
2bf70d
2bf70d
* Thu Apr 29 2004 Colin Walters <walters@redhat.com> 2.0.0-1
2bf70d
- update to 2.0.0
2bf70d
2bf70d
* Tue Feb 25 2003 Jeff Johnson <jbj@redhat.com> 1.9.4-0.20030228
2bf70d
- update to 1.9.4 from CVS.
2bf70d
- dwarf patch from Graydon Hoare.
2bf70d
- sysinfo patch from Graydon Hoare, take 1.
2bf70d
2bf70d
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-6.20030207
2bf70d
- add return codes to syscalls.
2bf70d
- fix: set errno after syscalls.
2bf70d
2bf70d
* Tue Feb 11 2003 Graydon Hoare <graydon@redhat.com> 1.9.3-5.20030207
2bf70d
- add handling for separate debug info (+fix).
2bf70d
- handle blocking readv/writev correctly.
2bf70d
- comment out 4 overly zealous pthread checks.
2bf70d
2bf70d
* Tue Feb 11 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-4.20030207
2bf70d
- move _pthread_desc to vg_include.h.
2bf70d
- implement pthread_mutex_timedlock().
2bf70d
- implement pthread_barrier_wait().
2bf70d
2bf70d
* Mon Feb 10 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-3.20030207
2bf70d
- import all(afaik) missing functionality from linuxthreads.
2bf70d
2bf70d
* Sun Feb  9 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-2.20030207
2bf70d
- import more missing functionality from linuxthreads in glibc-2.3.1.
2bf70d
2bf70d
* Sat Feb  8 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-1.20030207
2bf70d
- start fixing nptl test cases.
2bf70d
2bf70d
* Fri Feb  7 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-0.20030207
2bf70d
- build against current 1.9.3 with nptl hacks.
2bf70d
2bf70d
* Tue Oct 15 2002 Alexander Larsson <alexl@redhat.com>
2bf70d
- Update to 1.0.4
2bf70d
2bf70d
* Fri Aug  9 2002 Alexander Larsson <alexl@redhat.com>
2bf70d
- Update to 1.0.0
2bf70d
2bf70d
* Wed Jul  3 2002 Alexander Larsson <alexl@redhat.com>
2bf70d
- Update to pre4.
2bf70d
2bf70d
* Tue Jun 18 2002 Alexander Larsson <alla@lysator.liu.se>
2bf70d
- Add threadkeys and extra suppressions patches. Bump epoch.
2bf70d
2bf70d
* Mon Jun 17 2002 Alexander Larsson <alla@lysator.liu.se>
2bf70d
- Updated to 1.0pre1
2bf70d
2bf70d
* Tue May 28 2002 Alex Larsson <alexl@redhat.com>
2bf70d
- Updated to 20020524. Added GLIBC_PRIVATE patch
2bf70d
2bf70d
* Thu May  9 2002 Jonathan Blandford <jrb@redhat.com>
2bf70d
- add missing symbol __pthread_clock_settime
2bf70d
2bf70d
* Wed May  8 2002 Alex Larsson <alexl@redhat.com>
2bf70d
- Update to 20020508
2bf70d
2bf70d
* Mon May  6 2002 Alex Larsson <alexl@redhat.com>
2bf70d
- Update to 20020503b
2bf70d
2bf70d
* Thu May  2 2002 Alex Larsson <alexl@redhat.com>
2bf70d
- update to new snapshot
2bf70d
2bf70d
* Mon Apr 29 2002 Alex Larsson <alexl@redhat.com> 20020428-1
2bf70d
- update to new snapshot
2bf70d
2bf70d
* Fri Apr 26 2002 Jeremy Katz <katzj@redhat.com> 20020426-1
2bf70d
- update to new snapshot
2bf70d
2bf70d
* Thu Apr 25 2002 Alex Larsson <alexl@redhat.com> 20020424-5
2bf70d
- Added stack patch. Commented out other patches.
2bf70d
2bf70d
* Wed Apr 24 2002 Nalin Dahyabhai <nalin@redhat.com> 20020424-4
2bf70d
- filter out GLIBC_PRIVATE requires, add preload patch
2bf70d
2bf70d
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-3
2bf70d
- Make glibc 2.2 and XFree86 4 the default supressions
2bf70d
2bf70d
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-2
2bf70d
- Added patch that includes atomic.h
2bf70d
2bf70d
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-1
2bf70d
- Initial build