6a541c
6a541c
%if 0%{?fedora} < 18 && 0%{?rhel} < 7
6a541c
%define dbdep db4-devel
6a541c
%else
6a541c
%define dbdep libdb-devel
6a541c
%endif
6a541c
6a541c
%if 0%{?fedora} < 27 && 0%{?rhel} <= 7
6a541c
%global with_nss 1
6a541c
%else
6a541c
%global with_nss 0
6a541c
%endif
6a541c
6a541c
%define apuver 1
6a541c
6a541c
Summary: Apache Portable Runtime Utility library
6a541c
Name: apr-util
6a541c
Version: 1.6.1
c608ed
Release: 20%{?dist}.1
6a541c
License: ASL 2.0
6a541c
URL: https://apr.apache.org/
6a541c
Source0: https://www.apache.org/dist/apr/%{name}-%{version}.tar.bz2
6a541c
Patch1: apr-util-1.2.7-pkgconf.patch
6a541c
Patch4: apr-util-1.4.1-private.patch
6a541c
Patch5: apr-util-mariadb-upstream.patch
c608ed
c608ed
# Security patches:
c608ed
# https://bugzilla.redhat.com/show_bug.cgi?id=2169652
c608ed
Patch100: apr-util-1.6.1-CVE-2022-25147.patch
c608ed
6a541c
BuildRequires: gcc
6a541c
BuildRequires: autoconf, apr-devel >= 1.3.0
6a541c
BuildRequires: %{dbdep}, expat-devel, libuuid-devel
6a541c
Recommends: apr-util-openssl%{_isa} = %{version}-%{release}
6a541c
%if 0%{?fedora} < 27
6a541c
Requires: apr-util-bdb%{?_isa} = %{version}-%{release}
6a541c
%else
6a541c
Recommends: apr-util-bdb%{_isa} = %{version}-%{release}
6a541c
%endif
6a541c
6a541c
%description
6a541c
The mission of the Apache Portable Runtime (APR) is to provide a
6a541c
free library of C data structures and routines.  This library
6a541c
contains additional utility interfaces for APR; including support
6a541c
for XML, LDAP, database interfaces, URI parsing and more.
6a541c
6a541c
%package devel
6a541c
Summary: APR utility library development kit
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}, apr-devel%{?_isa}, pkgconfig
6a541c
Requires: %{dbdep}%{?_isa}, expat-devel%{?_isa}, openldap-devel%{?_isa}
6a541c
6a541c
%description devel
6a541c
This package provides the support files which can be used to 
6a541c
build applications using the APR utility library.  The mission 
6a541c
of the Apache Portable Runtime (APR) is to provide a free 
6a541c
library of C data structures and routines.
6a541c
6a541c
%package pgsql
6a541c
Summary: APR utility library PostgreSQL DBD driver
6a541c
BuildRequires: libpq-devel
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}
6a541c
6a541c
%description pgsql
6a541c
This package provides the PostgreSQL driver for the apr-util
6a541c
DBD (database abstraction) interface.
6a541c
6a541c
%package bdb
6a541c
Summary: APR utility library Berkeley DB driver
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}
6a541c
6a541c
%description bdb
6a541c
This package provides the Berkeley DB driver for the apr-util
6a541c
DBM (database abstraction) interface.
6a541c
6a541c
%package mysql
6a541c
Summary: APR utility library MySQL DBD driver
6a541c
BuildRequires: mariadb-connector-c-devel
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}
6a541c
6a541c
%description mysql
6a541c
This package provides the MySQL driver for the apr-util DBD
6a541c
(database abstraction) interface.
6a541c
6a541c
%package sqlite
6a541c
Summary: APR utility library SQLite DBD driver
6a541c
BuildRequires: sqlite-devel >= 3.0.0
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}
6a541c
6a541c
%description sqlite
6a541c
This package provides the SQLite driver for the apr-util DBD
6a541c
(database abstraction) interface.
6a541c
6a541c
%package odbc
6a541c
Summary: APR utility library ODBC DBD driver
6a541c
BuildRequires: unixODBC-devel
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}
6a541c
6a541c
%description odbc
6a541c
This package provides the ODBC driver for the apr-util DBD
6a541c
(database abstraction) interface.
6a541c
6a541c
%package ldap
6a541c
Summary: APR utility library LDAP support
6a541c
BuildRequires: openldap-devel
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}
6a541c
6a541c
%description ldap
6a541c
This package provides the LDAP support for the apr-util.
6a541c
6a541c
%package openssl
6a541c
Summary: APR utility library OpenSSL crypto support
6a541c
BuildRequires: openssl-devel
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}
6a541c
6a541c
%description openssl
6a541c
This package provides the OpenSSL crypto support for the apr-util.
6a541c
6a541c
%if %{with_nss}
6a541c
%package nss
6a541c
Summary: APR utility library NSS crypto support
6a541c
BuildRequires: nss-devel
6a541c
BuildRequires: make
6a541c
Requires: apr-util%{?_isa} = %{version}-%{release}
6a541c
6a541c
%description nss
6a541c
This package provides the NSS crypto support for the apr-util.
6a541c
%endif
6a541c
6a541c
%prep
6a541c
%setup -q
6a541c
%patch1 -p1 -b .pkgconf
6a541c
%patch4 -p1 -b .private
6a541c
%patch5 -p1 -b .maria
6a541c
c608ed
%patch100 -p1 -b .CVE-2022-25147
c608ed
6a541c
%build
6a541c
autoheader && autoconf
6a541c
# A fragile autoconf test which fails if the code trips
6a541c
# any other warning; force correct result for OpenLDAP:
6a541c
export ac_cv_ldap_set_rebind_proc_style=three
6a541c
%configure --with-apr=%{_prefix} \
6a541c
        --includedir=%{_includedir}/apr-%{apuver} \
6a541c
        --with-ldap=ldap_r --without-gdbm \
6a541c
        --with-sqlite3 --with-pgsql --with-mysql --with-odbc \
6a541c
        --with-dbm=db5 --with-berkeley-db \
6a541c
        --without-sqlite2 \
6a541c
        --with-crypto --with-openssl \
6a541c
%if %{with_nss}
6a541c
        --with-nss
6a541c
%else
6a541c
        --without-nss
6a541c
%endif
6a541c
%{make_build}
6a541c
6a541c
%install
6a541c
rm -rf $RPM_BUILD_ROOT
6a541c
%{make_install}
6a541c
6a541c
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/aclocal
6a541c
install -m 644 build/find_apu.m4 $RPM_BUILD_ROOT/%{_datadir}/aclocal
6a541c
6a541c
# Unpackaged files; remove the static libaprutil
6a541c
rm -f $RPM_BUILD_ROOT%{_libdir}/aprutil.exp \
6a541c
      $RPM_BUILD_ROOT%{_libdir}/libapr*.a
6a541c
6a541c
# And remove the reference to the static libaprutil from the .la
6a541c
# file.
6a541c
sed -i '/^old_library/s,libapr.*\.a,,' \
6a541c
      $RPM_BUILD_ROOT%{_libdir}/libapr*.la
6a541c
6a541c
# Remove unnecessary exports from dependency_libs
6a541c
sed -ri '/^dependency_libs/{s,-l(pq|sqlite[0-9]|rt|dl|uuid) ,,g}' \
6a541c
      $RPM_BUILD_ROOT%{_libdir}/libapr*.la
6a541c
6a541c
# Trim libtool DSO cruft
6a541c
rm -f $RPM_BUILD_ROOT%{_libdir}/apr-util-%{apuver}/*.*a
6a541c
6a541c
%check
6a541c
# Run the less verbose test suites
6a541c
export MALLOC_CHECK_=2 MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
6a541c
cd test
6a541c
%{make_build} testall
6a541c
# testall breaks with DBD DSO; ignore
6a541c
export LD_LIBRARY_PATH=%{buildroot}/%{_libdir}/apr-util-%{apuver}
6a541c
./testall -v -q
6a541c
6a541c
%ldconfig_scriptlets
6a541c
6a541c
%files
6a541c
%doc CHANGES LICENSE NOTICE
6a541c
%{_libdir}/libaprutil-%{apuver}.so.*
6a541c
%dir %{_libdir}/apr-util-%{apuver}
6a541c
6a541c
%files bdb
6a541c
%{_libdir}/apr-util-%{apuver}/apr_dbm_db*
6a541c
6a541c
%files pgsql
6a541c
%{_libdir}/apr-util-%{apuver}/apr_dbd_pgsql*
6a541c
6a541c
%files mysql
6a541c
%{_libdir}/apr-util-%{apuver}/apr_dbd_mysql*
6a541c
6a541c
%files sqlite
6a541c
%{_libdir}/apr-util-%{apuver}/apr_dbd_sqlite*
6a541c
6a541c
%files odbc
6a541c
%{_libdir}/apr-util-%{apuver}/apr_dbd_odbc*
6a541c
6a541c
%files ldap
6a541c
%{_libdir}/apr-util-%{apuver}/apr_ldap*
6a541c
6a541c
%files openssl
6a541c
%{_libdir}/apr-util-%{apuver}/apr_crypto_openssl*
6a541c
6a541c
%if %{with_nss}
6a541c
%files nss
6a541c
%{_libdir}/apr-util-%{apuver}/apr_crypto_nss*
6a541c
%endif
6a541c
6a541c
%files devel
6a541c
%{_bindir}/apu-%{apuver}-config
6a541c
%{_libdir}/libaprutil-%{apuver}.*a
6a541c
%{_libdir}/libaprutil-%{apuver}.so
6a541c
%{_includedir}/apr-%{apuver}/*.h
6a541c
%{_libdir}/pkgconfig/*.pc
6a541c
%{_datadir}/aclocal/*.m4
6a541c
6a541c
%changelog
c608ed
* Tue May 09 2023 Luboš Uhliarik <luhliari@redhat.com> - 1.6.1-20.1
c608ed
- Resolves: #2196575 - CVE-2022-25147 apr-util: out-of-bounds writes
c608ed
  in the apr_base64
c608ed
6a541c
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.6.1-20
6a541c
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
6a541c
  Related: rhbz#1991688
6a541c
6a541c
* Wed Jul 28 2021 Florian Weimer <fweimer@redhat.com> - 1.6.1-19
6a541c
- Rebuild to pick up OpenSSL 3.0 Beta ABI (#1984097)
6a541c
6a541c
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.6.1-18
6a541c
- Rebuilt for RHEL 9 BETA for openssl 3.0
6a541c
  Related: rhbz#1971065
6a541c
6a541c
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.6.1-17
6a541c
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
6a541c
6a541c
* Mon Feb 08 2021 Pavel Raiskup <praiskup@redhat.com> - 1.6.1-16
6a541c
- rebuild for libpq ABI fix rhbz#1908268
6a541c
6a541c
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-15
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
6a541c
6a541c
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-14
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
6a541c
6a541c
* Mon May 04 2020 Tom Stellard <tstellar@redhat.com> - 1.6.1-13
6a541c
- Use make_build and make_install macros
6a541c
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
6a541c
6a541c
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-12
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
6a541c
6a541c
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-11
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
6a541c
6a541c
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-10
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
6a541c
6a541c
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 1.6.1-9
6a541c
- Rebuilt for libcrypt.so.2 (#1666033)
6a541c
6a541c
* Wed Sep 26 2018 Joe Orton <jorton@redhat.com> - 1.6.1-8
6a541c
- Recommends: -openssl and -bdb so default crypto, dbm drivers are
6a541c
  always available (#1491151, #1633152)
6a541c
6a541c
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-7
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
6a541c
6a541c
* Fri Mar  9 2018 Bojan Smojver <bojan@rexursive.com> - 1.6.1-6
6a541c
- add gcc build requirement
6a541c
6a541c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-5
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
6a541c
6a541c
* Fri Jan 26 2018 Florian Weimer <fweimer@redhat.com> - 1.6.1-4
6a541c
- Rebuild with new build flags embedded in apr
6a541c
6a541c
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.6.1-3
6a541c
- Rebuilt for switch to libxcrypt
6a541c
6a541c
* Tue Dec 19 2017 Honza Horak <hhorak@redhat.com> - 1.6.1-2
6a541c
- Build with mariadb-connector-c
6a541c
6a541c
* Wed Oct 25 2017 Luboš Uhliarik <luhliari@redhat.com> - 1.6.1-1
6a541c
- new version 1.6.1
6a541c
6a541c
* Mon Aug 21 2017 Joe Orton <jorton@redhat.com> - 1.6.0-1
6a541c
- update to 1.6.0 (#1460831)
6a541c
- move bdb support to loadable DSO in apr-util-dbd subpackage
6a541c
- drop NSS, freetds support
6a541c
6a541c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-7
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
6a541c
6a541c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-6
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6a541c
6a541c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-5
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
6a541c
6a541c
* Mon Nov 14 2016 Joe Orton <jorton@redhat.com> - 1.5.4-4
6a541c
- update for OpenSSL 1.1.0
6a541c
6a541c
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-3
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6a541c
6a541c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.4-2
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6a541c
6a541c
* Mon Sep 22 2014 Jan Kaluza <jkaluza@redhat.com> - 1.5.4-1
6a541c
- update to 1.5.4
6a541c
6a541c
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-3
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6a541c
6a541c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-2
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6a541c
6a541c
* Tue Nov 26 2013 Joe Orton <jorton@redhat.com> - 1.5.3-1
6a541c
- update to 1.5.3
6a541c
6a541c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.2-4
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
6a541c
6a541c
* Thu May 09 2013 Jan Kaluza <jkaluza@redhat.com> - 1.5.2-3
6a541c
- do not build with freetds when it is not available
6a541c
6a541c
* Tue Apr  9 2013 Joe Orton <jorton@redhat.com> - 1.5.2-2
6a541c
- update for aarch64
6a541c
6a541c
* Tue Apr  9 2013 Joe Orton <jorton@redhat.com> - 1.5.2-1
6a541c
- update to 1.5.2
6a541c
6a541c
* Thu Feb 07 2013 Jon Ciesla <limburgher@gmail.com> - 1.4.1-8
6a541c
- Apply private patch from Merge Review BZ 225254.
6a541c
6a541c
* Wed Nov 07 2012 Jan Kaluza <jkaluza@redhat.com> - 1.4.1-7
6a541c
- ensure we use latest libdb5 (not libdb4)
6a541c
6a541c
* Thu Oct 18 2012 Joe Orton <jorton@redhat.com> - 1.4.1-6
6a541c
- use -lldap_r instead of -lldap
6a541c
6a541c
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-5
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6a541c
6a541c
* Wed Jun  6 2012 Joe Orton <jorton@redhat.com> - 1.4.1-4
6a541c
- fix crypt_r failure modes (#819650)
6a541c
6a541c
* Tue Apr 24 2012 Joe Orton <jorton@redhat.com> - 1.4.1-3
6a541c
- apply _isa to deps
6a541c
6a541c
* Mon Apr 23 2012 Joe Orton <jorton@redhat.com> - 1.4.1-2
6a541c
- switch to libdb-devel
6a541c
6a541c
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-2
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
6a541c
6a541c
* Thu Dec 15 2011 Bojan Smojver <bojan@rexursive.com> - 1.4.1-1
6a541c
- bump up to 1.4.1
6a541c
6a541c
* Fri May 20 2011 Bojan Smojver <bojan@rexursive.com> - 1.3.12-1
6a541c
- bump up to 1.3.12
6a541c
6a541c
* Wed May 11 2011 Bojan Smojver <bojan@rexursive.com> - 1.3.11-2
6a541c
- fix crash in apr_ldap_rebind_init()
6a541c
6a541c
* Mon May  9 2011 Bojan Smojver <bojan@rexursive.com> - 1.3.11-1
6a541c
- bump up to 1.3.11
6a541c
6a541c
* Wed Mar 23 2011 Dan Horák <dan@danny.cz> - 1.3.10-7
6a541c
- rebuilt for mysql 5.5.10 (soname bump in libmysqlclient)
6a541c
6a541c
* Wed Mar 23 2011 Joe Orton <jorton@redhat.com> - 1.3.10-6
6a541c
- rebuild for MySQL soname bump
6a541c
6a541c
* Wed Mar  2 2011 Joe Orton <jorton@redhat.com> - 1.3.10-5
6a541c
- fix build
6a541c
6a541c
* Wed Mar  2 2011 Joe Orton <jorton@redhat.com> - 1.3.10-4
6a541c
- rebuild
6a541c
6a541c
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.10-3
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6a541c
6a541c
* Wed Dec 29 2010 Bojan Smojver <bojan@rexursive.com> - 1.3.10-2
6a541c
- rebuild for MySQL 5.5.x
6a541c
6a541c
* Tue Oct  5 2010 Joe Orton <jorton@redhat.com> - 1.3.10-1
6a541c
- update to 1.3.10
6a541c
6a541c
* Wed Nov 25 2009 Joe Orton <jorton@redhat.com> - 1.3.9-3
6a541c
- rebuild for new BDB
6a541c
6a541c
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.3.9-2
6a541c
- rebuilt with new openssl
6a541c
6a541c
* Thu Aug  6 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.9-1
6a541c
- bump up to 1.3.9
6a541c
- CVE-2009-2412
6a541c
- allocator alignment fixes
6a541c
6a541c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.8-3
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6a541c
6a541c
* Wed Jul 15 2009 Bojan Smojver <bojan@rexursive.com> 1.3.8-2
6a541c
- adjust apr-util-1.3.7-nodbmdso.patch
6a541c
6a541c
* Wed Jul 15 2009 Bojan Smojver <bojan@rexursive.com> 1.3.8-1
6a541c
- bump up to 1.3.8
6a541c
6a541c
* Wed Jul 15 2009 Bojan Smojver <bojan@rexursive.com> 1.3.7-5
6a541c
- BR: +libuuid-devel, -e2fsprogs-devel
6a541c
6a541c
* Tue Jun  9 2009 Joe Orton <jorton@redhat.com> 1.3.7-4
6a541c
- disable DBM-drivers-as-DSO support
6a541c
- backport r783046 from upstream
6a541c
6a541c
* Mon Jun  8 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.7-3
6a541c
- make export of LD_LIBRARY_PATH simpler
6a541c
6a541c
* Mon Jun  8 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.7-2
6a541c
- revert tests
6a541c
6a541c
* Mon Jun  8 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.7-1
6a541c
- bump up to 1.3.7
6a541c
- CVE-2009-0023
6a541c
- "billion laughs" fix of apr_xml_* interface
6a541c
6a541c
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.4-3
6a541c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
6a541c
6a541c
* Fri Jan 23 2009 Joe Orton <jorton@redhat.com> 1.3.4-2
6a541c
- rebuild for new MySQL
6a541c
6a541c
* Sat Aug 16 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.4-1
6a541c
- bump up to 1.3.4
6a541c
- drop PostgreSQL patch, fixed upstream
6a541c
6a541c
* Wed Jul 16 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-8
6a541c
- beat the fuzz, rework apr-util-1.2.7-pkgconf.patch
6a541c
6a541c
* Wed Jul 16 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-7
6a541c
- ship find_apu.m4, fix bug #455189
6a541c
6a541c
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.2-6
6a541c
- rebuild for new db4-4.7
6a541c
6a541c
* Tue Jul  8 2008 Joe Orton <jorton@redhat.com> 1.3.2-5
6a541c
- restore requires for openldap-devel from -devel
6a541c
6a541c
* Wed Jul  2 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-4
6a541c
- properly fix PostgreSQL detection
6a541c
6a541c
* Wed Jul  2 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-3
6a541c
- revert build dependencies, change from -2 didn't help
6a541c
- add apr-util-1.3.2-pgsql.patch (remove pgsql_LIBS during detection)
6a541c
6a541c
* Wed Jul  2 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-2
6a541c
- try adding postgresql-server to build dependencies to pull some libs in
6a541c
6a541c
* Thu Jun 19 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-1
6a541c
- bump up to 1.3.2
6a541c
6a541c
* Sun Jun  1 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.0-1
6a541c
- bump up to 1.3.0
6a541c
6a541c
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.12-5
6a541c
- Autorebuild for GCC 4.3
6a541c
6a541c
* Tue Dec  4 2007 Joe Orton <jorton@redhat.com> 1.2.12-4
6a541c
- rebuild for OpenLDAP soname bump
6a541c
6a541c
* Mon Dec  3 2007 Bojan Smojver <bojan@rexursive.com> - 1.2.12-3
6a541c
- remove all instances of MySQL flags being added to APRUTIL_LDFLAGS
6a541c
6a541c
* Tue Nov 27 2007 Bojan Smojver <bojan@rexursive.com> - 1.2.12-1
6a541c
- bump up to 1.2.12
6a541c
- drop MySQL DBD driver, shipped upstream
6a541c
- adjust various patches to apply
6a541c
- rework tests in %%check (1.2.x got tests from trunk)
6a541c
6a541c
* Mon Sep 24 2007 Jesse Keating <jkeating@redhat.com> - 1.2.10-2
6a541c
- Rebuild for upgrade path (add dist since that's now on F-7 branch)
6a541c
6a541c
* Sun Sep  9 2007 Bojan Smojver <bojan@rexursive.com> 1.2.10-1
6a541c
- bump up to 1.2.10
6a541c
- pick up newly checked in MySQL DBD driver directly from ASF
6a541c
- remove dbdopen patch (fixed upstream)
6a541c
- remove xmlns patch (fixed upstream)
6a541c
- remove autoexpat patch (fixed upstream)
6a541c
6a541c
* Sun Sep  2 2007 Joe Orton <jorton@redhat.com> 1.2.8-12
6a541c
- rebuild for fixed APR 32-bit ABI
6a541c
- remove sqlite driver from main package (#274521)
6a541c
6a541c
* Wed Aug 22 2007 Joe Orton <jorton@redhat.com> 1.2.8-11
6a541c
- rebuild for expat soname bump
6a541c
6a541c
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 1.2.8-10
6a541c
- fix License
6a541c
6a541c
* Wed Aug  8 2007 Joe Orton <jorton@redhat.com> 1.2.8-9
6a541c
- add rewrite of expat autoconf code (upstream r493791)
6a541c
- fix build for new glibc open()-as-macro
6a541c
- split out sqlite subpackage
6a541c
6a541c
* Tue Jul  3 2007 Joe Orton <jorton@redhat.com> 1.2.8-8
6a541c
- add fix for attribute namespace handling in apr_xml (PR 41908)
6a541c
6a541c
* Thu Apr  5 2007 Joe Orton <jorton@redhat.com> 1.2.8-7
6a541c
- remove old Conflicts, doxygen BR (#225254)
6a541c
6a541c
* Fri Mar 23 2007 Joe Orton <jorton@redhat.com> 1.2.8-6
6a541c
- add DBD DSO lifetime fix (r521327)
6a541c
6a541c
* Thu Mar 22 2007 Joe Orton <jorton@redhat.com> 1.2.8-5
6a541c
- drop doxygen documentation (which caused multilib conflicts)
6a541c
6a541c
* Wed Feb 28 2007 Joe Orton <jorton@redhat.com> 1.2.8-4
6a541c
- add mysql driver in -mysql subpackage (Bojan Smojver, #222237)
6a541c
6a541c
* Tue Feb 27 2007 Joe Orton <jorton@redhat.com> 1.2.8-3
6a541c
- build DBD drivers as DSOs (w/Bojan Smojver, #192922)
6a541c
- split out pgsql driver into -pgsql subpackage
6a541c
6a541c
* Tue Dec  5 2006 Joe Orton <jorton@redhat.com> 1.2.8-2
6a541c
- update to 1.2.8, pick up new libpq soname
6a541c
6a541c
* Fri Dec  1 2006 Joe Orton <jorton@redhat.com> 1.2.7-5
6a541c
- really rebuild for db45
6a541c
6a541c
* Sat Nov 11 2006 Joe Orton <jorton@redhat.com> 1.2.7-4
6a541c
- add support for BDB 4.5 from upstream, rebuild
6a541c
6a541c
* Wed Jul 19 2006 Joe Orton <jorton@redhat.com> 1.2.7-3
6a541c
- fix buildconf with autoconf 2.60
6a541c
6a541c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2.7-2.1
6a541c
- rebuild
6a541c
6a541c
* Tue May  2 2006 Joe Orton <jorton@redhat.com> 1.2.7-2
6a541c
- update to 1.2.7
6a541c
- use pkg-config in apu-1-config to make it libdir-agnostic
6a541c
6a541c
* Thu Apr  6 2006 Joe Orton <jorton@redhat.com> 1.2.6-2
6a541c
- update to 1.2.6
6a541c
- define LDAP_DEPRECATED in apr_ldap.h (r391985, #188073)
6a541c
6a541c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-4.2
6a541c
- bump again for double-long bug on ppc(64)
6a541c
6a541c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-4.1
6a541c
- rebuilt for new gcc4.1 snapshot and glibc changes
6a541c
6a541c
* Mon Jan 30 2006 Joe Orton <jorton@redhat.com> 1.2.2-4
6a541c
- rebuild to drop reference to libexpat.la
6a541c
6a541c
* Wed Jan 18 2006 Joe Orton <jorton@redhat.com> 1.2.2-3
6a541c
- disable sqlite2 support
6a541c
- BuildRequire e2fsprogs-devel
6a541c
- enable malloc paranoia in %%check
6a541c
6a541c
* Tue Jan  3 2006 Jesse Keating <jkeating@redhat.com> 1.2.2-2.2
6a541c
- rebuilt again
6a541c
6a541c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
6a541c
- rebuilt
6a541c
6a541c
* Tue Dec  6 2005 Joe Orton <jorton@redhat.com> 1.2.2-2
6a541c
- trim exports from .la file/--libs output (#174924)
6a541c
6a541c
* Fri Nov 25 2005 Joe Orton <jorton@redhat.com> 1.2.2-1
6a541c
- update to 1.2.2
6a541c
6a541c
* Thu Oct 20 2005 Joe Orton <jorton@redhat.com> 0.9.7-3
6a541c
- fix epoch again
6a541c
6a541c
* Thu Oct 20 2005 Joe Orton <jorton@redhat.com> 0.9.7-2
6a541c
- update to 0.9.7
6a541c
- drop static libs (#170051)
6a541c
6a541c
* Tue Jul 26 2005 Joe Orton <jorton@redhat.com> 0.9.6-3
6a541c
- add FILE bucket fix for truncated files (#159191)
6a541c
- add epoch to dependencies
6a541c
6a541c
* Fri Mar  4 2005 Joe Orton <jorton@redhat.com> 0.9.6-2
6a541c
- rebuild
6a541c
6a541c
* Wed Feb  9 2005 Joe Orton <jorton@redhat.com> 0.9.6-1
6a541c
- update to 0.9.6
6a541c
6a541c
* Wed Jan 19 2005 Joe Orton <jorton@redhat.com> 0.9.5-3
6a541c
- restore db-4.3 detection lost in 0.9.5 upgrade
6a541c
6a541c
* Wed Jan 19 2005 Joe Orton <jorton@redhat.com> 0.9.5-2
6a541c
- rebuild
6a541c
6a541c
* Mon Nov 22 2004 Joe Orton <jorton@redhat.com> 0.9.5-1
6a541c
- update to 0.9.5
6a541c
6a541c
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 0.9.4-19
6a541c
- actually explicitly check for and detect db-4.3.
6a541c
6a541c
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 0.9.4-18
6a541c
- rebuild against db-4.3.21.
6a541c
6a541c
* Fri Sep 17 2004 Joe Orton <jorton@redhat.com> 0.9.4-17
6a541c
- add security fix for CAN-2004-0786
6a541c
6a541c
* Sat Jun 19 2004 Joe Orton <jorton@redhat.com> 0.9.4-16
6a541c
- have -devel require matching release of apr-util
6a541c
6a541c
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
6a541c
- rebuilt
6a541c
6a541c
* Thu Apr  1 2004 Joe Orton <jorton@redhat.com> 0.9.4-14
6a541c
- fix use of SHA1 passwords (#119651)
6a541c
6a541c
* Tue Mar 30 2004 Joe Orton <jorton@redhat.com> 0.9.4-13
6a541c
- remove fundamentally broken check_sbcs() from xlate code
6a541c
6a541c
* Fri Mar 19 2004 Joe Orton <jorton@redhat.com> 0.9.4-12
6a541c
- tweak xlate fix
6a541c
6a541c
* Fri Mar 19 2004 Joe Orton <jorton@redhat.com> 0.9.4-11
6a541c
- rebuild with xlate fixes and tests enabled
6a541c
6a541c
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 0.9.4-10.1
6a541c
- rebuilt
6a541c
6a541c
* Tue Mar  2 2004 Joe Orton <jorton@redhat.com> 0.9.4-10
6a541c
- rename sdbm_* symbols to apu__sdbm_*
6a541c
6a541c
* Mon Feb 16 2004 Joe Orton <jorton@redhat.com> 0.9.4-9
6a541c
- fix sdbm apr_dbm_exists() on s390x/ppc64
6a541c
6a541c
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 0.9.4-8
6a541c
- rebuilt
6a541c
6a541c
* Thu Feb  5 2004 Joe Orton <jorton@redhat.com> 0.9.4-7
6a541c
- fix warnings from use of apr_optional*.h with gcc 3.4
6a541c
6a541c
* Thu Jan 29 2004 Joe Orton <jorton@redhat.com> 0.9.4-6
6a541c
- drop gdbm support
6a541c
6a541c
* Thu Jan  8 2004 Joe Orton <jorton@redhat.com> 0.9.4-5
6a541c
- fix DB library detection
6a541c
6a541c
* Sat Dec 13 2003 Jeff Johnson <jbj@jbj.org> 0.9.4-4
6a541c
- rebuild against db-4.2.52.
6a541c
6a541c
* Mon Oct 13 2003 Jeff Johnson <jbj@jbj.org> 0.9.4-3
6a541c
- rebuild against db-4.2.42.
6a541c
6a541c
* Mon Oct  6 2003 Joe Orton <jorton@redhat.com> 0.9.4-2
6a541c
- fix 'apu-config --apu-la-file' output
6a541c
6a541c
* Mon Oct  6 2003 Joe Orton <jorton@redhat.com> 0.9.4-1
6a541c
- update to 0.9.4.
6a541c
6a541c
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.9.3-10
6a541c
- rebuild
6a541c
6a541c
* Mon Jul  7 2003 Joe Orton <jorton@redhat.com> 0.9.3-9
6a541c
- rebuild
6a541c
- don't run testuuid test because of #98677
6a541c
6a541c
* Thu Jul  3 2003 Joe Orton <jorton@redhat.com> 0.9.3-8
6a541c
- rebuild
6a541c
6a541c
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
6a541c
- rebuilt
6a541c
6a541c
* Tue May 20 2003 Joe Orton <jorton@redhat.com> 0.9.3-6
6a541c
- fix to detect crypt_r correctly (CAN-2003-0195)
6a541c
6a541c
* Thu May 15 2003 Joe Orton <jorton@redhat.com> 0.9.3-5
6a541c
- fix to try linking against -ldb first (#90917)
6a541c
- depend on openldap, gdbm, db4, expat appropriately.
6a541c
6a541c
* Tue May 13 2003 Joe Orton <jorton@redhat.com> 0.9.3-4
6a541c
- rebuild
6a541c
6a541c
* Wed May  7 2003 Joe Orton <jorton@redhat.com> 0.9.3-3
6a541c
- make devel package conflict with old subversion-devel
6a541c
- run the less crufty parts of the test suite
6a541c
6a541c
* Tue Apr 29 2003 Joe Orton <jorton@redhat.com> 0.9.3-2
6a541c
- run ldconfig in post/postun
6a541c
6a541c
* Mon Apr 28 2003 Joe Orton <jorton@redhat.com> 0.9.3-1
6a541c
- initial build