Blame SPECS/pcre.spec

1e2217
# This is stable release:
1e2217
#%%global rcversion RC1
1e2217
Name: pcre
1e2217
Version: 8.32
191adc
Release: %{?rcversion:0.}15%{?rcversion:.%rcversion}%{?dist}
1e2217
%global myversion %{version}%{?rcversion:-%rcversion}
1e2217
Summary: Perl-compatible regular expression library
1e2217
Group: System Environment/Libraries
1e2217
License: BSD
1e2217
URL: http://www.pcre.org/
1e2217
Source: ftp://ftp.csx.cam.ac.uk/pub/software/programming/%{name}/%{?rcversion:Testing/}%{name}-%{myversion}.tar.bz2
1e2217
# Upstream thinks RPATH is good idea.
1e2217
Patch0: pcre-8.21-multilib.patch
1e2217
# Refused by upstream, bug #675477
1e2217
Patch1: pcre-8.32-refused_spelling_terminated.patch
1e2217
# In upstream after 8.32
1e2217
Patch2: pcre-8.32-Fix-forward-search-in-JIT-when-link-size-is-3-or-gre.patch
1e2217
# In upstream after 8.32
1e2217
Patch3: pcre-8.32-Fix-two-buffer-over-read-issues-in-16-and-32-bit-mod.patch
1e2217
# Fix pcregrep on empty line, in upstream after 8.33-RC1
1e2217
Patch4: pcre-8.33-RC1-Fix-pcregrep-so-that-it-can-find-empty-lines.patch
1e2217
# Grow buffer in pcretest properly, in upstream after 8.33-RC1
1e2217
Patch5: pcre-8.33-RC1-Fix-pcretest-crash-with-a-data-line-longer-than-6553.patch
1e2217
# Fix passing too small output vector to pcre_dfa_exec, in upstream after
1e2217
# 8.33-RC1, bug #963284
1e2217
Patch6: pcre-8.33-RC1-Fix-segfault-when-pcre_dfa_exec-is-called-with-an-ou.patch
b2aafa
# Fix jitted range check, in upstream after 8.34, bug #1048101
b2aafa
Patch7: pcre-8.34-Fix-range-check-in-JIT-path.patch
b8498e
# Fix unused memory usage on zero-repeat assertion condition, bug #1169797,
b8498e
# CVE-2014-8964, in upstream after 8.36
b8498e
Patch8: pcre-8.32-Fix-zero-repeat-assertion-condition-bug.patch
191adc
# Fix compiling expression where start-anchored character with more than one
191adc
# other case follows circumflex in multiline UTF mode, bug #1110621,
191adc
# in upstream 8.36
191adc
Patch9: pcre-8.32-Fix-bad-starting-data-when-char-with-more-than-one-o.patch
191adc
# Fix character class with a literal quotation, bug #1111091,
191adc
# upstream bug #1494, in upstream after 8.35
191adc
Patch10: pcre-8.32-Fix-bad-compile-of-Qx-.-where-x-is-any-character.patch
191adc
# Fix empty-matching possessive zero-repeat groups in interpreted mode,
191adc
# bug #1119320, upstream bug #1500, in upstream after 8.35
191adc
Patch11: pcre-8.33-Fix-empty-matching-possessive-zero-repeat-groups-bug.patch
191adc
# Fix compiler crash for zero-repeated groups with a recursive back reference,
191adc
# bug #1119356, upstream bug #1503, in upstream after 8.35
191adc
Patch12: pcre-8.32-Fix-compiler-crash-misbehaviour-for-zero-repeated-gr.patch
191adc
# Reset non-matched groups within capturing group up to forced match,
191adc
# bug #1161597, in upstream after 8.36
191adc
Patch13: pcre-8.32-Fix-bug-when-there-are-unset-groups-prior-to-ACCEPT-.patch
191adc
# Fix static linking, bug #1217111, in upstream after 8.37-RC1
191adc
Patch14: pcre-8.37-RC1-Fix-static-linking-issue-with-pkg-config.patch
1e2217
BuildRequires: readline-devel
1e2217
# New libtool to get rid of rpath
1e2217
BuildRequires: autoconf, automake, libtool
1e2217
1e2217
%description
1e2217
Perl-compatible regular expression library.
1e2217
PCRE has its own native API, but a set of "wrapper" functions that are based on
1e2217
the POSIX API are also supplied in the library libpcreposix. Note that this
1e2217
just provides a POSIX calling interface to PCRE: the regular expressions
1e2217
themselves still follow Perl syntax and semantics. The header file
1e2217
for the POSIX-style functions is called pcreposix.h.
1e2217
1e2217
%package devel
1e2217
Summary: Development files for %{name}
1e2217
Group: Development/Libraries
1e2217
Requires: %{name}%{?_isa} = %{version}-%{release}
1e2217
1e2217
%description devel
1e2217
Development files (Headers, libraries for dynamic linking, etc) for %{name}.
1e2217
1e2217
%package static
1e2217
Summary: Static library for %{name}
1e2217
Group: Development/Libraries
1e2217
Requires: %{name}-devel%{_isa} = %{version}-%{release}
1e2217
1e2217
%description static
1e2217
Library for static linking for %{name}.
1e2217
1e2217
%package tools
1e2217
Summary: Auxiliary utilities for %{name}
1e2217
Group: Development/Tools
1e2217
Requires: %{name}%{_isa} = %{version}-%{release}
1e2217
1e2217
%description tools
1e2217
Utilities demonstrating PCRE capabilities like pcregrep or pcretest.
1e2217
1e2217
%prep
1e2217
%setup -q -n %{name}-%{myversion}
1e2217
# Get rid of rpath
1e2217
%patch0 -p1 -b .multilib
1e2217
%patch1 -p1 -b .terminated_typos
1e2217
%patch2 -p1 -b .forward_jit
1e2217
%patch3 -p1 -b .buffer_over_read
1e2217
%patch4 -p1 -b .pcregrep_empty_line
1e2217
%patch5 -p1 -b .pcretest_grow_buffer
1e2217
%patch6 -p1 -b .vector_size
b2aafa
%patch7 -p1 -b .jitted_range_check
b8498e
%patch8 -p1 -b .zero_repeat_assertion
191adc
%patch9 -p1 -b .starting_data
191adc
%patch10 -p1 -b .class_with_literal
191adc
%patch11 -p1 -b .empty_zero_repeat_group
191adc
%patch12 -p1 -b .compiler_crash_zero_group
191adc
%patch13 -p1 -b .reset_groups
191adc
%patch14 -p1 -b .static_linking
1e2217
# Because of rpath patch
1e2217
libtoolize --copy --force && autoreconf -vif
1e2217
# One contributor's name is non-UTF-8
1e2217
for F in ChangeLog; do
1e2217
    iconv -f latin1 -t utf8 "$F" >"${F}.utf8"
1e2217
    touch --reference "$F" "${F}.utf8"
1e2217
    mv "${F}.utf8" "$F"
1e2217
done
1e2217
1e2217
%build
b8498e
# There is an explicit request to optimize PCRE more, bugs #1051072, #1123498
b8498e
%global _performance_build 1
1e2217
%ifarch ppc64
b2aafa
# There is a strict-aliasing problem on PPC64, bug #881232
1e2217
%global optflags %{optflags} -fno-strict-aliasing
1e2217
%endif
1e2217
%configure \
b8498e
%ifarch aarch64 ppc64le s390 s390x sparc64 sparcv9
1e2217
    --disable-jit \
1e2217
%else
1e2217
    --enable-jit \
1e2217
%endif
1e2217
    --enable-pcretest-libreadline --enable-utf --enable-unicode-properties \
1e2217
    --enable-pcre8 --enable-pcre16 --enable-pcre32
1e2217
make %{?_smp_mflags}
1e2217
1e2217
%install
1e2217
make install DESTDIR=$RPM_BUILD_ROOT
1e2217
# Get rid of unneeded *.la files
1e2217
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
1e2217
# These are handled by %%doc in %%files
1e2217
rm -rf $RPM_BUILD_ROOT%{_docdir}/pcre
1e2217
1e2217
%check
1e2217
%ifarch s390 ppc
1e2217
# larger stack is needed on s390, ppc
1e2217
ulimit -s 10240
1e2217
%endif
b8498e
make check VERBOSE=yes
1e2217
1e2217
%post -p /sbin/ldconfig
1e2217
1e2217
%postun -p /sbin/ldconfig
1e2217
1e2217
%files
1e2217
%{_libdir}/*.so.*
1e2217
%doc AUTHORS COPYING LICENCE NEWS README ChangeLog
1e2217
1e2217
%files devel
1e2217
%{_libdir}/*.so
1e2217
%{_libdir}/pkgconfig/*
1e2217
%{_includedir}/*.h
1e2217
%{_mandir}/man1/pcre-config.*
1e2217
%{_mandir}/man3/*
1e2217
%{_bindir}/pcre-config
1e2217
%doc doc/*.txt doc/html
191adc
%doc HACKING pcredemo.c
1e2217
1e2217
%files static
1e2217
%{_libdir}/*.a
1e2217
%doc COPYING LICENCE 
1e2217
1e2217
%files tools
1e2217
%{_bindir}/pcregrep
1e2217
%{_bindir}/pcretest
1e2217
%{_mandir}/man1/pcregrep.*
1e2217
%{_mandir}/man1/pcretest.*
1e2217
1e2217
%changelog
191adc
* Wed Apr 29 2015 Petr Pisar <ppisar@redhat.com> - 8.32-15
191adc
- Fix compiling expression where start-anchored character with more than one
191adc
  other case follows circumflex in multiline UTF mode (bug #1110621)
191adc
- Fix character class with a literal quotation (bug #1111091)
191adc
- Fix empty-matching possessive zero-repeat groups in interpreted mode
191adc
  (bug #1119320)
191adc
- Fix compiler crash for zero-repeated groups with a recursive back reference
191adc
  (bug #1119356)
191adc
- Reset non-matched groups within capturing group up to forced match
191adc
  (bug #1161597)
191adc
- Fix static linking (bug #1217111)
191adc
- Package pcredemo.c as a documentation for pcre-devel (bug #1217118)
191adc
b8498e
* Tue Dec 02 2014 Petr Pisar <ppisar@redhat.com> - 8.32-14
b8498e
- Fix CVE-2014-8964 (unused memory usage on zero-repeat assertion condition)
b8498e
  (bug #1169797)
b8498e
b8498e
* Fri Aug 01 2014 Petr Pisar <ppisar@redhat.com> - 8.32-13
b8498e
- Disable unsupported JIT mode on little-endian 64-bit PowerPC platform
b8498e
  (bug #1125642)
b8498e
- Raise optimization level to 3 on little-endian 64-bit PowerPC (bug #1123498)
b8498e
b2aafa
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 8.32-12
b2aafa
- Mass rebuild 2014-01-24
b2aafa
b2aafa
* Fri Jan 10 2014 Petr Pisar <ppisar@redhat.com> - 8.32-11
b2aafa
- Raise optimization to level 3 on 64-bit PowerPC (bug #1051072)
b2aafa
b2aafa
* Thu Jan 09 2014 Petr Pisar <ppisar@redhat.com> - 8.32-10
b2aafa
- Fix jitted range check (bug #1048101)
b2aafa
b2aafa
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 8.32-9
b2aafa
- Mass rebuild 2013-12-27
b2aafa
1e2217
* Wed Oct 16 2013 Petr Pisar <ppisar@redhat.com> - 8.33-8
1e2217
- Disable strict-aliasing on PPC64 (bug #881232)
1e2217
1e2217
* Mon Jun 03 2013 Petr Pisar <ppisar@redhat.com> - 8.32-7
1e2217
- Disable unsupported JIT on aarch64 (bug #969693)
1e2217
1e2217
* Thu May 16 2013 Petr Pisar <ppisar@redhat.com> - 8.32-6
1e2217
- Fix passing too small output vector to pcre_dfa_exec (bug #963284)
1e2217
1e2217
* Mon May 13 2013 Petr Pisar <ppisar@redhat.com> - 8.32-5
1e2217
- Fix bad handling of empty lines in pcregrep tool (bug #961789)
1e2217
- Fix possible pcretest crash with a data line longer than 65536 bytes
1e2217
1e2217
* Mon Jan 28 2013 Petr Pisar <ppisar@redhat.com> - 8.32-4
1e2217
- Fix forward search in JIT when link size is 3 or greater
1e2217
- Fix buffer over-read in UTF-16 and UTF-32 modes with JIT
1e2217
1e2217
* Fri Jan 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 8.32-3
1e2217
- Adjust autoreconf to fix FTBFS on F-19
1e2217
1e2217
* Mon Jan 07 2013 Petr Pisar <ppisar@redhat.com> - 8.32-2
1e2217
- Make inter-subpackage dependencies architecture specific (bug #892187)
1e2217
1e2217
* Fri Nov 30 2012 Petr Pisar <ppisar@redhat.com> - 8.32-1
1e2217
- 8.32 bump
1e2217
1e2217
* Thu Nov 29 2012 Petr Pisar <ppisar@redhat.com> - 8.32-0.2.RC1
1e2217
- Inter-depend sub-packages to prevent from mixing different versions
1e2217
1e2217
* Tue Nov 13 2012 Petr Pisar <ppisar@redhat.com> - 8.32-0.1.RC1
1e2217
- 8.32-RC1 bump
1e2217
1e2217
* Mon Sep 03 2012 Petr Pisar <ppisar@redhat.com> - 8.31-2
1e2217
- Set re_nsub in regcomp() properly (bug #853990)
1e2217
1e2217
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.31-1.1
1e2217
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1e2217
1e2217
* Fri Jul 13 2012 Petr Pisar <ppisar@redhat.com> - 8.31-1
1e2217
- 8.31 bump
1e2217
1e2217
* Tue Jun 05 2012 Petr Pisar <ppisar@redhat.com> - 8.31-0.1.RC1
1e2217
- 8.31-RC1 bump
1e2217
1e2217
* Sat May 12 2012 Tom Callaway <spot@fedoraproject.org> - 8.30-7
1e2217
- disable jit for sparcv9 and sparc64
1e2217
1e2217
* Fri May 11 2012 Petr Pisar <ppisar@redhat.com> - 8.30-6
1e2217
- Fix spelling in manual pages (bug #820978)
1e2217
1e2217
* Mon Apr 23 2012 Petr Pisar <ppisar@redhat.com> - 8.30-5
1e2217
- Possessify high ASCII (bug #815217)
1e2217
- Fix ovector overflow (bug #815214)
1e2217
1e2217
* Fri Apr 20 2012 Petr Pisar <ppisar@redhat.com> - 8.30-4
1e2217
- Possesify \s*\R (bug #813237)
1e2217
1e2217
* Thu Apr 05 2012 Petr Pisar <ppisar@redhat.com> - 8.30-3
1e2217
- Fix look-behind assertion in UTF-8 JIT mode (bug #810314)
1e2217
1e2217
* Tue Feb 28 2012 Petr Pisar <ppisar@redhat.com> - 8.30-2
1e2217
- Remove old libpcre.so.0 from distribution
1e2217
- Move library to /usr
1e2217
1e2217
* Thu Feb 09 2012 Petr Pisar <ppisar@redhat.com> - 8.30-1
1e2217
- 8.30 bump
1e2217
- Add old libpcre.so.0 to preserve compatibility temporarily
1e2217
1e2217
* Fri Jan 27 2012 Petr Pisar <ppisar@redhat.com> - 8.30-0.1.RC1
1e2217
- 8.30 Relase candidate 1 with UTF-16 support and *API change*
1e2217
- Enable UTF-16 variant of PCRE library
1e2217
- The pcre_info() function has been removed from pcre library.
1e2217
- Loading compiled pattern does not fix endianity anymore. Instead an errror
1e2217
  is returned and the application can use pcre_pattern_to_host_byte_order() to
1e2217
  convert the pattern.
1e2217
- Surrogates (0xD800---0xDFFF) are forbidden in UTF-8 mode now.
1e2217
1e2217
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.21-2.1
1e2217
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1e2217
1e2217
* Mon Jan 02 2012 Petr Pisar <ppisar@redhat.com> - 8.21-2
1e2217
- Fix unmatched subpattern to not become wildcard (bug #769597)
1e2217
- Fix NULL pointer derefernce in pcre_free_study() (upstream bug #1186)
1e2217
1e2217
* Mon Dec 12 2011 Petr Pisar <ppisar@redhat.com> - 8.21-1
1e2217
- 8.21 bump
1e2217
1e2217
* Thu Dec 08 2011 Karsten Hopp <karsten@redhat.com> 8.21-0.2.RC1
1e2217
- ppc needs a larger stack similar to s390
1e2217
1e2217
* Tue Dec 06 2011 Petr Pisar <ppisar@redhat.com> - 8.21-0.1.RC1
1e2217
- 8.21-RC1 bump
1e2217
1e2217
* Fri Dec 02 2011 Petr Pisar <ppisar@redhat.com> - 8.20-7
1e2217
- Fix case-less match if cases differ in encoding length (bug #756675)
1e2217
1e2217
* Fri Nov 25 2011 Petr Pisar <ppisar@redhat.com> - 8.20-6
1e2217
- Fix cache-flush in JIT on PPC
1e2217
1e2217
* Tue Nov 22 2011 Petr Pisar <ppisar@redhat.com> - 8.20-5
1e2217
- Fix repeated forward reference (bug #755969)
1e2217
1e2217
* Wed Nov 16 2011 Petr Pisar <ppisar@redhat.com> - 8.20-4
1e2217
- Fix other look-behind regressions
1e2217
1e2217
* Tue Nov 15 2011 Petr Pisar <ppisar@redhat.com> - 8.20-3
1e2217
- Fix look-behind regression in 8.20
1e2217
1e2217
* Tue Nov 15 2011 Dan Horák <dan[at]danny.cz> - 8.20-2
1e2217
- fix build on s390(x) - disable jit and use larger stack for tests
1e2217
1e2217
* Fri Oct 21 2011 Petr Pisar <ppisar@redhat.com> - 8.20-1
1e2217
- 8.20 bump
1e2217
1e2217
* Tue Oct 11 2011 Petr Pisar <ppisar@redhat.com> - 8.20-0.1.RC3
1e2217
- 8.20-RC3 bump
1e2217
1e2217
* Fri Sep 23 2011 Petr Pisar <ppisar@redhat.com> - 8.20-0.1.RC2
1e2217
- 8.20-RC2 bump
1e2217
1e2217
* Mon Sep 12 2011 Petr Pisar <ppisar@redhat.com> - 8.20-0.1.RC1
1e2217
- 8.20-RC1 bump with JIT
1e2217
1e2217
* Tue Sep 06 2011 Petr Pisar <ppisar@redhat.com> - 8.13-4
1e2217
- Fix infinite matching PRUNE (bug #735720)
1e2217
1e2217
* Mon Aug 22 2011 Petr Pisar <ppisar@redhat.com> - 8.13-3
1e2217
- Fix parsing named class in expression (bug #732368)
1e2217
1e2217
* Thu Aug 18 2011 Petr Pisar <ppisar@redhat.com> - 8.13-2
1e2217
- Separate utilities from libraries
1e2217
- Move pcre-config(1) manual to pcre-devel sub-package
1e2217
- Remove explicit defattr from spec code
1e2217
- Compile pcretest with readline support
1e2217
1e2217
* Thu Aug 18 2011 Petr Pisar <ppisar@redhat.com> - 8.13-1
1e2217
- 8.13 bump: Bug-fix version, Unicode tables updated to 6.0.0, new pcregrep
1e2217
  option --buffer-size to adjust to long lines, new feature is passing of
1e2217
  *MARK information to callouts.
1e2217
- Should fix crash back-tracking over unicode sequence (bug #691319)
1e2217
1e2217
* Mon May 09 2011 Petr Pisar <ppisar@redhat.com> - 8.12-4
1e2217
- Fix caseless reference matching in UTF-8 mode when the upper/lower case
1e2217
  characters have different lengths (bug #702623)
1e2217
1e2217
* Mon May 09 2011 Petr Pisar <ppisar@redhat.com> - 8.12-3
1e2217
- Fix typos in manual pages (bugs #675476, #675477)
1e2217
- Clean spec file up
1e2217
1e2217
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.12-2
1e2217
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1e2217
1e2217
* Mon Jan 17 2011 Petr Pisar <ppisar@redhat.com> - 8.12-1
1e2217
- 8.12 bump
1e2217
- Remove accepted pcre-8.11-Fix-typo-in-pcreprecompile-3.patch
1e2217
1e2217
* Mon Dec 13 2010 Petr Pisar <ppisar@redhat.com> - 8.11-1
1e2217
- 8.11 bump
1e2217
- See ChangeLog for changes. Namely changes have been made to the way
1e2217
  PCRE_PARTIAL_HARD affects the matching of $, \z, \Z, \b, and \B.
1e2217
- Fix typo in pcreprecompile(3) manual
1e2217
- Document why shared library is not under /usr
1e2217
1e2217
* Mon Jul 12 2010 Petr Pisar <ppisar@redhat.com> - 8.10-1
1e2217
- 8.10 bump (bug #612635)
1e2217
- Add LICENCE to static subpackage because COPYING refers to it
1e2217
- Remove useless rpath by using new libtool (simple sed does not work anymore
1e2217
  because tests need to link against just-compiled library in %%check phase)
1e2217
1e2217
* Thu Jul 08 2010 Petr Pisar <ppisar@redhat.com> - 7.8-4
1e2217
- Add COPYING to static subpackage
1e2217
- Remove useless rpath
1e2217
1e2217
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.8-3
1e2217
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1e2217
1e2217
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.8-2
1e2217
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1e2217
1e2217
* Wed Oct 1 2008 Lubomir Rintel <lkundrak@v3.sk> - 7.8-1
1e2217
- Update to 7.8, drop upstreamed patches
1e2217
- Fix destination of documentation (#427763)
1e2217
- Use buildroot macro consistently
1e2217
- Separate the static library, as per current Guidelines
1e2217
- Satisfy rpmlint
1e2217
1e2217
* Fri Jul  4 2008 Tomas Hoger <thoger@redhat.com> - 7.3-4
1e2217
- Apply Tavis Ormandy's patch for CVE-2008-2371.
1e2217
1e2217
* Tue Feb 12 2008 Tomas Hoger <thoger@redhat.com> - 7.3-3
1e2217
- Backport patch from upstream pcre 7.6 to address buffer overflow
1e2217
  caused by "a character class containing a very large number of
1e2217
  characters with codepoints greater than 255 (in UTF-8 mode)"
1e2217
  CVE-2008-0674, #431660
1e2217
- Try re-enabling make check again.
1e2217
1e2217
* Fri Nov 16 2007 Stepan Kasal <skasal@redhat.com> - 7.3-2
1e2217
- Remove obsolete ``reqs''
1e2217
- add dist tag
1e2217
- update BuildRoot
1e2217
1e2217
* Mon Sep 17 2007 Than Ngo <than@redhat.com> - 7.3-1
1e2217
- bz292501, update to 7.3
1e2217
1e2217
* Mon Jan 22 2007 Than Ngo <than@redhat.com> - 7.0-1
1e2217
- 7.0
1e2217
1e2217
* Mon Nov 27 2006 Than Ngo <than@redhat.com> - 6.7-1
1e2217
- update to 6.7
1e2217
- fix #217303, enable-unicode-properties
1e2217
- sane stack limit
1e2217
1e2217
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 6.6-1.1
1e2217
- rebuild
1e2217
1e2217
* Tue May 09 2006 Than Ngo <than@redhat.com> 6.6-1
1e2217
- update to 6.6
1e2217
- fix multilib problem
1e2217
1e2217
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 6.3-1.2.1
1e2217
- bump again for double-long bug on ppc(64)
1e2217
1e2217
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 6.3-1.2
1e2217
- rebuilt for new gcc4.1 snapshot and glibc changes
1e2217
1e2217
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
1e2217
- rebuilt
1e2217
1e2217
* Wed Aug 24 2005 Than Ngo <than@redhat.com> 6.3-1
1e2217
- update to 6.3
1e2217
1e2217
* Fri Mar  4 2005 Joe Orton <jorton@redhat.com> 5.0-4
1e2217
- rebuild
1e2217
1e2217
* Fri Feb 11 2005 Joe Orton <jorton@redhat.com> 5.0-3
1e2217
- don't print $libdir in 'pcre-config --libs' output
1e2217
1e2217
* Thu Nov 18 2004 Joe Orton <jorton@redhat.com> 5.0-2
1e2217
- include LICENCE, AUTHORS in docdir
1e2217
- run make check
1e2217
- move %%configure to %%build
1e2217
1e2217
* Thu Nov 18 2004 Than Ngo <than@redhat.com> 5.0-1
1e2217
- update to 5.0
1e2217
- change License: BSD
1e2217
- fix header location #64248
1e2217
1e2217
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1e2217
- rebuilt
1e2217
1e2217
* Tue Mar 23 2004 Than Ngo <than@redhat.com> 4.5-2
1e2217
- add the correct pcre license, #118781
1e2217
1e2217
* Fri Mar 12 2004 Than Ngo <than@redhat.com> 4.5-1
1e2217
- update to 4.5
1e2217
1e2217
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
1e2217
- rebuilt
1e2217
1e2217
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1e2217
- rebuilt
1e2217
1e2217
* Fri Sep 26 2003 Harald Hoyer <harald@redhat.de> 4.4-1
1e2217
- 4.4
1e2217
1e2217
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1e2217
- rebuilt
1e2217
1e2217
* Wed May  7 2003 Than Ngo <than@redhat.com> 4.2-1
1e2217
- update to 4.2
1e2217
1e2217
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
1e2217
- rebuilt
1e2217
1e2217
* Tue Jan 21 2003 Than Ngo <than@redhat.com> 3.9-9
1e2217
- build with utf8, bug #81504
1e2217
1e2217
* Fri Nov 22 2002 Elliot Lee <sopwith@redhat.com> 3.9-8
1e2217
- Really remove .la files
1e2217
1e2217
* Fri Oct 11 2002 Than Ngo <than@redhat.com> 3.9-7
1e2217
- remove .la
1e2217
1e2217
* Thu Oct 10 2002 Than Ngo <than@redhat.com> 3.9-7
1e2217
- Typo bug
1e2217
1e2217
* Wed Oct  9 2002 Than Ngo <than@redhat.com> 3.9-6
1e2217
- Added missing so symlink
1e2217
1e2217
* Thu Sep 19 2002 Than Ngo <than@redhat.com> 3.9-5.1
1e2217
- Fixed to build s390/s390x/x86_64
1e2217
1e2217
* Thu Jun 27 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.9-5
1e2217
- Fix #65009
1e2217
1e2217
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
1e2217
- automated rebuild
1e2217
1e2217
* Thu May 23 2002 Tim Powers <timp@redhat.com>
1e2217
- automated rebuild
1e2217
1e2217
* Mon Mar  4 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.9-2
1e2217
- rebuild
1e2217
1e2217
* Fri Jan 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.9-1
1e2217
- Update to 3.9
1e2217
1e2217
* Wed Nov 14 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.7-1
1e2217
- Update to 3.7
1e2217
1e2217
* Thu May 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.4-2
1e2217
- Move libpcre to /lib, grep uses it these days (#41104)
1e2217
1e2217
* Wed Apr 18 2001 Bernhard Rosenkraenzer <bero@redhat.com>
1e2217
- Move this to a separate package, used to be in kdesupport, but it's
1e2217
  generally useful...