Blame SPECS/valgrind.spec

8febcd
%{?scl:%scl_package valgrind}
8febcd
8febcd
Summary: Tool for finding memory management bugs in programs
8febcd
Name: %{?scl_prefix}valgrind
8febcd
Version: 3.17.0
8febcd
Release: 4%{?dist}
8febcd
Epoch: 1
8febcd
License: GPLv2+
8febcd
URL: http://www.valgrind.org/
8febcd
8febcd
# Only necessary for RHEL, will be ignored on Fedora
8febcd
8febcd
# Are we building for a Software Collection?
8febcd
%{?scl:%global is_scl 1}
8febcd
%{!?scl:%global is_scl 0}
8febcd
8febcd
# We never want the openmpi subpackage when building a software collecton.
8febcd
# We always want it for fedora.
8febcd
# We only want it for older rhel. But not s390x for too old rhel.
8febcd
%if %{is_scl}
8febcd
  %global build_openmpi 0
8febcd
%else
8febcd
  %if 0%{?fedora}
8febcd
    %global build_openmpi 1
8febcd
  %endif
8febcd
  %if 0%{?rhel}
8febcd
    %if 0%{?rhel} > 7
8febcd
      %global build_openmpi 0
8febcd
    %else
8febcd
      %ifarch s390x
8febcd
	%global build_openmpi (%{?rhel} > 6)
8febcd
      %else
8febcd
	%global build_openmpi 1
8febcd
      %endif
8febcd
    %endif
8febcd
  %endif
8febcd
%endif
8febcd
8febcd
# We only want to build the valgrind-tools-devel package for Fedora proper
8febcd
# as convenience. But not for DTS or RHEL.
8febcd
%if %{is_scl}
8febcd
  %global build_tools_devel 0
8febcd
%else
8febcd
  %if 0%{?rhel}
8febcd
    %global build_tools_devel 0
8febcd
  %else
8febcd
    %global build_tools_devel 1
8febcd
  %endif
8febcd
%endif
8febcd
8febcd
# Whether to run the full regtest or only a limited set
8febcd
# The full regtest includes gdb_server integration tests
8febcd
# and experimental tools.
8febcd
# Only run full regtests on fedora, but not on older rhel
8febcd
# or when creating scl, the gdb_server tests might hang.
8febcd
%if %{is_scl}
8febcd
  %global run_full_regtest 0
8febcd
%else
8febcd
  %if 0%{?fedora}
8febcd
    %global run_full_regtest 1
8febcd
  %endif
8febcd
  %if 0%{?rhel}
8febcd
    %global run_full_regtest (%rhel >= 7)
8febcd
  %endif
8febcd
%endif
8febcd
8febcd
# Generating minisymtabs doesn't really work for the staticly linked
8febcd
# tools. Note (below) that we don't strip the vgpreload libraries at all
8febcd
# because valgrind might read and need the debuginfo in those (client)
8febcd
# libraries for better error reporting and sometimes correctly unwinding.
8febcd
# So those will already have their full symbol table.
8febcd
%undefine _include_minidebuginfo
8febcd
8febcd
Source0: ftp://sourceware.org/pub/valgrind/valgrind-%{version}.tar.bz2
8febcd
8febcd
# Needs investigation and pushing upstream
8febcd
Patch1: valgrind-3.9.0-cachegrind-improvements.patch
8febcd
8febcd
# KDE#211352 - helgrind races in helgrind's own mythread_wrapper
8febcd
Patch2: valgrind-3.9.0-helgrind-race-supp.patch
8febcd
8febcd
# Make ld.so supressions slightly less specific.
8febcd
Patch3: valgrind-3.9.0-ldso-supp.patch
8febcd
8febcd
# Add some stack-protector
8febcd
Patch4: valgrind-3.16.0-some-stack-protector.patch
8febcd
8febcd
# Add some -Wl,z,now.
8febcd
Patch5: valgrind-3.16.0-some-Wl-z-now.patch
8febcd
8febcd
# Upstream commits that provide additional ppc64le ISA 3.1 support
8febcd
# commit 3cc0232c46a5905b4a6c2fbd302b58bf5f90b3d5
8febcd
# PPC64: ISA 3.1 VSX PCV Generate Operations
8febcd
# commit 078f89e99b6f62e043f6138c6a7ae238befc1f2a
8febcd
# PPC64: Reduced-Precision bfloat16 Outer Product & Format Conversion Operations
8febcd
# commit e09fdaf569b975717465ed8043820d0198d4d47d
8febcd
# PPC64: Reduced-Precision: Missing Integer-based Outer Product Operations
8febcd
Patch6: valgrind-3.17.0-ppc64-isa-3.1.patch
8febcd
8febcd
# Upstream commits that provide extra tests for ppc64le ISA 3.1 support
8febcd
# commit c8fa838be405d7ac43035dcf675bf490800c26ec
8febcd
# Reduced Precision bfloat16 outer product tests
8febcd
# commit 4bcc6c8a97c10c4dd41b35bd3b3035ec4037d524
8febcd
# VSX Permute Control Vector Generate Operation tests.
8febcd
# commit c589b652939655090c005a982a71f50c489fb5ce
8febcd
# Reduced precision Missing Integer based outer tests
8febcd
Patch7: valgrind-3.17.0-ppc64-isa-3.1-tests.patch
8febcd
8febcd
# commit 45873298ff2d17accc65654d64758360616aade5
8febcd
# s390x: Add missing UNOP insns to s390_insn_as_string
8febcd
Patch8: valgrind-3.17.0-s390_insn_as_string.patch
8febcd
8febcd
# KDE#435908 Don't look for separate debuginfo if image already has .debug_info
8febcd
Patch9: valgrind-3.17.0-debuginfod.patch
8febcd
8febcd
# KDE#423963 Only process clone results in the parent thread
8febcd
Patch10: valgrind-3.17.0-clone-parent-res.patch
8febcd
8febcd
BuildRequires: make
8febcd
BuildRequires: glibc-devel
8febcd
8febcd
%if %{build_openmpi}
8febcd
BuildRequires: openmpi-devel
8febcd
%endif
8febcd
8febcd
%if %{run_full_regtest}
8febcd
BuildRequires: gdb
8febcd
%endif
8febcd
8febcd
# gdbserver_tests/filter_make_empty uses ps in test
8febcd
BuildRequires: procps
8febcd
8febcd
# Some testcases require g++ to build
8febcd
BuildRequires: gcc-c++
8febcd
8febcd
# check_headers_and_includes uses Getopt::Long
8febcd
%if 0%{?fedora}
8febcd
BuildRequires: perl-generators
8febcd
%endif
8febcd
BuildRequires: perl(Getopt::Long)
8febcd
8febcd
# We always autoreconf
8febcd
BuildRequires: automake
8febcd
BuildRequires: autoconf
8febcd
8febcd
# For make check validating the documentation
8febcd
BuildRequires: docbook-dtds
8febcd
8febcd
# configure might use which
8febcd
BuildRequires: which
8febcd
8febcd
# For testing debuginfod-find
8febcd
%if 0%{?fedora} > 29 || 0%{?rhel} > 7
8febcd
BuildRequires: elfutils-debuginfod-client
8febcd
# For using debuginfod at runtime
8febcd
Recommends: elfutils-debuginfod-client
8febcd
%endif
8febcd
8febcd
%{?scl:Requires:%scl_runtime}
8febcd
8febcd
# We need to fixup selinux file context when doing a scl build.
8febcd
# In RHEL6 we might need to fix up the labels even though the
8febcd
# meta package sets up a fs equivalence. See post.
8febcd
%if 0%{?rhel} == 6
8febcd
%{?scl:Requires(post): /sbin/restorecon}
8febcd
%endif
8febcd
8febcd
# We could use %%valgrind_arches as defined in redhat-rpm-config
8febcd
# But that is really for programs using valgrind, it defines the
8febcd
# set of architectures that valgrind works correctly on.
8febcd
ExclusiveArch: %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64
8febcd
8febcd
# Define valarch, the architecture name that valgrind uses
8febcd
# And only_arch, the configure option to only build for that arch.
8febcd
%ifarch %{ix86}
8febcd
%define valarch x86
8febcd
%define only_arch --enable-only32bit
8febcd
%endif
8febcd
%ifarch x86_64
8febcd
%define valarch amd64
8febcd
%define only_arch --enable-only64bit
8febcd
%endif
8febcd
%ifarch ppc
8febcd
%define valarch ppc32
8febcd
%define only_arch --enable-only32bit
8febcd
%endif
8febcd
%ifarch ppc64
8febcd
%define valarch ppc64be
8febcd
%define only_arch --enable-only64bit
8febcd
%endif
8febcd
%ifarch ppc64le
8febcd
%define valarch ppc64le
8febcd
%define only_arch --enable-only64bit
8febcd
%endif
8febcd
%ifarch s390x
8febcd
%define valarch s390x
8febcd
%define only_arch --enable-only64bit
8febcd
%endif
8febcd
%ifarch armv7hl
8febcd
%define valarch arm
8febcd
%define only_arch --enable-only32bit
8febcd
%endif
8febcd
%ifarch aarch64
8febcd
%define valarch arm64
8febcd
%define only_arch --enable-only64bit
8febcd
%endif
8febcd
8febcd
%description
8febcd
Valgrind is an instrumentation framework for building dynamic analysis
8febcd
tools. There are Valgrind tools that can automatically detect many
8febcd
memory management and threading bugs, and profile your programs in
8febcd
detail. You can also use Valgrind to build new tools. The Valgrind
8febcd
distribution currently includes six production-quality tools: a memory
8febcd
error detector (memcheck, the default tool), two thread error
8febcd
detectors (helgrind and drd), a cache and branch-prediction profiler
8febcd
(cachegrind), a call-graph generating cache and branch-prediction
8febcd
profiler (callgrind), and a heap profiler (massif).
8febcd
8febcd
%package devel
8febcd
Summary: Development files for valgrind aware programs
8febcd
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
8febcd
8febcd
%description devel
8febcd
Header files and libraries for development of valgrind aware programs.
8febcd
8febcd
%if %{build_tools_devel}
8febcd
%package tools-devel
8febcd
Summary: Development files for building valgrind tools.
8febcd
Requires: %{?scl_prefix}valgrind-devel = %{epoch}:%{version}-%{release}
8febcd
Provides: %{name}-static = %{epoch}:%{version}-%{release}
8febcd
8febcd
%description tools-devel
8febcd
Header files and libraries for development of valgrind tools.
8febcd
%endif
8febcd
8febcd
%if %{build_openmpi}
8febcd
%package openmpi
8febcd
Summary: OpenMPI support for valgrind
8febcd
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
8febcd
8febcd
%description openmpi
8febcd
A wrapper library for debugging OpenMPI parallel programs with valgrind.
8febcd
See the section on Debugging MPI Parallel Programs with Valgrind in the
8febcd
Valgrind User Manual for details.
8febcd
%endif
8febcd
8febcd
%prep
8febcd
%setup -q -n %{?scl:%{pkg_name}}%{!?scl:%{name}}-%{version}
8febcd
8febcd
%patch1 -p1
8febcd
%patch2 -p1
8febcd
%patch3 -p1
8febcd
8febcd
# Old rhel gcc doesn't have -fstack-protector-strong.
8febcd
%if 0%{?fedora} || 0%{?rhel} >= 7
8febcd
%patch4 -p1
8febcd
%patch5 -p1
8febcd
%endif
8febcd
8febcd
%patch6 -p1
8febcd
%patch7 -p1
8febcd
8febcd
%patch8 -p1
8febcd
%patch9 -p1
8febcd
%patch10 -p1
8febcd
8febcd
%build
8febcd
# LTO triggers undefined symbols in valgrind.  Valgrind has a --enable-lto
8febcd
# configure time option, but that doesn't seem to help.
8febcd
# Disable LTO for now.
8febcd
%define _lto_cflags %{nil}
8febcd
8febcd
# Some patches (might) touch Makefile.am or configure.ac files.
8febcd
# Just always autoreconf so we don't need patches to prebuild files.
8febcd
./autogen.sh
8febcd
8febcd
# Old openmpi-devel has version depended paths for mpicc.
8febcd
%if %{build_openmpi}
8febcd
%if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
8febcd
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/bin/mpicc
8febcd
%else
8febcd
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/*/bin/mpicc
8febcd
%endif
8febcd
%else
8febcd
# We explicitly don't want the libmpi wrapper. So make sure that configure
8febcd
# doesn't pick some random mpi compiler that happens to be installed.
8febcd
%define mpiccpath /bin/false
8febcd
%endif
8febcd
8febcd
# Filter out "hardening" flags that don't make sense for valgrind.
8febcd
# -fstack-protector just cannot work (valgrind would have to implement
8febcd
# its own version since it doesn't link with glibc and handles stack
8febcd
# setup itself). We patch some flags back in just for those helper
8febcd
# programs where it does make sense.
8febcd
#
8febcd
# -Wl,-z,now doesn't make sense for static linked tools
8febcd
# and would prevent using the vgpreload libraries on binaries that
8febcd
# don't link themselves against libraries (like pthread) which symbols
8febcd
# are needed (but only if the inferior itself would use them).
8febcd
#
8febcd
# -O2 doesn't work for the vgpreload libraries either. They are meant
8febcd
# to not be optimized to show precisely what happened. valgrind adds
8febcd
# -O2 itself wherever suitable.
8febcd
#
8febcd
# On ppc64[be] -fexceptions is troublesome.
8febcd
# It might cause an undefined reference to `_Unwind_Resume'
8febcd
# in libcoregrind-ppc64be-linux.a(libcoregrind_ppc64be_linux_a-readelf.o):
8febcd
# In function `read_elf_symtab__ppc64be_linux.
8febcd
#
8febcd
# Also disable strict symbol checks because the vg_preload library
8febcd
# will use hidden/undefined symbols from glibc like __libc_freeres.
8febcd
%undefine _strict_symbol_defs_build
8febcd
8febcd
%ifarch ppc64
8febcd
CFLAGS="`echo " %{optflags} " | sed 's/ -fstack-protector\([-a-z]*\) / / g;s/ -O2 / /g;s/ -fexceptions / /g;'`"
8febcd
%else
8febcd
CFLAGS="`echo " %{optflags} " | sed 's/ -fstack-protector\([-a-z]*\) / / g;s/ -O2 / /g;'`"
8febcd
%endif
8febcd
export CFLAGS
8febcd
8febcd
# Older Fedora/RHEL only had __global_ldflags.
8febcd
# Even older didn't even have that (so we don't need to scrub them).
8febcd
%if 0%{?build_ldflags:1}
8febcd
LDFLAGS="`echo " %{build_ldflags} "    | sed 's/ -Wl,-z,now / / g;'`"
8febcd
%else
8febcd
%if 0%{?__global_ldflags:1}
8febcd
LDFLAGS="`echo " %{__global_ldflags} " | sed 's/ -Wl,-z,now / / g;'`"
8febcd
%endif
8febcd
%endif
8febcd
export LDFLAGS
8febcd
8febcd
%configure \
8febcd
  --with-mpicc=%{mpiccpath} \
8febcd
  %{only_arch} \
8febcd
  GDB=%{_bindir}/gdb
8febcd
8febcd
make %{?_smp_mflags}
8febcd
8febcd
%install
8febcd
rm -rf $RPM_BUILD_ROOT
8febcd
make DESTDIR=$RPM_BUILD_ROOT install
8febcd
mkdir docs/installed
8febcd
mv $RPM_BUILD_ROOT%{_datadir}/doc/valgrind/* docs/installed/
8febcd
rm -f docs/installed/*.ps
8febcd
8febcd
# We want the MPI wrapper installed under the openmpi libdir so the script
8febcd
# generating the MPI library requires picks them up and sets up the right
8febcd
# openmpi libmpi.so requires. Install symlinks in the original/upstream
8febcd
# location for backwards compatibility.
8febcd
%if %{build_openmpi}
8febcd
pushd $RPM_BUILD_ROOT%{_libdir}
8febcd
mkdir -p openmpi/valgrind
8febcd
cd valgrind
8febcd
mv libmpiwrap-%{valarch}-linux.so ../openmpi/valgrind/
8febcd
ln -s ../openmpi/valgrind/libmpiwrap-%{valarch}-linux.so
8febcd
popd
8febcd
%endif
8febcd
8febcd
%if %{build_tools_devel}
8febcd
%ifarch %{ix86} x86_64
8febcd
# To avoid multilib clashes in between i?86 and x86_64,
8febcd
# tweak installed <valgrind/config.h> a little bit.
8febcd
for i in HAVE_PTHREAD_CREATE_GLIBC_2_0 HAVE_PTRACE_GETREGS HAVE_AS_AMD64_FXSAVE64; do
8febcd
  sed -i -e 's,^\(#define '$i' 1\|/\* #undef '$i' \*/\)$,#ifdef __x86_64__\n# define '$i' 1\n#endif,' \
8febcd
    $RPM_BUILD_ROOT%{_includedir}/valgrind/config.h
8febcd
done
8febcd
%endif
8febcd
%else
8febcd
# Remove files we aren't going to package.
8febcd
# See tools-devel files.
8febcd
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/config.h
8febcd
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/libvex*h
8febcd
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/pub_tool_*h
8febcd
rm -rf $RPM_BUILD_ROOT%{_includedir}/valgrind/vki
8febcd
rm $RPM_BUILD_ROOT%{_libdir}/valgrind/*.a
8febcd
%endif
8febcd
8febcd
# We don't want debuginfo generated for the vgpreload libraries.
8febcd
# Turn off execute bit so they aren't included in the debuginfo.list.
8febcd
# We'll turn the execute bit on again in %%files.
8febcd
chmod 644 $RPM_BUILD_ROOT%{_libexecdir}/valgrind/vgpreload*-%{valarch}-*so
8febcd
8febcd
%check
8febcd
# Make sure some info about the system is in the build.log
8febcd
# Add || true because rpm on copr EPEL6 acts weirdly and we don't want
8febcd
# to break the build.
8febcd
uname -a
8febcd
rpm -q glibc gcc binutils || true
8febcd
%if %{run_full_regtest}
8febcd
rpm -q gdb || true
8febcd
%endif
8febcd
8febcd
LD_SHOW_AUXV=1 /bin/true
8febcd
cat /proc/cpuinfo
8febcd
8febcd
# Make sure a basic binary runs. There should be no errors.
8febcd
./vg-in-place --error-exitcode=1 /bin/true --help
8febcd
8febcd
# Build the test files with the software collection compiler if available.
8febcd
%{?scl:PATH=%{_bindir}${PATH:+:${PATH}}}
8febcd
# Make sure no extra CFLAGS, CXXFLAGS or LDFLAGS leak through,
8febcd
# the testsuite sets all flags necessary. See also configure above.
8febcd
make %{?_smp_mflags} CFLAGS="" CXXFLAGS="" LDFLAGS="" check
8febcd
8febcd
# Workaround https://bugzilla.redhat.com/show_bug.cgi?id=1434601
8febcd
# for gdbserver tests.
8febcd
export PYTHONCOERCECLOCALE=0
8febcd
8febcd
echo ===============TESTING===================
8febcd
%if %{run_full_regtest}
8febcd
  make regtest || :
8febcd
%else
8febcd
  make nonexp-regtest || :
8febcd
%endif
8febcd
8febcd
# Make sure test failures show up in build.log
8febcd
# Gather up the diffs (at most the first 20 lines for each one)
8febcd
MAX_LINES=20
8febcd
diff_files=`find gdbserver_tests */tests -name '*.diff*' | sort`
8febcd
if [ z"$diff_files" = z ] ; then
8febcd
   echo "Congratulations, all tests passed!" >> diffs
8febcd
else
8febcd
   for i in $diff_files ; do
8febcd
      echo "=================================================" >> diffs
8febcd
      echo $i                                                  >> diffs
8febcd
      echo "=================================================" >> diffs
8febcd
      if [ `wc -l < $i` -le $MAX_LINES ] ; then
8febcd
         cat $i                                                >> diffs
8febcd
      else
8febcd
         head -n $MAX_LINES $i                                 >> diffs
8febcd
         echo "<truncated beyond $MAX_LINES lines>"            >> diffs
8febcd
      fi
8febcd
   done
8febcd
fi
8febcd
cat diffs
8febcd
echo ===============END TESTING===============
8febcd
8febcd
%files
8febcd
%doc COPYING NEWS README_*
8febcd
%doc docs/installed/html docs/installed/*.pdf
8febcd
%{_bindir}/*
8febcd
%dir %{_libexecdir}/valgrind
8febcd
# Install everything in the libdir except the .so.
8febcd
# The vgpreload so files might need file mode adjustment.
8febcd
%{_libexecdir}/valgrind/*[^o]
8febcd
# Turn on executable bit again for vgpreload libraries.
8febcd
# Was disabled in %%install to prevent debuginfo stripping.
8febcd
%attr(0755,root,root) %{_libexecdir}/valgrind/vgpreload*-%{valarch}-*so
8febcd
%{_mandir}/man1/*
8febcd
8febcd
%files devel
8febcd
%dir %{_includedir}/valgrind
8febcd
%{_includedir}/valgrind/valgrind.h
8febcd
%{_includedir}/valgrind/callgrind.h
8febcd
%{_includedir}/valgrind/drd.h
8febcd
%{_includedir}/valgrind/helgrind.h
8febcd
%{_includedir}/valgrind/memcheck.h
8febcd
%{_includedir}/valgrind/dhat.h
8febcd
%{_libdir}/pkgconfig/valgrind.pc
8febcd
8febcd
%if %{build_tools_devel}
8febcd
%files tools-devel
8febcd
%{_includedir}/valgrind/config.h
8febcd
%{_includedir}/valgrind/libvex*h
8febcd
%{_includedir}/valgrind/pub_tool_*h
8febcd
%{_includedir}/valgrind/vki
8febcd
%dir %{_libdir}/valgrind
8febcd
%{_libdir}/valgrind/*.a
8febcd
%endif
8febcd
8febcd
%if %{build_openmpi}
8febcd
%files openmpi
8febcd
%dir %{_libdir}/valgrind
8febcd
%{_libdir}/openmpi/valgrind/libmpiwrap*.so
8febcd
%{_libdir}/valgrind/libmpiwrap*.so
8febcd
%endif
8febcd
8febcd
%if 0%{?rhel} == 6
8febcd
%post
8febcd
# There is a bug in rpm (rhbz#214737) that might cause post to be run
8febcd
# even thought the binary isn't installed when installing two multilib
8febcd
# versions at the same time.
8febcd
if [ -x %{_bindir}/valgrind ]; then
8febcd
# On RHEL6 the fs equivalency should be setup by the devtoolset meta
8febcd
# package, but because of a rpm bug (rhbz#924044) it might not work.
8febcd
%{?scl:/sbin/restorecon %{_bindir}/valgrind}%{!?scl:true}
8febcd
fi
8febcd
%endif
8febcd
8febcd
%changelog
8febcd
* Thu Jun  3 2021 Mark Wielaard <mjw@redhat.com> - 3.17.0-4
8febcd
- Update to upstream 3.17.0 final.
8febcd
- Add valgrind-3.17.0-ppc64-isa-3.1{,tests}.patch
8febcd
- Add valgrind-3.17.0-s390_insn_as_string.patch
8febcd
- Add valgrind-3.17.0-debuginfod.patch
8febcd
- Add valgrind-3.17.0-clone-parent-res.patch
8febcd
8febcd
* Tue Aug 25 2020 Mark Wielaard <mjw@redhat.com> - 3.16.1-5
8febcd
- Add valgrind-3.16.1-dl_runtime_resolve.patch
8febcd
8febcd
* Tue Aug 18 2020 Mark Wielaard <mjw@redhat.com> - 3.16.1-4
8febcd
- Update valgrind-3.16.1-epoll.patch
8febcd
8febcd
* Tue Jul 28 2020 Mark Wielaard <mjw@redhat.com> - 3.16.1-3
8febcd
- Add valgrind-3.16.1-REX-prefix-JMP.patch
8febcd
- Add valgrind-3.16.1-epoll.patch
8febcd
- Add valgrind-3.16.1-sched_getsetattr.patch
8febcd
8febcd
* Wed Jul  8 2020 Jeff Law <law@redhat.org> - 3.16.1-2
8febcd
- Disable LTO
8febcd
8febcd
* Tue Jun 23 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-1
8febcd
- Update to upstream valgrind 3.16.1.
8febcd
8febcd
* Fri Jun 19 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-3
8febcd
- Add valgrind-3.16.0-ppc-L-field.patch
8febcd
8febcd
* Wed May 27 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-2
8febcd
- Apply stack-protector and -Wl,z,now patches.
8febcd
8febcd
* Wed May 27 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-1
8febcd
- Update to upstream valgrind 3.16.0 final.
8febcd
8febcd
* Tue May 19 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-0.4.RC2
8febcd
- Add docbook-dtds to BuildRequires.
8febcd
8febcd
* Tue May 19 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-0.3.RC2
8febcd
- Update to upstream 3.16.0 RC2
8febcd
8febcd
* Fri May  1 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-0.2.GIT
8febcd
- Update to upstream 3.16.0 branch point (commit 55cdb7c4e)
8febcd
8febcd
* Fri Apr 17 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-0.1.GIT
8febcd
- Update to upstream 3.16.0-GIT (commit 52d02fe23)
8febcd
  - Drop all streamed patches.
8febcd
8febcd
* Wed Mar  4 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-20
8febcd
- Add valgrind-3.15.0-z15.patch
8febcd
8febcd
* Fri Feb 28 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-19
8febcd
- Add valgrind-3.15.0-time64.patch
8febcd
- Add valgrind-3.15.0-arm-preadv2-pwritev2.patch
8febcd
- Add valgrind-3.15.0-avx_estimate_insn-test.patch
8febcd
- Add valgrind-3.15.0-gcc-10-x86-amd64-asm-test.patch
8febcd
8febcd
* Fri Feb 14 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-18
8febcd
- Add valgrind-3.15.0-ppc64-sigframe.patch
8febcd
8febcd
* Thu Feb 13 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-17
8febcd
- Add valgrind-3.15.0-glibc-dtv-supp.patch
8febcd
8febcd
* Wed Jan 29 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-16
8febcd
- Add valgrind-3.15.0-s390x-HRcVec128.patch
8febcd
8febcd
* Wed Jan 29 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-15
8febcd
- Don't use valgrind-3.15.0-ptrace-siginfo.patch on ppc64[le]
8febcd
- Add valgrind-3.15.0-s390x-compare-and-signal.patch
8febcd
8febcd
* Fri Jan 24 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-14
8febcd
- Add valgrind-3.15.0-gcc-10-i686-asm-test.patch
8febcd
- Add valgrind-3.15.0-gcc10-ppc64-asm-constraints.patch
8febcd
8febcd
* Thu Jan 23 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-13
8febcd
- Add valgrind-3.15.0-gcc-10-typedef-enum.patch
8febcd
8febcd
* Mon Sep 23 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-12
8febcd
- Add valgrind-3.15.0-ptrace-siginfo.patch
8febcd
8febcd
* Mon Aug  5 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-11
8febcd
- Add valgrind-3.15.0-preadv2-pwritev2.patch
8febcd
- Add valgrind-3.15.0-arm-membarrier.patch
8febcd
- Add valgrind-3.15.0-z14-misc.patch
8febcd
8febcd
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.15.0-10
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
8febcd
8febcd
* Wed May 29 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-9
8febcd
- Add valgrind-3.15.0-pkey.patch
8febcd
8febcd
* Tue May 28 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-8
8febcd
- Update valgrind-3.15.0-copy_file_range.patch.
8febcd
- Add valgrind-3.15.0-avx-rdrand-f16c.patch.
8febcd
8febcd
* Fri May 24 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-7
8febcd
- Update valgrind-3.15.0-some-stack-protector.patch to include getoff.
8febcd
- Add valgrind-3.15.0-some-Wl-z-now.patch
8febcd
8febcd
* Fri May 24 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-6
8febcd
- Add valgrind-3.15.0-s390x-wrap-drd.patch
8febcd
8febcd
* Mon May 20 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-5
8febcd
- Add valgrind-3.15.0-exp-sgcheck-no-aarch64.patch
8febcd
- Add valgrind-3.15.0-scalar-arm64.patch
8febcd
- Add valgrind-3.15.0-scalar-x86.patch
8febcd
8febcd
* Tue May  7 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-4
8febcd
- Add valgrind-3.15.0-arm64-ld-stpcpy.patch
8febcd
8febcd
* Sun May  5 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-3
8febcd
- Add valgrind-3.15.0-copy_file_range.patch
8febcd
8febcd
* Thu Apr 25 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-2
8febcd
- gdb has been fixed on fedora, run full regtests again.
8febcd
- Add valgrind-3.15.0-ppc64-filter_gdb.patch
8febcd
8febcd
* Tue Apr 16 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-1
8febcd
- On ppc64[be] -fexceptions is troublesome.
8febcd
- valgrind-3.15.0 final
8febcd
  Remove upstreamed patches
8febcd
  - valgrind-3.15.0-arm64-Ity_F16.patch
8febcd
  - valgrind-3.15.0-filter-libc-futex.patch
8febcd
  - valgrind-3.15.0-mmap-32bit.patch
8febcd
8febcd
* Sun Apr 14 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.8.RC2
8febcd
- Adding of stack-protector flag should only be done with newer gcc.
8febcd
- Older rpm macros didn't provide build_ldflags.
8febcd
- Add valgrind-3.15.0-arm64-Ity_F16.patch
8febcd
8febcd
* Sun Apr 14 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.7.RC2
8febcd
- Add valgrind-3.15.0-some-stack-protector.patch
8febcd
8febcd
* Sat Apr 13 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.6.RC2
8febcd
- Pass through most (hardening) flags, except -O2, -fstack-protector
8febcd
  and -Wl,-z,now.
8febcd
8febcd
* Fri Apr 12 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.5.RC2
8febcd
- No openmpi support on old s390x rhel.
8febcd
- Disable s390x z13 support on rhel6 (too old binutils).
8febcd
- Use an explicit ExclusiveArch, don't rely on %%valgrind_arches.
8febcd
- Drop close_fds, it is no longer needed.
8febcd
- Include any gdbserver_tests diffs for failing regtest.
8febcd
8febcd
* Thu Apr 11 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.4.RC2
8febcd
- Update to 3.15.0.RC2.
8febcd
- Drop upstreamed patches:
8febcd
  - valgrind-3.15.0-s390x-get-startregs-constraint.patch
8febcd
  - valgrind-3.15.0-missing-a-c.patch
8febcd
  - valgrind-3.15.0-libstdc++-supp.patch
8febcd
  - valgrind-3.15.0-dhat-x86.patch
8febcd
  - valgrind-3.15.0-gdb-output1.patch
8febcd
  - valgrind-3.15.0-gdb-output2.patch
8febcd
- Update valgrind-3.15.0-mmap-32bit.patch to upstream version.
8febcd
- gdb on f30 and rawhide is currently broken, don't run_full_regtest.
8febcd
- Any glibc-devel version is.
8febcd
- Drop rhel5 special case for tools-devel.
8febcd
- Use /bin/true --help as sanity test.
8febcd
8febcd
* Wed Apr 10 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.3.RC1
8febcd
- Enable full regtest on all fedora arches.
8febcd
- Make sure that patched a.c is not newer than cgout-test.
8febcd
- Update valgrind-3.15.0-gdb-output1.patch to upstream version.
8febcd
- Add valgrind-3.15.0-filter-libc-futex.patch.
8febcd
- Add valgrind-3.15.0-mmap-32bit.patch.
8febcd
8febcd
* Tue Apr  9 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.2.RC1
8febcd
- Add valgrind-3.15.0-s390x-get-startregs-constraint.patch
8febcd
- Add valgrind-3.15.0-missing-a-c.patch
8febcd
- Add valgrind-3.15.0-libstdc++-supp.patch
8febcd
- Add valgrind-3.15.0-dhat-x86.patch
8febcd
- Add valgrind-3.15.0-gdb-output1.patch
8febcd
- Add valgrind-3.15.0-gdb-output2.patch
8febcd
8febcd
* Mon Apr  8 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.1.RC1
8febcd
- Remove patches to prebuild files and always ./autogen.sh.
8febcd
- Only ever build primary arch. Put tools under libexec.
8febcd
- Update to upstream 3.15.0-RC1.
8febcd
- Drop all upstreamed patches.
8febcd
8febcd
* Mon Mar  4 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-16
8febcd
- Add valgrind-3.14.0-gettid.patch
8febcd
8febcd
* Mon Mar  4 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-15
8febcd
- Add valgrind-3.14.0-ppc64-quotactl.patch
8febcd
8febcd
* Thu Feb 21 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-14
8febcd
- Add valgrind-3.14.0-ppc-subfe.patch
8febcd
8febcd
* Thu Feb 14 2019 Orion Poplawski <orion@nwra.com> - 1:3.14.0-13
8febcd
- Rebuild for openmpi 3.1.3
8febcd
8febcd
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.14.0-12
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
8febcd
8febcd
* Thu Jan 24 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-11
8febcd
- Add valgrind-3.14.0-s390x-vec-facility-bit.patch.
8febcd
8febcd
* Wed Jan  9 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-10
8febcd
- Add valgrind-3.14.0-rsp-clobber.patch
8febcd
- Add valgrind-3.14.0-subrange_type-count.patch
8febcd
8febcd
* Mon Dec 31 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-9
8febcd
- Add valgrind-3.14.0-vbit-test-sec.patch
8febcd
- Add valgrind-3.14.0-x86-Iop_Sar64.patch
8febcd
- Add valgrind-3.14.0-power9-addex.patch
8febcd
8febcd
* Thu Dec 20 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-8
8febcd
- Update valgrind-3.14.0-jm-vmx-constraints.patch for ppc64.
8febcd
- Show all diff files in check, not just the main/default one.
8febcd
8febcd
* Fri Dec 14 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-7
8febcd
- Add valgrind-3.14.0-arm64-ptrace-traceme.patch
8febcd
- Add valgrind-3.14.0-mc_translate-vecret.patch
8febcd
8febcd
* Wed Dec 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-6
8febcd
- Add valgrind-3.14.0-final_tidyup.patch
8febcd
- Add valgrind-3.14.0-ppc64-ldbrx.patch
8febcd
- Add valgrind-3.14.0-ppc64-unaligned-words.patch
8febcd
- Add valgrind-3.14.0-ppc64-lxvd2x.patch
8febcd
- Add valgrind-3.14.0-ppc64-unaligned-vecs.patch
8febcd
- Add valgrind-3.14.0-ppc64-lxvb16x.patch
8febcd
- Add valgrind-3.14.0-set_AV_CR6.patch
8febcd
- Add valgrind-3.14.0-undef_malloc_args.patch
8febcd
- Add valgrind-3.14.0-jm-vmx-constraints.patch
8febcd
- Add valgrind-3.14.0-sigkill.patch
8febcd
- Add valgrind-3.14.0-ppc64-ptrace.patch
8febcd
8febcd
* Sat Dec  1 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-5
8febcd
- Add valgrind-3.14.0-wcsncmp.patch (#1645971)
8febcd
- Replace valgrind-3.14.0-s390x-vec-float-point-{code,test}.patch
8febcd
  with upstream versions.
8febcd
8febcd
* Fri Nov 23 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.14.0-4
8febcd
- Add valgrind-3.14.0-get_otrack_shadow_offset_wrk-ppc.patch,
8febcd
  valgrind-3.14.0-new-strlen-IROps.patch,
8febcd
  valgrind-3.14.0-ppc-instr-new-IROps.patch,
8febcd
  valgrind-3.14.0-memcheck-new-IROps.patch,
8febcd
  valgrind-3.14.0-ppc-frontend-new-IROps.patch,
8febcd
  valgrind-3.14.0-transform-popcount64-ctznat64.patch and
8febcd
  valgrind-3.14.0-enable-ppc-Iop_Sar_Shr8.patch (#1652926)
8febcd
8febcd
* Wed Nov 21 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.14.0-3
8febcd
- Add valgrind-3.14.0-s390z-more-z13-fixes.patch.
8febcd
8febcd
* Tue Nov 20 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.14.0-2
8febcd
- Add valgrind-3.14.0-s390x-fix-reg-alloc-vr-vs-fpr.patch.
8febcd
- Add valgrind-3.14.0-s390x-sign-extend-lochi.patch.
8febcd
- Add valgrind-3.14.0-s390x-vec-reg-vgdb.patch.
8febcd
- Add valgrind-3.14.0-s390x-vec-float-point-code.patch
8febcd
  and valgrind-3.14.0-s390x-vec-float-point-tests.patch
8febcd
- Disable full regtests on fedora everywhere.
8febcd
8febcd
* Tue Oct  9 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.14.0-1
8febcd
- valgrind 3.14.0 final.
8febcd
8febcd
* Thu Oct  4 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.14.0-0.2.RC2
8febcd
- Upgrade to RC2.
8febcd
- Drop valgrind-3.14.0-add-vector-h.patch.
8febcd
8febcd
* Fri Sep 14 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.14.0-0.1.GIT
8febcd
- New upstream (pre-)release.
8febcd
- Add valgrind-3.14.0-add-vector-h.patch.
8febcd
8febcd
* Fri Aug 10 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-28
8febcd
- Add valgrind-3.13.0-utime.patch
8febcd
8febcd
* Fri Aug  3 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-27
8febcd
- Add valgrind-3.13.0-ppc64-xsmaxcdp.patch
8febcd
8febcd
* Fri Aug  3 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-26
8febcd
- Use valgrind_arches for ExclusiveArch when defined.
8febcd
- Use restorecon for scl on rhel6 to work around rpm bug (#1610676).
8febcd
8febcd
* Tue Jul 31 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-25
8febcd
- Add valgrind-3.13.0-x86-arch_prctl.patch (#1610304)
8febcd
8febcd
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 3.13.0-24
8febcd
- Rebuild with fixed binutils
8febcd
8febcd
* Fri Jul 27 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-23
8febcd
- Remove valgrind-3.13.0-arm-disable-vfp-test.patch
8febcd
8febcd
* Thu Jul 26 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-22
8febcd
- Add valgrind-3.13.0-arch_prctl.patch (#1608824)
8febcd
8febcd
* Thu Jul 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-21
8febcd
- Add valgrind-3.13.0-separate-code.patch (#1600034)
8febcd
- Add valgrind-3.13.0-arm-disable-vfp-test.patch
8febcd
8febcd
* Thu Jul  5 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-20
8febcd
- Don't try a full_regtest under scl, also don't adjust PATH.
8febcd
8febcd
* Thu Apr 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-19
8febcd
- Improved valgrind-3.13.0-arm64-hwcap.patch
8febcd
- Add valgrind-3.13.0-arm64-ptrace.patch
8febcd
8febcd
* Thu Apr 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-18
8febcd
- Add valgrind-3.13.0-build-id-phdrs.patch (#1566639)
8febcd
8febcd
* Tue Feb 27 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-17
8febcd
- Add valgrind-3.13.0-ppc64-mtfprwa-constraint.patch.
8febcd
8febcd
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-16
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8febcd
8febcd
* Tue Jan 23 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-15
8febcd
- Split valgrind-tools-devel from valgrind-devel.
8febcd
- Make building of libmpi wrapper explicit.
8febcd
8febcd
* Mon Jan 22 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-14
8febcd
- undefine _strict_symbol_defs_build.
8febcd
8febcd
* Tue Jan  2 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-13
8febcd
- Add additional fix to valgrind-3.13.0-debug-alt-file.patch.
8febcd
8febcd
* Tue Dec 12 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-12
8febcd
- Add valgrind-3.13.0-s390-cgijnl.patch.
8febcd
- Use upstream version of valgrind-3.13.0-debug-alt-file.patch.
8febcd
8febcd
* Sun Dec 10 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-11
8febcd
- Add valgrind-3.13.0-debug-alt-file.patch.
8febcd
8febcd
* Thu Nov  2 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-10
8febcd
- Add valgrind-3.13.0-ppc64-timebase.patch.
8febcd
8febcd
* Tue Oct 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-9
8febcd
- Add valgrind-3.13.0-amd64-eflags-tests.patch
8febcd
- Add valgrind-3.13.0-suppress-dl-trampoline-sse-avx.patch
8febcd
- Add valgrind-3.13.0-static-tls.patch
8febcd
8febcd
* Mon Oct 16 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-8
8febcd
- Add valgrind-3.13.0-ppc64-vex-fixes.patch
8febcd
8febcd
* Thu Aug 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-7
8febcd
- Add valgrind-3.13.0-xml-socket.patch
8febcd
8febcd
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-6
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8febcd
8febcd
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-5
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8febcd
8febcd
* Fri Jul  7 2017 Mark Wielaard <mjw@fedoraproject.org>
8febcd
- Add --error-exitcode=1 to /bin/true check.
8febcd
8febcd
* Thu Jun 29 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-4
8febcd
- Add valgrind-3.13.0-arm-index-hardwire.patch (#1466017)
8febcd
- Add valgrind-3.13.0-ucontext_t.patch
8febcd
- Add valgrind-3.13.0-gdb-8-testfix.patch
8febcd
- Add valgrind-3.13.0-disable-vgdb-child.patch
8febcd
8febcd
* Fri Jun 23 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-3
8febcd
- Add valgrind-3.13.0-arm64-hwcap.patch (#1464211)
8febcd
8febcd
* Sat Jun 17 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-2
8febcd
- Add valgrind-3.13.0-ppc64-check-no-vsx.patch
8febcd
- Add valgrind-3.13.0-epoll_pwait.patch (#1462258)
8febcd
- Add valgrind-3.13.0-ppc64-diag.patch
8febcd
8febcd
* Thu Jun 15 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-1
8febcd
- valgrind 3.13.0 final.
8febcd
- Drop all upstreamed patches.
8febcd
8febcd
* Tue Jun  6 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-0.2.RC1
8febcd
- Add valgrind-3.13.0-arm-dcache.patch
8febcd
- Add valgrind-3.13.0-g++-4.4.patch
8febcd
- Add valgrind-3.13.0-s390x-GI-strcspn.patch
8febcd
- Add valgrind-3.13.0-xtree-callgrind.patch
8febcd
8febcd
* Fri Jun  2 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-0.1.RC1
8febcd
- Update description as suggested by Ivo Raisr.
8febcd
- Workaround gdb/python bug in testsuite (#1434601)
8febcd
- Update to upstream 3.13.0-RC1.
8febcd
- Drop all upstreamed patches.
8febcd
8febcd
* Tue Mar 28 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-8
8febcd
- Add valgrind-3.12.0-powerpc-register-pair.patch
8febcd
- Add valgrind-3.12.0-ppc64-isa-3_00.patch
8febcd
8febcd
* Sat Feb 18 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-7
8febcd
- Add valgrind-3.12.0-aarch64-syscalls.patch
8febcd
8febcd
* Sat Feb 18 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-6
8febcd
- Add valgrind-3.12.0-arm64-ppc64-prlimit64.patch
8febcd
- Add valgrind-3.12.0-arm64-hint.patch
8febcd
- Add valgrind-3.12.0-clone-spawn.patch
8febcd
- Add valgrind-3.12.0-quick-fatal-sigs.patch
8febcd
- Add valgrind-3.12.0-exit_group.patch
8febcd
- Add valgrind-3.12.0-deregister-stack.patch
8febcd
- Add valgrind-3.12.0-x86-gdt-and-ss.patch
8febcd
- Add valgrind-3.12.0-cd-dvd-ioctl.patch
8febcd
- Add valgrind-3.12.0-tests-cxx11_abi_0.patch
8febcd
- Add valgrind-3.12.0-helgrind-dl_allocate_tls-supp.patch
8febcd
- Add valgrind-3.12.0-ppc-xxsel.patch
8febcd
8febcd
* Fri Feb 17 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-5
8febcd
- Add valgrind-3.12.0-ppc64-r2.patch (#1424367)
8febcd
8febcd
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.12.0-4
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8febcd
8febcd
* Sat Nov 12 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-3
8febcd
- Add valgrind-3.12.0-nocwd-cleanup.patch (#1390282)
8febcd
8febcd
* Fri Oct 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1:3.12.0-2
8febcd
- Rebuild for openmpi 2.0
8febcd
8febcd
* Fri Oct 21 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-1
8febcd
- Update to valgrind 3.12.0 release.
8febcd
8febcd
* Thu Oct 20 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.4-RC2
8febcd
- Update to 3.12.0-RC1. Drop integrated patches.
8febcd
- Add valgrind-3.12.0-skip-cond-var.patch
8febcd
8febcd
* Fri Sep 30 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.3-BETA1
8febcd
- Clear CFLAGS, CXXFLAGS and LDFLAGS during make check.
8febcd
8febcd
* Thu Sep 29 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.2-BETA1
8febcd
- Add valgrind-3.12-beta1-ppc64be.patch.
8febcd
- Enable gdb_server tests again.
8febcd
8febcd
* Tue Sep 20 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.1-BETA1
8febcd
- Update to valgrind 3.12.0 pre-release.
8febcd
  - Drop upstreamed patches.
8febcd
  - Disable exp-tests in %%check. GDB crashes on gdb_server tests.
8febcd
8febcd
* Fri Jul 22 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-26
8febcd
- Only build valgrind-openmpi when not creating a software collection.
8febcd
- No support for multilib on secondary arches when creating scl.
8febcd
- Touch up empty .exp files.
8febcd
8febcd
* Thu Jul 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-24
8febcd
- Mandatory Perl build-requires added
8febcd
- Add valgrind-3.11.0-shr.patch
8febcd
- Add valgrind-3.11.0-pcmpxstrx-0x70-0x19.patch
8febcd
- Update valgrind-3.11.0-wrapmalloc.patch
8febcd
- Add valgrind-3.11.0-sighandler-stack.patch
8febcd
8febcd
* Tue Jun 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-23
8febcd
- Update valgrind-3.11.0-ppoll-mask.patch (#1344082)
8febcd
8febcd
* Mon May 30 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-22
8febcd
- Add valgrind-3.11.0-arm64-handle_at.patch
8febcd
- Add valgrind-3.11.0-ppc64-syscalls.patch
8febcd
8febcd
* Fri Apr 29 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-21
8febcd
- Add valgrind-3.11.0-deduppoolalloc.patch
8febcd
- Add valgrind-3.11.0-ppc-bcd-addsub.patch
8febcd
- Add valgrind-3.11.0-ppc64-vgdb-vr-regs.patch
8febcd
8febcd
* Fri Apr 15 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-20
8febcd
- Update valgrind-3.11.0-cxx-freeres.patch (x86 final_tidyup fix)
8febcd
- Add valgrind-3.11.0-s390x-risbgn.patch
8febcd
8febcd
* Sun Apr 03 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-19
8febcd
- Add valgrind-3.11.0-cxx-freeres.patch (#1312647)
8febcd
- Add valgrind-3.11.0-ppc64-separate-socketcalls.patch
8febcd
- Add valgrind-3.11.0-isZeroU.patch
8febcd
- Replace valgrind-3.11.0-arm64-ldpsw.patch with upstream version
8febcd
- Add valgrind-3.11.0-ppc64-128bit-mod-carry.patch
8febcd
- Add valgrind-3.11.0-amd64-fcom.patch
8febcd
- Add valgrind-3.11.0-z13s.patch
8febcd
- Add valgrind-3.11.0-gdb-test-filters.patch
8febcd
8febcd
* Mon Mar 14 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-18
8febcd
- Update valgrind-3.11.0-libstdc++-supp.patch.
8febcd
- Add valgrind-3.11.0-arm64-ldr-literal-test.patch.
8febcd
- Add valgrind-3.11.0-arm64-ldpsw.patch
8febcd
8febcd
* Thu Mar 10 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-17
8febcd
- Update valgrind-3.11.0-arm64-more-syscalls.patch
8febcd
- Add valgrind-3.11.0-libstdc++-supp.patch (#1312647)
8febcd
8febcd
* Wed Mar 09 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-16
8febcd
- Add valgrind-3.11.0-ppoll-mask.patch
8febcd
- Add valgrind-3.11.0-arm64-more-syscalls.patch
8febcd
8febcd
* Wed Feb 24 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-15
8febcd
- Add valgrind-3.11.0-s390-separate-socketcalls.patch
8febcd
- Add valgrind-3.11.0-amd64-ld-index.patch
8febcd
8febcd
* Thu Feb 18 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-14
8febcd
- Update valgrind-3.11.0-futex.patch (fix helgrind/drd regression).
8febcd
- Update valgrind-3.11.0-x86_unwind.patch (include amd64 fix).
8febcd
8febcd
* Wed Feb 17 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-13
8febcd
- Remove valgrind-3.11.0-no-stv.patch (gcc6 has been fixed).
8febcd
- Add valgrind-3.11.0-futex.patch
8febcd
- Add valgrind-3.11.0-s390x-popcnt.patch
8febcd
8febcd
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.11.0-12
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8febcd
8febcd
* Sat Jan 30 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-11
8febcd
- Add valgrind-3.11.0-no-stv.patch (GCC6 workaround).
8febcd
8febcd
* Mon Jan 25 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-10
8febcd
- Add valgrind-3.11.0-drd_std_thread.patch GCC6 build fix.
8febcd
8febcd
* Fri Jan 22 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-9
8febcd
- Fix valgrind-3.11.0-pthread_barrier.patch to apply with older patch.
8febcd
- Fix multilib issue in config.h with HAVE_AS_AMD64_FXSAVE64.
8febcd
8febcd
* Thu Jan 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-8
8febcd
- Add valgrind-3.11.0-rlimit_data.patch
8febcd
- Add valgrind-3.11.0-fclose.patch
8febcd
- Add valgrind-3.11.0-pthread_spin_destroy.patch
8febcd
- Add valgrind-3.11.0-socketcall-x86-linux.patch
8febcd
- Don't strip debuginfo from vgpreload libaries.
8febcd
  Enable dwz for everything else again.
8febcd
- Add valgrind-3.11.0-is_stmt.patch
8febcd
- Add valgrind-3.11.0-x86_unwind.patch
8febcd
8febcd
* Tue Jan 19 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-7
8febcd
- Add valgrind-3.11.0-pthread_barrier.patch
8febcd
8febcd
* Sat Jan 16 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-6
8febcd
- Add valgrind-3.11.0-aspacemgr.patch (#1283774)
8febcd
8febcd
* Sun Nov 15 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-5
8febcd
- Add valgrind-3.11.0-wrapmalloc.patch
8febcd
8febcd
* Mon Oct 12 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-4
8febcd
- Fix parenthesis in valgrind-3.11.0-rexw-cvtps2pd.patch.
8febcd
- Add valgrind-3.11.0-s390-hwcap.patch
8febcd
8febcd
* Mon Oct 12 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-3
8febcd
- Add valgrind-3.11.0-rexw-cvtps2pd.patch.
8febcd
8febcd
* Thu Oct 01 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-2
8febcd
- Add valgrind-3.11.0-no-rdrand.patch
8febcd
8febcd
* Wed Sep 23 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-1
8febcd
- Upgrade to valgrind 3.11.0 final
8febcd
- Drop patches included upstream
8febcd
  - valgrind-3.11.0-ppc-dfp-guard.patch
8febcd
  - valgrind-3.11.0-ppc-ppr.patch
8febcd
  - valgrind-3.11.0-ppc-mbar.patch
8febcd
  - valgrind-3.11.0-glibc-futex-message.patch
8febcd
  - valgrind-3.11.0-arm64-libvex_test.patch
8febcd
  - valgrind-3.11.0-arm-warnings.patch
8febcd
  - valgrind-3.11.0-arm-no-cast-align.patch
8febcd
  - valgrind-3.11.0-ppc-vbit-test.patch
8febcd
- Add arm64 syscall patches
8febcd
  - valgrind-3.11.0-arm64-xattr.patch
8febcd
  - valgrind-3.11.0-arm64-sigpending.patch
8febcd
8febcd
* Sat Sep 19 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.4.TEST1
8febcd
- Add valgrind-3.11.0-ppc-dfp-guard.patch
8febcd
- Add valgrind-3.11.0-ppc-ppr.patch
8febcd
- Add valgrind-3.11.0-ppc-mbar.patch
8febcd
8febcd
* Fri Sep 18 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.3.TEST1
8febcd
- Make sure some info about the system is in the build.log before check.
8febcd
- Add valgrind-3.11.0-glibc-futex-message.patch
8febcd
- Add valgrind-3.11.0-arm64-libvex_test.patch
8febcd
- Add valgrind-3.11.0-arm-warnings.patch
8febcd
- Add valgrind-3.11.0-arm-no-cast-align.patch
8febcd
- Add valgrind-3.11.0-ppc-vbit-test.patch
8febcd
8febcd
* Tue Sep 15 2015 Orion Poplawski <orion@cora.nwra.com> - 1:3.11.0-0.2.TEST1
8febcd
- Rebuild for openmpi 1.10.0
8febcd
8febcd
* Thu Sep 10 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.1.TEST1
8febcd
- Add BuildRequires perl(Getopt::Long)
8febcd
- Upgrade to valgrind 3.11.0.TEST1
8febcd
- Remove upstreamed valgrind-3.10.1-gdb-file-warning.patch
8febcd
8febcd
* Tue Aug 25 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-22.svn20150825r15589
8febcd
- Drop valgrind-3.9.0-stat_h.patch.
8febcd
- Add BuildRequires gcc-c++.
8febcd
- Update to current valgrind svn (svn20150825r15589)
8febcd
- Add valgrind-3.10.1-gdb-file-warning.patch
8febcd
8febcd
* Mon Aug 17 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-21.svn20150817r15561
8febcd
- Update to current valgrind svn. Drop patches now upstream.
8febcd
8febcd
* Mon Aug 17 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-20
8febcd
- Don't try to move around libmpiwrap when not building for openmpi (s390x)
8febcd
8febcd
* Fri Aug 14 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-19
8febcd
- Install libmpiwrap library under {_libdir}/openmpi/valgrind (#1238428)
8febcd
8febcd
* Mon Aug 10 2015 Sandro Mani <manisandro@gmail.com> - 1:3.10.1-18
8febcd
- Rebuild for RPM MPI Requires Provides Change
8febcd
8febcd
* Mon Aug 10 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-17
8febcd
- Add setuid and setresgid to valgrind-3.10.1-aarch64-syscalls.patch.
8febcd
8febcd
* Mon Aug 03 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-16
8febcd
- Add valgrind-3.10.1-ppc64-hwcap2.patch
8febcd
8febcd
* Wed Jul 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-15
8febcd
- Update valgrind-3.10.1-s390x-fiebra.patch
8febcd
8febcd
* Wed Jul 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-14
8febcd
- Add valgrind-3.10.1-s390x-fiebra.patch
8febcd
8febcd
* Tue Jul 07 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-13
8febcd
- Add valgrind-3.10.1-di_notify_mmap.patch
8febcd
- Add valgrind-3.10.1-memmove-ld_so-ppc64.patch
8febcd
8febcd
* Fri Jun 19 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-12
8febcd
- Add valgrind-3.10.1-kernel-4.0.patch.
8febcd
8febcd
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.10.1-11
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8febcd
8febcd
* Sun Jun 07 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-10
8febcd
- Add valgrind-3.10.1-cfi-redzone.patch.
8febcd
8febcd
* Wed Jun 03 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-9
8febcd
- Add valgrind-3.10.1-memfd_create.patch.
8febcd
- Add valgrind-3.10.1-syncfs.patch.
8febcd
- Add valgrind-3.10.1-arm-process_vm_readv_writev.patch.
8febcd
- Add valgrind-3.10.1-fno-ipa-icf.patch.
8febcd
- Add valgrind-3.10.1-demangle-q.patch
8febcd
8febcd
* Fri May 22 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-8
8febcd
- Disable extended regtest on arm. The gdb tests hang for unknown reasons.
8febcd
  The reason is a glibc bug #1196181 which causes:
8febcd
  "GDB fails with Cannot parse expression `.L1055 4@r4'."
8febcd
8febcd
* Wed Apr 22 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-7
8febcd
- Add valgrind-3.10-1-ppc64-sigpending.patch
8febcd
- Filter out -fstack-protector-strong and disable _hardened_build.
8febcd
8febcd
* Wed Feb 18 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-6
8febcd
- Add valgrind-3.10.1-send-recv-mmsg.patch
8febcd
- Add mount and umount2 to valgrind-3.10.1-aarch64-syscalls.patch.
8febcd
- Add valgrind-3.10.1-glibc-version-check.patch
8febcd
8febcd
* Tue Feb 10 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-5
8febcd
- Add accept4 to valgrind-3.10.1-aarch64-syscalls.patch.
8febcd
- Add valgrind-3.10.1-ppc64-accept4.patch.
8febcd
8febcd
* Sun Feb 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-4
8febcd
- Add valgrind-3.10.1-aarch64-syscalls.patch.
8febcd
8febcd
* Thu Feb 05 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-3
8febcd
- Add valgrind-3.10-s390-spechelper.patch.
8febcd
8febcd
* Tue Jan 13 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-2
8febcd
- Add valgrind-3.10.1-mempcpy.patch.
8febcd
8febcd
* Wed Nov 26 2014 Mark Wielaard <mjw@redhat.com> - 3.10.1-1
8febcd
- Upgrade to 3.10.1 final.
8febcd
8febcd
* Mon Nov 24 2014 Mark Wielaard <mjw@redhat.com> - 3.10.1-0.1.TEST1
8febcd
- Upgrade to valgrind 3.10.1.TEST1
8febcd
- Remove patches that are now upstream:
8febcd
  - valgrind-3.10.0-old-ppc32-instr-magic.patch
8febcd
  - valgrind-3.10.0-aarch64-syscalls.patch
8febcd
  - valgrind-3.10.0-aarch64-dmb-sy.patch
8febcd
  - valgrind-3.10.0-aarch64-frint.patch
8febcd
  - valgrind-3.10.0-fcvtmu.patch
8febcd
  - valgrind-3.10.0-aarch64-fcvta.patch
8febcd
8febcd
* Wed Nov 19 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-6
8febcd
- Add getgroups/setgroups to valgrind-3.10.0-aarch64-syscalls.patch
8febcd
8febcd
* Tue Nov  4 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-5
8febcd
- Merge valgrind-3.10.0-aarch64-times.patch
8febcd
  and valgrind-3.10.0-aarch64-getsetsid.patch
8febcd
  into valgrind-3.10.0-aarch64-syscalls.patch
8febcd
  add fdatasync, msync, pread64, setreuid, setregid,
8febcd
  mknodat, fchdir, chroot, fchownat, fchmod and fchown.
8febcd
- Add valgrind-3.10.0-aarch64-frint.patch
8febcd
- Add valgrind-3.10.0-fcvtmu.patch
8febcd
- Add valgrind-3.10.0-aarch64-fcvta.patch
8febcd
8febcd
* Sat Oct 11 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-4
8febcd
- Add valgrind-3.10.0-aarch64-times.patch
8febcd
- Add valgrind-3.10.0-aarch64-getsetsid.patch
8febcd
- Add valgrind-3.10.0-aarch64-dmb-sy.patch
8febcd
8febcd
* Mon Sep 15 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-3
8febcd
- Add valgrind-3.10.0-old-ppc32-instr-magic.patch.
8febcd
8febcd
* Fri Sep 12 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-2
8febcd
- Fix ppc32 multilib handling on ppc64[be].
8febcd
- Drop ppc64 secondary for ppc32 primary support.
8febcd
- Except for armv7hl we don't support any other arm[32] arch.
8febcd
8febcd
* Thu Sep 11 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-1
8febcd
- Update to 3.10.0 final.
8febcd
- Remove valgrind-3.10-configure-glibc-2.20.patch fixed upstream.
8febcd
8febcd
* Mon Sep  8 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-0.2.BETA2
8febcd
- Update to 3.10.0.BETA2.
8febcd
- Don't run dwz or generate minisymtab.
8febcd
- Remove valgrind-3.9.0-s390x-ld-supp.patch fixed upstream.
8febcd
- Add valgrind-3.10-configure-glibc-2.20.patch.
8febcd
8febcd
* Tue Sep  2 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-0.1.BETA1
8febcd
- Update to official upstream 3.10.0 BETA1.
8febcd
  - Enables inlined frames in stacktraces.
8febcd
8febcd
* Fri Aug 29 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-26.svn20140829r14384
8febcd
- Update to upstream svn r14384
8febcd
- Enable gdb_server tests again for arm and aarch64
8febcd
8febcd
* Wed Aug 27 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-25.svn20140827r14370
8febcd
- Update to upstream svn r14370
8febcd
- Remove ppc testfile copying (no longer patched in)
8febcd
8febcd
* Mon Aug 18 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-24.svn20140818r14303
8febcd
- Update to upstream svn r14303
8febcd
- Move fake libgcc into shared to not break post-regtest-checks.
8febcd
- autogen.sh execution no longer needed in %%build.
8febcd
8febcd
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.9.0-23.svn20140809r14250
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8febcd
8febcd
* Sat Aug  9 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-22.svn20140809r14250
8febcd
- Update to upstream svn r14250
8febcd
  - ppc64le support got integrated upstream. Remove patches:
8febcd
    valgrind-3.9.0-ppc64le-initial.patch
8febcd
    valgrind-3.9.0-ppc64le-functional.patch
8febcd
    valgrind-3.9.0-ppc64le-test.patch
8febcd
    valgrind-3.9.0-ppc64le-extra.patch
8febcd
8febcd
* Sat Jul 19 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-21.svn20140718r14176
8febcd
- Disable full regtest on arm (gdb integration tests sometimes hang).
8febcd
8febcd
* Fri Jul 18 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-20.svn20140718r14176
8febcd
- Update to upstream svn r14176
8febcd
  Remove valgrind-3.9.0-arm64-user_regs.patch
8febcd
- Add ppc64le support
8febcd
  valgrind-3.9.0-ppc64le-initial.patch
8febcd
  valgrind-3.9.0-ppc64le-functional.patch
8febcd
  valgrind-3.9.0-ppc64le-test.patch
8febcd
  valgrind-3.9.0-ppc64le-extra.patch
8febcd
8febcd
* Tue Jul 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-19.svn20140715r14165
8febcd
- Add valgrind-3.9.0-arm64-user_regs.patch
8febcd
- Disable full regtest on aarch64 (gdb integration tests sometimes hang).
8febcd
- Enable openmpi support on aarch64.
8febcd
8febcd
* Tue Jul 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-18.svn20140715r14165
8febcd
- Update to upstream svn r14165.
8febcd
- Remove valgrind-3.9.0-ppc64-ifunc.patch.
8febcd
- Remove valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
8febcd
- Remove valgrind-3.9.0-format-security.patch
8febcd
- Remove valgrind-3.9.0-msghdr.patch
8febcd
8febcd
* Fri Jul  4 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-17.svn20140513r13961
8febcd
- Remove ppc multilib support (#1116110)
8febcd
- Add valgrind-3.9.0-ppc64-ifunc.patch
8febcd
8febcd
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.9.0-16.svn20140513r13961
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8febcd
8febcd
* Mon May 19 2014 Mark Wielaard <mjw@redhat.com>
8febcd
- Don't cleanup fake 32-bit libgcc created in %%build.
8febcd
  make regtest might depend on it to build -m32 binaries.
8febcd
8febcd
* Fri May 16 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-15.svn20140513r13961
8febcd
- Add SHL_d_d_#imm to valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
8febcd
8febcd
* Thu May 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-14.svn20140513r13961
8febcd
- Add valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
8febcd
8febcd
* Tue May 13 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-13.svn20140513r13961
8febcd
- Update to upstream svn r13961.
8febcd
- Remove valgrind-3.9.0-mpx.patch integrated upstream now.
8febcd
- Add valgrind-3.9.0-msghdr.patch
8febcd
- Add valgrind-3.9.0-format-security.patch
8febcd
8febcd
* Thu May 8 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-12.svn20140319r13879
8febcd
- Add valgrind-3.9.0-mpx.patch (#1087933)
8febcd
8febcd
* Wed Mar 19 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-11.svn20140319r13879
8febcd
- Update to upstream svn r13879. arm64 make check now builds.
8febcd
8febcd
* Tue Mar 18 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-10.svn20140318r13876
8febcd
- Make sure basic binary (/bin/true) runs under valgrind.
8febcd
  And fail the whole build if not. The regtests are not zero-fail.
8febcd
- Update to upstream svn r13876.
8febcd
- Introduce build_openmpi and build_multilib in spec file.
8febcd
8febcd
* Tue Mar 11 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-9.svn20140311r13869
8febcd
- Enable aarch64 based on current upstream svn. Removed upstreamed patches.
8febcd
  Thanks to Marcin Juszkiewicz <mjuszkiewicz@redhat.com>
8febcd
8febcd
* Mon Mar 10 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-8
8febcd
- Add valgrind-3.9.0-ppc64-priority.patch
8febcd
8febcd
* Mon Feb 24 2014 Mark Wielaard <mjw@redhat.com>
8febcd
- Add upstream fixes to valgrind-3.9.0-timer_create.patch
8febcd
8febcd
* Fri Feb 21 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-7
8febcd
- Add valgrind-3.9.0-glibc-2.19.patch
8febcd
8febcd
* Fri Feb 21 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-6
8febcd
- Add valgrind-3.9.0-s390-dup3.patch
8febcd
- Add valgrind-3.9.0-timer_create.patch
8febcd
8febcd
* Thu Dec 12 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-5
8febcd
- Add valgrind-3.9.0-manpage-memcheck-options.patch.
8febcd
- Add valgrind-3.9.0-s390-fpr-pair.patch.
8febcd
8febcd
* Thu Nov 28 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-4
8febcd
- Add valgrind-3.9.0-xabort.patch.
8febcd
8febcd
* Fri Nov 22 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-3
8febcd
- Add valgrind-3.9.0-anon-typedef.patch.
8febcd
- Add valgrind-3.9.0-s390x-ld-supp.patch
8febcd
8febcd
* Wed Nov 20 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-2
8febcd
- Add valgrind-3.9.0-dwz-alt-buildid.patch.
8febcd
- Add valgrind-3.9.0-s390-risbg.patch.
8febcd
8febcd
* Fri Nov  1 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-1
8febcd
- Upgrade to valgrind 3.9.0 final.
8febcd
- Remove support for really ancient GCCs (valgrind-3.9.0-config_h.patch).
8febcd
- Add valgrind-3.9.0-amd64_gen_insn_test.patch.
8febcd
- Remove and cleanup fake 32-bit libgcc package.
8febcd
8febcd
* Mon Oct 28 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-0.1.TEST1
8febcd
- Upgrade to valgrind 3.9.0.TEST1
8febcd
- Remove patches that are now upstream:
8febcd
  - valgrind-3.8.1-abbrev-parsing.patch
8febcd
  - valgrind-3.8.1-af-bluetooth.patch
8febcd
  - valgrind-3.8.1-aspacemgr_VG_N_SEGs.patch
8febcd
  - valgrind-3.8.1-avx2-bmi-fma.patch.gz
8febcd
  - valgrind-3.8.1-avx2-prereq.patch
8febcd
  - valgrind-3.8.1-bmi-conf-check.patch
8febcd
  - valgrind-3.8.1-capget.patch
8febcd
  - valgrind-3.8.1-cfi_dw_ops.patch
8febcd
  - valgrind-3.8.1-dwarf-anon-enum.patch
8febcd
  - valgrind-3.8.1-filter_gdb.patch
8febcd
  - valgrind-3.8.1-find-buildid.patch
8febcd
  - valgrind-3.8.1-gdbserver_exit.patch
8febcd
  - valgrind-3.8.1-gdbserver_tests-syscall-template-source.patch
8febcd
  - valgrind-3.8.1-glibc-2.17-18.patch
8febcd
  - valgrind-3.8.1-index-supp.patch
8febcd
  - valgrind-3.8.1-initial-power-isa-207.patch
8febcd
  - valgrind-3.8.1-manpages.patch
8febcd
  - valgrind-3.8.1-memcheck-mc_translate-Iop_8HLto16.patch
8febcd
  - valgrind-3.8.1-mmxext.patch
8febcd
  - valgrind-3.8.1-movntdqa.patch
8febcd
  - valgrind-3.8.1-new-manpages.patch
8febcd
  - valgrind-3.8.1-openat.patch
8febcd
  - valgrind-3.8.1-overlap_memcpy_filter.patch
8febcd
  - valgrind-3.8.1-pie.patch
8febcd
  - valgrind-3.8.1-pkg-config.patch
8febcd
  - valgrind-3.8.1-power-isa-205-deprecation.patch
8febcd
  - valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch
8febcd
  - valgrind-3.8.1-ppc-setxattr.patch
8febcd
  - valgrind-3.8.1-proc-auxv.patch
8febcd
  - valgrind-3.8.1-ptrace-include-configure.patch
8febcd
  - valgrind-3.8.1-ptrace-setgetregset.patch
8febcd
  - valgrind-3.8.1-ptrace-thread-area.patch
8febcd
  - valgrind-3.8.1-regtest-fixlets.patch
8febcd
  - valgrind-3.8.1-s390-STFLE.patch
8febcd
  - valgrind-3.8.1-s390_tsearch_supp.patch
8febcd
  - valgrind-3.8.1-sendmsg-flags.patch
8febcd
  - valgrind-3.8.1-sigill_diag.patch
8febcd
  - valgrind-3.8.1-static-variables.patch
8febcd
  - valgrind-3.8.1-stpncpy.patch
8febcd
  - valgrind-3.8.1-text-segment.patch
8febcd
  - valgrind-3.8.1-wcs.patch
8febcd
  - valgrind-3.8.1-x86_amd64_features-avx.patch
8febcd
  - valgrind-3.8.1-xaddb.patch
8febcd
  - valgrind-3.8.1-zero-size-sections.patch
8febcd
- Remove special case valgrind-3.8.1-enable-armv5.patch.
8febcd
- Remove valgrind-3.8.1-x86-backtrace.patch, rely on new upstream fp/cfi
8febcd
  try-cache mechanism.
8febcd
8febcd
* Mon Oct 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-31
8febcd
- Fix multilib issue with HAVE_PTRACE_GETREGS in config.h.
8febcd
8febcd
* Thu Sep 26 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30
8febcd
- Add valgrind-3.8.1-index-supp.patch (#1011713)
8febcd
8febcd
* Wed Sep 25 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-29
8febcd
- Filter out -mcpu= so tests are compiled with the right flags. (#996927).
8febcd
8febcd
* Mon Sep 23 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-28
8febcd
- Implement SSE4 MOVNTDQA insn (valgrind-3.8.1-movntdqa.patch)
8febcd
- Don't BuildRequire /bin/ps, just BuildRequire procps
8febcd
  (procps-ng provides procps).
8febcd
8febcd
* Thu Sep 05 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-27
8febcd
- Fix power_ISA2_05 testcase (valgrind-3.8.1-power-isa-205-deprecation.patch)
8febcd
- Fix ppc32 make check build (valgrind-3.8.1-initial-power-isa-207.patch)
8febcd
- Add valgrind-3.8.1-mmxext.patch
8febcd
8febcd
* Wed Aug 21 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-26
8febcd
- Allow building against glibc 2.18. (#999169)
8febcd
8febcd
* Thu Aug 15 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-25
8febcd
- Add valgrind-3.8.1-s390-STFLE.patch
8febcd
  s390 message-security assist (MSA) instruction extension not implemented.
8febcd
8febcd
* Wed Aug 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-24
8febcd
- Add valgrind-3.8.1-power-isa-205-deprecation.patch
8febcd
  Deprecation of some ISA 2.05 POWER6 instructions.
8febcd
- Fixup auto-foo generation of new manpage doc patch.
8febcd
8febcd
* Wed Aug 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-23
8febcd
- tests/check_isa-2_07_cap should be executable.
8febcd
8febcd
* Tue Aug 13 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-22
8febcd
- Add valgrind-3.8.1-initial-power-isa-207.patch
8febcd
  Initial ISA 2.07 support for POWER8-tuned libc.
8febcd
8febcd
* Thu Aug 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-21
8febcd
- Don't depend on docdir location and version in openmpi subpackage
8febcd
  description (#993938).
8febcd
- Enable openmpi subpackage also on arm.
8febcd
8febcd
* Thu Aug 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-20
8febcd
- Add valgrind-3.8.1-ptrace-include-configure.patch (#992847)
8febcd
8febcd
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.8.1-19
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8febcd
8febcd
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 1:3.8.1-18
8febcd
- Perl 5.18 rebuild
8febcd
8febcd
* Mon Jul 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-17
8febcd
- Add valgrind-3.8.1-dwarf-anon-enum.patch
8febcd
- Cleanup valgrind-3.8.1-sigill_diag.patch .orig file changes (#949687).
8febcd
- Add valgrind-3.8.1-ppc-setxattr.patch
8febcd
- Add valgrind-3.8.1-new-manpages.patch
8febcd
- Add valgrind-3.8.1-ptrace-thread-area.patch
8febcd
- Add valgrind-3.8.1-af-bluetooth.patch
8febcd
8febcd
* Tue May 28 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 1:3.8.1-16
8febcd
- Provide virtual -static package in -devel subpackage (#609624).
8febcd
8febcd
* Thu Apr 25 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-15
8febcd
- Add valgrind-3.8.1-zero-size-sections.patch. Resolves issues with zero
8febcd
  sized .eh_frame sections on ppc64.
8febcd
8febcd
* Thu Apr 18 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-14
8febcd
- fixup selinux file context when doing a scl build.
8febcd
- Enable regtest suite on ARM.
8febcd
- valgrind-3.8.1-abbrev-parsing.patch, drop workaround, enable real fix.
8febcd
- Fix -Ttext-segment configure check. Enables s390x again.
8febcd
- BuildRequire ps for testsuite.
8febcd
8febcd
* Tue Apr 02 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-13
8febcd
- Fix quoting in valgrind valgrind-3.8.1-enable-armv5.patch and
8febcd
  remove arm configure hunk from valgrind-3.8.1-text-segment.patch #947440
8febcd
- Replace valgrind-3.8.1-text-segment.patch with upstream variant.
8febcd
- Add valgrind-3.8.1-regtest-fixlets.patch.
8febcd
8febcd
* Wed Mar 20 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-12
8febcd
- Add valgrind-3.8.1-text-segment.patch
8febcd
- Don't undefine _missing_build_ids_terminate_build.
8febcd
8febcd
* Tue Mar 12 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-11
8febcd
- Add valgrind-3.8.1-manpages.patch
8febcd
8febcd
* Fri Mar 01 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-10
8febcd
- Don't disable -debuginfo package generation, but do undefine
8febcd
  _missing_build_ids_terminate_build.
8febcd
8febcd
* Thu Feb 28 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-9
8febcd
- Replace valgrind-3.8.1-sendmsg-flags.patch with upstream version.
8febcd
8febcd
* Tue Feb 19 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-8
8febcd
- Add valgrind-3.8.1-sendmsg-flags.patch
8febcd
- Add valgrind-3.8.1-ptrace-setgetregset.patch
8febcd
- Add valgrind-3.8.1-static-variables.patch
8febcd
8febcd
* Thu Feb 07 2013 Jon Ciesla <limburgher@gmail.com> 1:3.8.1-7
8febcd
- Merge review fixes, BZ 226522.
8febcd
8febcd
* Wed Jan 16 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-6
8febcd
- Allow building against glibc-2.17.
8febcd
8febcd
* Sun Nov  4 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-5
8febcd
- Add valgrind-3.8.1-stpncpy.patch (KDE#309427)
8febcd
- Add valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch (#810992, KDE#308573)
8febcd
- Add valgrind-3.8.1-sigill_diag.patch (#810992, KDE#309425)
8febcd
8febcd
* Tue Oct 16 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-4
8febcd
- Add valgrind-3.8.1-xaddb.patch (#866793, KDE#307106)
8febcd
8febcd
* Mon Oct 15 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-3
8febcd
- Add valgrind-3.8.1-x86_amd64_features-avx.patch (KDE#307285)
8febcd
- Add valgrind-3.8.1-gdbserver_tests-syscall-template-source.patch (KDE#307155)
8febcd
- Add valgrind-3.8.1-overlap_memcpy_filter.patch (KDE#307290)
8febcd
- Add valgrind-3.8.1-pkg-config.patch (#827219, KDE#307729)
8febcd
- Add valgrind-3.8.1-proc-auxv.patch (KDE#253519)
8febcd
- Add valgrind-3.8.1-wcs.patch (#755242, KDE#307828)
8febcd
- Add valgrind-3.8.1-filter_gdb.patch (KDE#308321)
8febcd
- Add valgrind-3.8.1-gdbserver_exit.patch (#862795, KDE#308341)
8febcd
- Add valgrind-3.8.1-aspacemgr_VG_N_SEGs.patch (#730303, KDE#164485)
8febcd
- Add valgrind-3.8.1-s390_tsearch_supp.patch (#816244, KDE#308427)
8febcd
8febcd
* Fri Sep 21 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-2
8febcd
- Add valgrind-3.8.1-gdbserver_tests-mcinvoke-ppc64.patch
8febcd
- Replace valgrind-3.8.1-cfi_dw_ops.patch with version as committed upstream.
8febcd
- Remove erroneous printf change from valgrind-3.8.1-abbrev-parsing.patch.
8febcd
- Add scalar testcase change to valgrind-3.8.1-capget.patch.
8febcd
8febcd
* Thu Sep 20 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-1
8febcd
- Add partial backport of upstream revision 12884
8febcd
  valgrind-3.8.0-memcheck-mc_translate-Iop_8HLto16.patch
8febcd
  without it AVX2 VPBROADCASTB insn is broken under memcheck.
8febcd
- Add valgrind-3.8.0-cfi_dw_ops.patch (KDE#307038)
8febcd
  DWARF2 CFI reader: unhandled DW_OP_ opcode 0x8 (DW_OP_const1u and friends)
8febcd
- Add valgrind-3.8.0-avx2-prereq.patch.
8febcd
- Remove accidentially included diffs for gdbserver_tests and helgrind/tests
8febcd
  Makefile.in from valgrind-3.8.0-avx2-bmi-fma.patch.gz
8febcd
- Remove valgrind-3.8.0-tests.patch tests no longer hang.
8febcd
- Added SCL macros to support building as part of a Software Collection.
8febcd
- Upgrade to valgrind 3.8.1.
8febcd
8febcd
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-8
8febcd
- Add configure fixup valgrind-3.8.0-bmi-conf-check.patch
8febcd
8febcd
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-7
8febcd
- Add valgrind-3.8.0-avx2-bmi-fma.patch (KDE#305728)
8febcd
8febcd
* Tue Sep 11 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-6
8febcd
- Add valgrind-3.8.0-lzcnt-tzcnt-bugfix.patch (KDE#295808)
8febcd
- Add valgrind-3.8.0-avx-alignment-check.patch (KDE#305926)
8febcd
8febcd
* Mon Aug 27 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-5
8febcd
- Add valgrind-3.8.0-abbrev-parsing.patch for #849783 (KDE#305513).
8febcd
8febcd
* Sun Aug 19 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-4
8febcd
- Add valgrind-3.8.0-find-buildid.patch workaround bug #849435 (KDE#305431).
8febcd
8febcd
* Wed Aug 15 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-3
8febcd
- fix up last change
8febcd
8febcd
* Wed Aug 15 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-2
8febcd
- tweak up <valgrind/config.h> to allow simultaneous installation
8febcd
  of valgrind-devel.{i686,x86_64} (#848146)
8febcd
8febcd
* Fri Aug 10 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-1
8febcd
- update to 3.8.0 release
8febcd
- from CFLAGS/CXXFLAGS filter just fortification flags, not arch
8febcd
  specific flags
8febcd
- on i?86 prefer to use CFI over %%ebp unwinding, as GCC 4.6+
8febcd
  defaults to -fomit-frame-pointer
8febcd
8febcd
* Tue Aug 07 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-0.1.TEST1.svn12858
8febcd
- Update to 3.8.0-TEST1
8febcd
- Clear CFLAGS CXXFLAGS LDFLAGS.
8febcd
- Fix \ line continuation in configure line.
8febcd
8febcd
* Fri Aug 03 2012 Mark Wielaard <mjw@redhat.com> 3.7.0-7
8febcd
- Fixup shadowing warnings valgrind-3.7.0-dwz.patch
8febcd
- Add valgrind-3.7.0-ref_addr.patch (#842659, KDE#298864)
8febcd
8febcd
* Wed Jul 25 2012 Mark Wielaard <mjw@redhat.com> 3.7.0-6
8febcd
- handle dwz DWARF compressor output (#842659, KDE#302901)
8febcd
- allow glibc 2.16.
8febcd
8febcd
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.7.0-5
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8febcd
8febcd
* Mon May  7 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-4
8febcd
- adjust suppressions so that it works even with ld-2.15.so (#806854)
8febcd
- handle DW_TAG_unspecified_type and DW_TAG_rvalue_reference_type
8febcd
  (#810284, KDE#278313)
8febcd
- handle .debug_types sections (#810286, KDE#284124)
8febcd
8febcd
* Sun Mar  4 2012 Peter Robinson <pbrobinson@fedoraproject.org> 3.7.0-2
8febcd
- Fix building on ARM platform
8febcd
8febcd
* Fri Jan 27 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-1
8febcd
- update to 3.7.0 (#769213, #782910, #772343)
8febcd
- handle some further SCSI ioctls (#783936)
8febcd
- handle fcntl F_SETOWN_EX and F_GETOWN_EX (#770746)
8febcd
8febcd
* Wed Aug 17 2011 Adam Jackson <ajax@redhat.com> 3.6.1-6
8febcd
- rebuild for rpm 4.9.1 trailing / bug
8febcd
8febcd
* Thu Jul 21 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-5
8febcd
- handle PLT unwind info (#723790, KDE#277045)
8febcd
8febcd
* Mon Jun 13 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-4
8febcd
- fix memcpy/memmove redirection on x86_64 (#705790)
8febcd
8febcd
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-3
8febcd
- fix testing against glibc 2.14
8febcd
8febcd
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-2
8febcd
- fix build on ppc64 (#711608)
8febcd
- don't fail if s390x support patch hasn't been applied,
8febcd
  move testing into %%check (#708522)
8febcd
- rebuilt against glibc 2.14
8febcd
8febcd
* Wed Feb 23 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-1
8febcd
- update to 3.6.1
8febcd
8febcd
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.6.0-3
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8febcd
8febcd
* Fri Jan 28 2011 Jakub Jelinek <jakub@redhat.com> 3.6.0-2
8febcd
- rebuilt against glibc 2.13 (#673046)
8febcd
- hook in pwrite64 syscall on ppc64 (#672858)
8febcd
- fix PIE handling on ppc/ppc64 (#665289)
8febcd
8febcd
* Fri Nov 12 2010 Jakub Jelinek <jakub@redhat.com> 3.6.0-1
8febcd
- update to 3.6.0
8febcd
- add s390x support (#632354)
8febcd
- provide a replacement for str{,n}casecmp{,_l} (#626470)
8febcd
8febcd
* Tue May 18 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-18
8febcd
- rebuilt against glibc 2.12
8febcd
8febcd
* Mon Apr 12 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-16
8febcd
- change pub_tool_basics.h not to include config.h (#579283)
8febcd
- add valgrind-openmpi package for OpenMPI support (#565541)
8febcd
- allow NULL second argument to capget (#450976)
8febcd
8febcd
* Wed Apr  7 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-15
8febcd
- handle i686 nopw insns with more than one data16 prefix (#574889)
8febcd
- DWARF4 support
8febcd
- handle getcpu and splice syscalls
8febcd
8febcd
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-14
8febcd
- fix build against latest glibc headers
8febcd
8febcd
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-13
8febcd
- DW_OP_mod is unsigned modulus instead of signed
8febcd
- fix up valgrind.pc (#551277)
8febcd
8febcd
* Mon Dec 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-12
8febcd
- don't require offset field to be set in adjtimex's
8febcd
  ADJ_OFFSET_SS_READ mode (#545866)
8febcd
8febcd
* Wed Dec  2 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-10
8febcd
- add handling of a bunch of recent syscalls and fix some
8febcd
  other syscall wrappers (Dodji Seketeli)
8febcd
- handle prelink created split of .bss into .dynbss and .bss
8febcd
  and similarly for .sbss and .sdynbss (#539874)
8febcd
8febcd
* Wed Nov  4 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-9
8febcd
- rebuilt against glibc 2.11
8febcd
- use upstream version of the ifunc support
8febcd
8febcd
* Wed Oct 28 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-8
8febcd
- add preadv/pwritev syscall support
8febcd
8febcd
* Tue Oct 27 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-7
8febcd
- add perf_counter_open syscall support (#531271)
8febcd
- add handling of some sbb/adc insn forms on x86_64 (KDE#211410)
8febcd
8febcd
* Fri Oct 23 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-6
8febcd
- ppc and ppc64 fixes
8febcd
8febcd
* Thu Oct 22 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-5
8febcd
- add emulation of 0x67 prefixed loop* insns on x86_64 (#530165)
8febcd
8febcd
* Wed Oct 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-4
8febcd
- handle reading of .debug_frame in addition to .eh_frame
8febcd
- ignore unknown DWARF3 expressions in evaluate_trivial_GX
8febcd
- suppress helgrind race errors in helgrind's own mythread_wrapper
8febcd
- fix compilation of x86 tests on x86_64 and ppc tests
8febcd
8febcd
* Wed Oct 14 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-3
8febcd
- handle many more DW_OP_* ops that GCC now uses
8febcd
- handle the more compact form of DW_AT_data_member_location
8febcd
- don't strip .debug_loc etc. from valgrind binaries
8febcd
8febcd
* Mon Oct 12 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-2
8febcd
- add STT_GNU_IFUNC support (Dodji Seketeli, #518247)
8febcd
- wrap inotify_init1 syscall (Dodji Seketeli, #527198)
8febcd
- fix mmap/mprotect handling in memcheck (KDE#210268)
8febcd
8febcd
* Fri Aug 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-1
8febcd
- update to 3.5.0
8febcd
8febcd
* Tue Jul 28 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-7
8febcd
- handle futex ops newly added during last 4 years (#512121)
8febcd
8febcd
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 3.4.1-6
8febcd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8febcd
8febcd
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-5
8febcd
- add support for DW_CFA_{remember,restore}_state
8febcd
8febcd
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-4
8febcd
- handle version 3 .debug_frame, .eh_frame, .debug_info and
8febcd
  .debug_line (#509197)
8febcd
8febcd
* Mon May 11 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-3
8febcd
- rebuilt against glibc 2.10.1
8febcd
8febcd
* Wed Apr 22 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-2
8febcd
- redirect x86_64 ld.so strlen early (#495645)
8febcd
8febcd
* Mon Mar  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-1
8febcd
- update to 3.4.1
8febcd
8febcd
* Mon Feb  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.0-3
8febcd
- update to 3.4.0
8febcd
8febcd
* Wed Apr 16 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-3
8febcd
- add suppressions for glibc 2.8
8febcd
- add a bunch of syscall wrappers (#441709)
8febcd
8febcd
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-2
8febcd
- add _dl_start suppression for ppc/ppc64
8febcd
8febcd
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-1
8febcd
- update to 3.3.0
8febcd
- split off devel bits into valgrind-devel subpackage
8febcd
8febcd
* Thu Oct 18 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-7
8febcd
- add suppressions for glibc >= 2.7
8febcd
8febcd
* Fri Aug 31 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-6
8febcd
- handle new x86_64 nops (#256801, KDE#148447)
8febcd
- add support for private futexes (KDE#146781)
8febcd
- update License tag
8febcd
8febcd
* Fri Aug  3 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-5
8febcd
- add ppc64-linux symlink in valgrind ppc.rpm, so that when
8febcd
  rpm prefers 32-bit binaries over 64-bit ones 32-bit
8febcd
  /usr/bin/valgrind can find 64-bit valgrind helper binaries
8febcd
  (#249773)
8febcd
- power5+ and power6 support (#240762)
8febcd
8febcd
* Thu Jun 28 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-4
8febcd
- pass GDB=%%{_prefix}/gdb to configure to fix default
8febcd
  --db-command (#220840)
8febcd
8febcd
* Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-3
8febcd
- add suppressions for glibc >= 2.6
8febcd
- avoid valgrind internal error if io_destroy syscall is
8febcd
  passed a bogus argument
8febcd
8febcd
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-2
8febcd
- fix valgrind.pc again
8febcd
8febcd
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-1
8febcd
- update to 3.2.3
8febcd
8febcd
* Wed Nov  8 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-7
8febcd
- some cachegrind improvements (Ulrich Drepper)
8febcd
8febcd
* Mon Nov  6 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-6
8febcd
- fix valgrind.pc (#213149)
8febcd
- handle Intel Core2 cache sizes in cachegrind (Ulrich Drepper)
8febcd
8febcd
* Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-5
8febcd
- fix valgrind on ppc/ppc64 where PAGESIZE is 64K (#211598)
8febcd
8febcd
* Sun Oct  1 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-4
8febcd
- adjust for glibc-2.5
8febcd
8febcd
* Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-3
8febcd
- another DW_CFA_set_loc handling fix
8febcd
8febcd
* Tue Sep 26 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-2
8febcd
- fix openat handling (#208097)
8febcd
- fix DW_CFA_set_loc handling
8febcd
8febcd
* Tue Sep 19 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-1
8febcd
- update to 3.2.1 bugfix release
8febcd
  - SSE3 emulation fixes, reduce memcheck false positive rate,
8febcd
    4 dozens of bugfixes
8febcd
8febcd
* Mon Aug 21 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-5
8febcd
- handle the new i686/x86_64 nops (#203273)
8febcd
8febcd
* Fri Jul 28 2006 Jeremy Katz <katzj@redhat.com> - 1:3.2.0-4
8febcd
- rebuild to bring ppc back
8febcd
8febcd
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.2.0-3.1
8febcd
- rebuild
8febcd
8febcd
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-3
8febcd
- handle [sg]et_robust_list syscall on ppc{32,64}
8febcd
8febcd
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-2
8febcd
- fix ppc64 symlink to 32-bit valgrind libdir
8febcd
- handle a few extra ppc64 syscalls
8febcd
8febcd
* Thu Jun 15 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-1
8febcd
- update to 3.2.0
8febcd
  - ppc64 support
8febcd
8febcd
* Fri May 26 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-3
8febcd
- handle [sg]et_robust_list syscalls on i?86/x86_64
8febcd
- handle *at syscalls on ppc
8febcd
- ensure on x86_64 both 32-bit and 64-bit glibc{,-devel} are
8febcd
  installed in the buildroot (#191820)
8febcd
8febcd
* Wed Apr 12 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-2
8febcd
- handle many syscalls that were unhandled before, especially on ppc
8febcd
8febcd
* Mon Apr  3 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-1
8febcd
- upgrade to 3.1.1
8febcd
  - many bugfixes
8febcd
8febcd
* Mon Mar 13 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-2
8febcd
- add support for DW_CFA_val_offset{,_sf}, DW_CFA_def_cfa_sf
8febcd
  and skip over DW_CFA_val_expression quietly
8febcd
- adjust libc/ld.so filenames in glibc-2.4.supp for glibc 2.4
8febcd
  release
8febcd
8febcd
* Mon Jan  9 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-1
8febcd
- upgrade to 3.1.0 (#174582)
8febcd
  - many bugfixes, ppc32 support
8febcd
8febcd
* Thu Oct 13 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-2
8febcd
- remove Obsoletes for valgrind-callgrind, as it has been
8febcd
  ported to valgrind 3.0.x already
8febcd
8febcd
* Sun Sep 11 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-1
8febcd
- upgrade to 3.0.1
8febcd
  - many bugfixes
8febcd
- handle xattr syscalls on x86-64 (Ulrich Drepper)
8febcd
8febcd
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-3
8febcd
- fix amd64 handling of cwtd instruction
8febcd
- fix amd64 handling of e.g. sarb $0x4,val(%%rip)
8febcd
- speedup amd64 insn decoding
8febcd
8febcd
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-2
8febcd
- lower x86_64 stage2 base from 112TB down to 450GB, so that
8febcd
  valgrind works even on 2.4.x kernels.  Still way better than
8febcd
  1.75GB that stock valgrind allows
8febcd
8febcd
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-1
8febcd
- upgrade to 3.0.0
8febcd
  - x86_64 support
8febcd
- temporarily obsolete valgrind-callgrind, as it has not been
8febcd
  ported yet
8febcd
8febcd
* Tue Jul 12 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-3
8febcd
- build some insn tests with -mmmx, -msse or -msse2 (#161572)
8febcd
- handle glibc-2.3.90 the same way as 2.3.[0-5]
8febcd
8febcd
* Wed Mar 30 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-2
8febcd
- resurrect the non-upstreamed part of valgrind_h patch
8febcd
- remove 2.1.2-4G patch, seems to be upstreamed
8febcd
- resurrect passing -fno-builtin in memcheck tests
8febcd
8febcd
* Sun Mar 27 2005 Colin Walters <walters@redhat.com> 2.4.0-1
8febcd
- New upstream version 
8febcd
- Update valgrind-2.2.0-regtest.patch to 2.4.0; required minor
8febcd
  massaging
8febcd
- Disable valgrind-2.1.2-4G.patch for now; Not going to touch this,
8febcd
  and Fedora does not ship 4G kernel by default anymore
8febcd
- Remove upstreamed valgrind-2.2.0.ioctls.patch
8febcd
- Remove obsolete valgrind-2.2.0-warnings.patch; Code is no longer
8febcd
  present
8febcd
- Remove upstreamed valgrind-2.2.0-valgrind_h.patch
8febcd
- Remove obsolete valgrind-2.2.0-unnest.patch and
8febcd
  valgrind-2.0.0-pthread-stacksize.patch; valgrind no longer
8febcd
  includes its own pthread library
8febcd
8febcd
* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-10
8febcd
- rebuilt with GCC 4
8febcd
8febcd
* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-8
8febcd
- avoid unnecessary use of nested functions for pthread_once
8febcd
  cleanup
8febcd
8febcd
* Mon Dec  6 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-7
8febcd
- update URL (#141873)
8febcd
8febcd
* Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-6
8febcd
- act as if NVALGRIND is defined when using <valgrind.h>
8febcd
  in non-m32/i386 programs (#138923)
8febcd
- remove weak from VALGRIND_PRINTF*, make it static and
8febcd
  add unused attribute
8febcd
8febcd
* Mon Nov  8 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-4
8febcd
- fix a printout and possible problem with local variable
8febcd
  usage around setjmp (#138254)
8febcd
8febcd
* Tue Oct  5 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-3
8febcd
- remove workaround for buggy old makes (#134563)
8febcd
8febcd
* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-2
8febcd
- handle some more ioctls (Peter Jones, #131967)
8febcd
8febcd
* Thu Sep  2 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-1
8febcd
- update to 2.2.0
8febcd
8febcd
* Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-3
8febcd
- fix packaging of documentation
8febcd
8febcd
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-2
8febcd
- allow tracing of 32-bit binaries on x86-64
8febcd
8febcd
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-1
8febcd
- update to 2.1.2
8febcd
- run make regtest as part of package build
8febcd
- use glibc-2.3 suppressions instead of glibc-2.2 suppressions
8febcd
8febcd
* Thu Apr 29 2004 Colin Walters <walters@redhat.com> 2.0.0-1
8febcd
- update to 2.0.0
8febcd
8febcd
* Tue Feb 25 2003 Jeff Johnson <jbj@redhat.com> 1.9.4-0.20030228
8febcd
- update to 1.9.4 from CVS.
8febcd
- dwarf patch from Graydon Hoare.
8febcd
- sysinfo patch from Graydon Hoare, take 1.
8febcd
8febcd
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-6.20030207
8febcd
- add return codes to syscalls.
8febcd
- fix: set errno after syscalls.
8febcd
8febcd
* Tue Feb 11 2003 Graydon Hoare <graydon@redhat.com> 1.9.3-5.20030207
8febcd
- add handling for separate debug info (+fix).
8febcd
- handle blocking readv/writev correctly.
8febcd
- comment out 4 overly zealous pthread checks.
8febcd
8febcd
* Tue Feb 11 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-4.20030207
8febcd
- move _pthread_desc to vg_include.h.
8febcd
- implement pthread_mutex_timedlock().
8febcd
- implement pthread_barrier_wait().
8febcd
8febcd
* Mon Feb 10 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-3.20030207
8febcd
- import all(afaik) missing functionality from linuxthreads.
8febcd
8febcd
* Sun Feb  9 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-2.20030207
8febcd
- import more missing functionality from linuxthreads in glibc-2.3.1.
8febcd
8febcd
* Sat Feb  8 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-1.20030207
8febcd
- start fixing nptl test cases.
8febcd
8febcd
* Fri Feb  7 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-0.20030207
8febcd
- build against current 1.9.3 with nptl hacks.
8febcd
8febcd
* Tue Oct 15 2002 Alexander Larsson <alexl@redhat.com>
8febcd
- Update to 1.0.4
8febcd
8febcd
* Fri Aug  9 2002 Alexander Larsson <alexl@redhat.com>
8febcd
- Update to 1.0.0
8febcd
8febcd
* Wed Jul  3 2002 Alexander Larsson <alexl@redhat.com>
8febcd
- Update to pre4.
8febcd
8febcd
* Tue Jun 18 2002 Alexander Larsson <alla@lysator.liu.se>
8febcd
- Add threadkeys and extra suppressions patches. Bump epoch.
8febcd
8febcd
* Mon Jun 17 2002 Alexander Larsson <alla@lysator.liu.se>
8febcd
- Updated to 1.0pre1
8febcd
8febcd
* Tue May 28 2002 Alex Larsson <alexl@redhat.com>
8febcd
- Updated to 20020524. Added GLIBC_PRIVATE patch
8febcd
8febcd
* Thu May  9 2002 Jonathan Blandford <jrb@redhat.com>
8febcd
- add missing symbol __pthread_clock_settime
8febcd
8febcd
* Wed May  8 2002 Alex Larsson <alexl@redhat.com>
8febcd
- Update to 20020508
8febcd
8febcd
* Mon May  6 2002 Alex Larsson <alexl@redhat.com>
8febcd
- Update to 20020503b
8febcd
8febcd
* Thu May  2 2002 Alex Larsson <alexl@redhat.com>
8febcd
- update to new snapshot
8febcd
8febcd
* Mon Apr 29 2002 Alex Larsson <alexl@redhat.com> 20020428-1
8febcd
- update to new snapshot
8febcd
8febcd
* Fri Apr 26 2002 Jeremy Katz <katzj@redhat.com> 20020426-1
8febcd
- update to new snapshot
8febcd
8febcd
* Thu Apr 25 2002 Alex Larsson <alexl@redhat.com> 20020424-5
8febcd
- Added stack patch. Commented out other patches.
8febcd
8febcd
* Wed Apr 24 2002 Nalin Dahyabhai <nalin@redhat.com> 20020424-4
8febcd
- filter out GLIBC_PRIVATE requires, add preload patch
8febcd
8febcd
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-3
8febcd
- Make glibc 2.2 and XFree86 4 the default supressions
8febcd
8febcd
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-2
8febcd
- Added patch that includes atomic.h
8febcd
8febcd
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-1
8febcd
- Initial build