Blame SPECS/valgrind.spec

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