Blame SPECS/apr.spec

d657f6
%define aprver 1
d657f6
d657f6
# Arches on which the multilib apr.h hack is needed:
d657f6
%define multilib_arches %{ix86} ia64 ppc ppc64 s390 s390x x86_64
d657f6
d657f6
Summary: Apache Portable Runtime library
d657f6
Name: apr
d657f6
Version: 1.7.0
d657f6
Release: 11%{?dist}
d657f6
# ASL 2.0: everything
d657f6
# ISC: network_io/apr-1.4.6/network_io/unix/inet_?to?.c
d657f6
# BSD with advertising: strings/apr_snprintf.c, strings/apr_fnmatch.c,
d657f6
#                   include/apr_fnmatch.h, misc/unix/getopt.c,
d657f6
#                   file_io/unix/mktemp.c, strings/apr_strings.c
d657f6
# BSD (3-clause): strings/apr_strnatcmp.c, include/apr_strings.h
d657f6
License: ASL 2.0 and BSD with advertising and ISC and BSD
d657f6
URL: https://apr.apache.org/
d657f6
Source0: https://www.apache.org/dist/apr/%{name}-%{version}.tar.bz2
d657f6
Source1: apr-wrapper.h
d657f6
Patch1: apr-1.2.2-libdir.patch
d657f6
Patch2: apr-1.2.7-pkgconf.patch
d657f6
Patch3: apr-1.7.0-deepbind.patch
d657f6
Patch4: apr-1.7.0-r1891269+.patch
d657f6
Patch5: apr-1.7.0-r1894167.patch
d657f6
BuildRequires: gcc, autoconf, libtool, libuuid-devel, python3
d657f6
BuildRequires: make
d657f6
d657f6
%description
d657f6
The mission of the Apache Portable Runtime (APR) is to provide a
d657f6
free library of C data structures and routines, forming a system
d657f6
portability layer to as many operating systems as possible,
d657f6
including Unices, MS Win32, BeOS and OS/2.
d657f6
d657f6
%package devel
d657f6
Summary: APR library development kit
d657f6
Conflicts: subversion-devel < 0.20.1-2
d657f6
Requires: apr = %{version}-%{release}, pkgconfig
d657f6
d657f6
%description devel
d657f6
This package provides the support files which can be used to 
d657f6
build applications using the APR library.  The mission of the
d657f6
Apache Portable Runtime (APR) is to provide a free library of 
d657f6
C data structures and routines.
d657f6
d657f6
%prep
d657f6
%setup -q
d657f6
%patch1 -p1 -b .libdir
d657f6
%patch2 -p1 -b .pkgconf
d657f6
%patch3 -p1 -b .deepbind
d657f6
%patch4 -p1 -b .r1891269+
d657f6
%patch5 -p1 -b .r1894167
d657f6
d657f6
%build
d657f6
# regenerate configure script etc.
d657f6
./buildconf
d657f6
d657f6
# Forcibly prevent detection of shm_open (which then picks up but
d657f6
# does not use -lrt).
d657f6
export ac_cv_search_shm_open=no
d657f6
d657f6
%configure \
d657f6
        --includedir=%{_includedir}/apr-%{aprver} \
d657f6
        --with-installbuilddir=%{_libdir}/apr-%{aprver}/build \
d657f6
        --with-devrandom=/dev/urandom \
d657f6
        --disable-static \
d657f6
        --disable-sctp
d657f6
%{make_build}
d657f6
d657f6
%install
d657f6
rm -rf $RPM_BUILD_ROOT
d657f6
%{make_install}
d657f6
d657f6
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/aclocal
d657f6
for f in find_apr.m4 apr_common.m4; do
d657f6
 install -p -m 644 build/$f $RPM_BUILD_ROOT/%{_datadir}/aclocal
d657f6
done
d657f6
d657f6
# Trim exported dependecies
d657f6
sed -ri '/^dependency_libs/{s,-l(uuid|crypt) ,,g}' \
d657f6
      $RPM_BUILD_ROOT%{_libdir}/libapr*.la
d657f6
sed -ri '/^LIBS=/{s,-l(uuid|crypt) ,,g;s/  */ /g}' \
d657f6
      $RPM_BUILD_ROOT%{_bindir}/apr-%{aprver}-config
d657f6
sed -ri '/^Libs/{s,-l(uuid|crypt) ,,g}' \
d657f6
      $RPM_BUILD_ROOT%{_libdir}/pkgconfig/apr-%{aprver}.pc
d657f6
d657f6
%ifarch %{multilib_arches}
d657f6
# Ugly hack to allow parallel installation of 32-bit and 64-bit apr-devel 
d657f6
# packages:
d657f6
mv $RPM_BUILD_ROOT%{_includedir}/apr-%{aprver}/apr.h \
d657f6
   $RPM_BUILD_ROOT%{_includedir}/apr-%{aprver}/apr-%{_arch}.h
d657f6
install -c -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/apr-%{aprver}/apr.h
d657f6
%endif
d657f6
d657f6
# Unpackaged files:
d657f6
rm -f $RPM_BUILD_ROOT%{_libdir}/apr.exp \
d657f6
      $RPM_BUILD_ROOT%{_libdir}/libapr-*.a
d657f6
d657f6
# Additionally packaged (see https://bugzilla.redhat.com/1669589) --
d657f6
sed -i '1s,/.*,/usr/bin/python3,' build/gen-build.py
d657f6
for f in build/gen-build.py build/install.sh build/config.*; do
d657f6
    install -c -m755 $f $RPM_BUILD_ROOT%{_libdir}/apr-%{aprver}/build
d657f6
done
d657f6
d657f6
%check
d657f6
# Fail if LFS support isn't present in a 32-bit build, since this
d657f6
# breaks ABI and the soname doesn't change: see #254241
d657f6
if grep 'define SIZEOF_VOIDP 4' include/apr.h \
d657f6
   && ! grep off64_t include/apr.h; then
d657f6
  cat config.log
d657f6
  : LFS support not present in 32-bit build
d657f6
  exit 1
d657f6
fi
d657f6
pushd test
d657f6
  make %{?_smp_mflags}
d657f6
  ./testall -v -q
d657f6
popd
d657f6
d657f6
%ldconfig_scriptlets
d657f6
d657f6
%files
d657f6
%doc CHANGES LICENSE NOTICE README*
d657f6
%{_libdir}/libapr-%{aprver}.so.*
d657f6
d657f6
%files devel
d657f6
%doc docs/APRDesign.html docs/canonical_filenames.html
d657f6
%doc docs/incomplete_types docs/non_apr_programs
d657f6
%{_bindir}/apr-%{aprver}-config
d657f6
%{_libdir}/libapr-%{aprver}.*a
d657f6
%{_libdir}/libapr-%{aprver}.so
d657f6
%{_libdir}/pkgconfig/*.pc
d657f6
%dir %{_libdir}/apr-%{aprver}
d657f6
%dir %{_libdir}/apr-%{aprver}/build
d657f6
%{_libdir}/apr-%{aprver}/build/*
d657f6
%dir %{_includedir}/apr-%{aprver}
d657f6
%{_includedir}/apr-%{aprver}/*.h
d657f6
%{_datadir}/aclocal/*.m4
d657f6
d657f6
%changelog
d657f6
* Mon Dec  6 2021 Joe Orton <jorton@redhat.com> - 1.7.0-11
d657f6
- always disable SCTP support at build time (#1997107)
d657f6
d657f6
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.7.0-10.5
d657f6
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
d657f6
  Related: rhbz#1991688
d657f6
d657f6
* Fri Aug  6 2021 Florian Weimer <fweimer@redhat.com> - 1.7.0-9.5
d657f6
- Rebuild to pick up new build flags from redhat-rpm-config (#1984652)
d657f6
d657f6
* Wed Aug  4 2021 Joe Orton <jorton@redhat.com> - 1.7.0-9.4
d657f6
- add apr_common.m4 to -devel as well (#1986937)
d657f6
d657f6
* Wed Jul  7 2021 Joe Orton <jorton@redhat.com> - 1.7.0-9.3
d657f6
- add various Coverity/Clang cleanups (#1977418)
d657f6
d657f6
* Fri Jun 18 2021 Joe Orton <jorton@redhat.com> - 1.7.0-9.2
d657f6
- package additional build/* files in apr-devel (#1945078)
d657f6
d657f6
* Fri Jun 18 2021 Joe Orton <jorton@redhat.com> - 1.7.0-9.1
d657f6
- document APR_DEEPBIND and use secure_getenv() (thanks to mturk)
d657f6
d657f6
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.7.0-9
d657f6
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
d657f6
d657f6
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-8
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
d657f6
d657f6
* Fri Nov  6 2020 Joe Orton <jorton@redhat.com> - 1.7.0-7
d657f6
- disable static build in libtool
d657f6
d657f6
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-6
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
d657f6
d657f6
* Tue Jun 16 2020 Joe Orton <jorton@redhat.com> - 1.7.0-5
d657f6
- only enable RTLD_DEEPBIND if $APR_DEEPBIND is set
d657f6
d657f6
* Wed Mar  4 2020 Joe Orton <jorton@redhat.com> - 1.7.0-4
d657f6
- re-enable RTLD_DEEPBIND (#1739287)
d657f6
d657f6
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-3
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
d657f6
d657f6
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-2
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
d657f6
d657f6
* Tue Apr 16 2019 Lubos Uhliarik <luhliari@redhat.com> - 1.7.0-1
d657f6
- update to 1.7.0 (#1696401)
d657f6
d657f6
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.5-3
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
d657f6
d657f6
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 1.6.5-2
d657f6
- Rebuilt for libcrypt.so.2 (#1666033)
d657f6
d657f6
* Mon Sep 17 2018 Joe Orton <jorton@redhat.com> - 1.6.5-1
d657f6
- update to 1.6.5 (#1628934)
d657f6
d657f6
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-9
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
d657f6
d657f6
* Wed Jun 27 2018 Joe Orton <jorton@redhat.com> - 1.6.3-8
d657f6
- update to use Python 3 at build time
d657f6
d657f6
* Wed Mar 14 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.6.3-7
d657f6
- Update Python 2 dependency declarations to new packaging standards
d657f6
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
d657f6
d657f6
* Wed Feb 21 2018 Joe Orton <jorton@redhat.com> - 1.6.3-6
d657f6
- BuildRequires: gcc
d657f6
d657f6
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-5
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d657f6
d657f6
* Mon Jan 29 2018 Florian Weimer <fweimer@redhat.com> - 1.6.3-4
d657f6
- Fix FTBFS in test/teststr.c with GCC 8 (#1539844)
d657f6
d657f6
* Mon Jan 29 2018 Florian Weimer <fweimer@redhat.com> - 1.6.3-3
d657f6
- Rebuild with new redhat-rpm-config build flags
d657f6
d657f6
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.6.3-2
d657f6
- Rebuilt for switch to libxcrypt
d657f6
d657f6
* Wed Oct 25 2017 Luboš Uhliarik <luhliari@redhat.com> - 1.6.3-1
d657f6
- new version 1.6.3
d657f6
d657f6
* Tue Sep 19 2017 Joe Orton <jorton@redhat.com> - 1.6.2-4
d657f6
- re-enable test suite
d657f6
d657f6
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.2-3
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d657f6
d657f6
* Sat Jul 29 2017 Florian Weimer <fweimer@redhat.com> - 1.6.2-2
d657f6
- Rebuild with binutils fix for ppc64le (#1475636)
d657f6
d657f6
* Wed Jul 26 2017 Joe Orton <jorton@redhat.com> - 1.6.2-1
d657f6
- update to 1.6.2 (#1460830)
d657f6
d657f6
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-6
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d657f6
d657f6
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-5
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d657f6
d657f6
* Fri Apr 15 2016 David Tardon <dtardon@redhat.com> - 1.5.2-4
d657f6
- rebuild for ICU 57.1
d657f6
d657f6
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-3
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d657f6
d657f6
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.2-2
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d657f6
d657f6
* Wed Apr 29 2015 Jan Kaluza <jkaluza@redhat.com> - 1.5.2-1
d657f6
- update to 1.5.2 (#1217012)
d657f6
d657f6
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-3
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d657f6
d657f6
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-2
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d657f6
d657f6
* Wed Apr 23 2014 Jan Kaluza <jkaluza@redhat.com> - 1.5.1-1
d657f6
- update to 1.5.1 (#1089917)
d657f6
d657f6
* Tue Nov 26 2013 Joe Orton <jorton@redhat.com> - 1.5.0-2
d657f6
- update to 1.5.0
d657f6
d657f6
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-2
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d657f6
d657f6
* Mon Jun 24 2013 Joe Orton <jorton@redhat.com> - 1.4.8-1
d657f6
- update to 1.4.8 (#976972)
d657f6
d657f6
* Wed May 29 2013 Joe Orton <jorton@redhat.com> - 1.4.6-7
d657f6
- update config.* for aarch64 (#925009)
d657f6
d657f6
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.6-6
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
d657f6
d657f6
* Wed Dec 12 2012 Jan Kaluza <jkaluza@redhat.com> - 1.4.6-5
d657f6
- fix strict-aliasing gcc warning
d657f6
- remove unused SHA384 and SHA512 code
d657f6
d657f6
* Thu Nov 22 2012 Joe Orton <jorton@redhat.com> - 1.4.6-4
d657f6
- update license
d657f6
d657f6
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.6-3
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d657f6
d657f6
* Fri Jul  6 2012 Joe Orton <jorton@redhat.com> - 1.4.6-2
d657f6
- pull fix for apr_mcast_hops from upstream
d657f6
d657f6
* Tue Feb 14 2012 Bojan Smojver <bojan@rexursive.com> - 1.4.6-1
d657f6
- bump up to 1.4.6
d657f6
d657f6
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.5-3
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d657f6
d657f6
* Thu Oct 13 2011 Joe Orton <jorton@redhat.com> - 1.4.5-2
d657f6
- remove deepbind patch, should no longer be necessary
d657f6
d657f6
* Fri May 20 2011 Bojan Smojver <bojan@rexursive.com> - 1.4.5-1
d657f6
- bump up to 1.4.5
d657f6
d657f6
* Tue May 10 2011 Bojan Smojver <bojan@rexursive.com> - 1.4.4-2
d657f6
- fix top_builddir in apr_rules.mk
d657f6
d657f6
* Mon May  9 2011 Bojan Smojver <bojan@rexursive.com> - 1.4.4-1
d657f6
- bump up to 1.4.4
d657f6
- CVE-2011-0419
d657f6
d657f6
* Wed Mar  2 2011 Joe Orton <jorton@redhat.com> - 1.4.2-3
d657f6
- work around alising issue in ring macros (upstream PR 50190)
d657f6
- fix buildconf with newer libtool (#670621)
d657f6
d657f6
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d657f6
d657f6
* Sat Dec  4 2010 Joe Orton <jorton@redhat.com> - 1.4.2-1
d657f6
- update to 1.4.2
d657f6
- always enable SCTP support (#659815)
d657f6
d657f6
* Sun Oct 25 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.9-3
d657f6
- remove uuid/crypt libs from pkg-config file (#511522)
d657f6
d657f6
* Mon Sep 28 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.9-2
d657f6
- revert use of accept4(), dup3() and epoll_create1()
d657f6
d657f6
* Fri Sep 25 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.9-1
d657f6
- bump up to 1.3.9
d657f6
d657f6
* Thu Aug  6 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.8-1
d657f6
- bump up to 1.3.8
d657f6
- CVE-2009-2412
d657f6
- allocator alignment fixes
d657f6
d657f6
* Sun Jul 26 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.7-2
d657f6
- include apr_cv_sock_cloexec too
d657f6
d657f6
* Sun Jul 26 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.7-1
d657f6
- bump up to 1.3.7
d657f6
d657f6
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.6-2
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
d657f6
d657f6
* Wed Jul 15 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.6-1
d657f6
- bump up to 1.3.6
d657f6
d657f6
* Tue Jun 30 2009 Joe Orton <jorton@redhat.com> 1.3.5-5
d657f6
- BR libuuid-devel instead of e2fsprogs-devel
d657f6
d657f6
* Mon Jun  8 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.5-4
d657f6
- bump up to 1.3.5
d657f6
d657f6
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-4
d657f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
d657f6
d657f6
* Wed Feb  4 2009 Joe Orton <jorton@redhat.com> 1.3.3
d657f6
- fix build with libtool 2.2
d657f6
d657f6
* Fri Jan  2 2009 Joe Orton <jorton@redhat.com> 1.3.3
d657f6
- rebuild
d657f6
d657f6
* Sat Aug 16 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.3-1
d657f6
- bump up to 1.3.3
d657f6
d657f6
* Wed Jul 16 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-2
d657f6
- ship find_apr.m4, fix bug #455189
d657f6
d657f6
* Thu Jun 19 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-1
d657f6
- bump up to 1.3.2
d657f6
d657f6
* Sun Jun  1 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.0-1
d657f6
- bump up to 1.3.0
d657f6
d657f6
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.12-2
d657f6
- Autorebuild for GCC 4.3
d657f6
d657f6
* Mon Nov 26 2007 Bojan Smojver <bojan@rexursive.com> 1.2.12-1
d657f6
- bump up to 1.2.12
d657f6
- add dist
d657f6
- remove a comment from apr-1.2.7-psprintfpi.patch (applied upstream)
d657f6
d657f6
* Tue Sep 18 2007 Joe Orton <jorton@redhat.com> 1.2.11-2
d657f6
- fix %%check for non-multilib 64-bit platforms
d657f6
d657f6
* Sun Sep  9 2007 Bojan Smojver <bojan@rexursive.com> 1.2.11-1
d657f6
- bump up to 1.2.11
d657f6
- drop openlfs patch (fixed upstream)
d657f6
d657f6
* Sun Sep  2 2007 Joe Orton <jorton@redhat.com> 1.2.9-4
d657f6
- fix API/ABI of 32-bit builds (#254241)
d657f6
d657f6
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 1.2.9-2
d657f6
- fix License
d657f6
d657f6
* Mon Jun 25 2007 Bojan Smojver <bojan@rexursive.com> 1.2.9-1
d657f6
- bump up to 1.2.9
d657f6
d657f6
* Mon Jun  4 2007 Joe Orton <jorton@redhat.com> 1.2.8-7
d657f6
- drop %%check section entirely; inappropriate to run in build env.
d657f6
d657f6
* Fri Mar 30 2007 Joe Orton <jorton@redhat.com> 1.2.8-6
d657f6
- merge review (#225253): drop .a archive; drop use of CC/CXX,
d657f6
  use BuildRequires; drop old Conflicts; URL reference for Source
d657f6
d657f6
* Thu Mar 22 2007 Joe Orton <jorton@redhat.com> 1.2.8-5
d657f6
- drop the doxygen documentation (which causes multilib conflicts)
d657f6
d657f6
* Thu Feb 15 2007 Joe Orton <jorton@redhat.com> 1.2.8-4
d657f6
- add BR for python
d657f6
d657f6
* Thu Feb 15 2007 Joe Orton <jorton@redhat.com> 1.2.8-3
d657f6
- update to pick up new libtool, drop specific gcc requirement
d657f6
d657f6
* Mon Dec  4 2006 Joe Orton <jorton@redhat.com> 1.2.8-2
d657f6
- update to 1.2.8
d657f6
d657f6
* Wed Jul 19 2006 Joe Orton <jorton@redhat.com> 1.2.7-10
d657f6
- fix buildconf with autoconf 2.60 (#199067)
d657f6
d657f6
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 1.2.7-9.1
d657f6
- rebuild
d657f6
d657f6
* Mon Jun 19 2006 Joe Orton <jorton@redhat.com> 1.2.7-9
d657f6
- add fix for use of %%pI with psprintf
d657f6
d657f6
* Fri May 26 2006 Jakub Jelinek <jakub@redhat.com> 1.2.7-8
d657f6
- rebuilt with GCC 4.1.0
d657f6
d657f6
* Tue May 23 2006 Joe Orton <jorton@redhat.com> 1.2.7-7
d657f6
- fix another multilib conflict (#192659)
d657f6
d657f6
* Tue May 16 2006 Joe Orton <jorton@redhat.com> 1.2.7-6
d657f6
- BR e2fsprogs-devel for libuuid
d657f6
d657f6
* Mon May  8 2006 Joe Orton <jorton@redhat.com> 1.2.7-4
d657f6
- use multilib parallel-installation wrapper hack for apr.h
d657f6
d657f6
* Tue May  2 2006 Joe Orton <jorton@redhat.com> 1.2.7-3
d657f6
- fix installbuilddir in apr-1-config
d657f6
d657f6
* Tue May  2 2006 Joe Orton <jorton@redhat.com> 1.2.7-2
d657f6
- update to 1.2.7
d657f6
- use pkg-config in apr-1-config to make it libdir-agnostic
d657f6
d657f6
* Thu Apr  6 2006 Joe Orton <jorton@redhat.com> 1.2.6-2
d657f6
- update to 1.2.6
d657f6
d657f6
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-7.2
d657f6
- bump again for double-long bug on ppc(64)
d657f6
d657f6
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-7.1
d657f6
- rebuilt for new gcc4.1 snapshot and glibc changes
d657f6
d657f6
* Wed Jan  4 2006 Joe Orton <jorton@redhat.com> 1.2.2-7
d657f6
- fix namespace pollution (r354824, r355464)
d657f6
d657f6
* Wed Jan  4 2006 Joe Orton <jorton@redhat.com> 1.2.2-6
d657f6
- fix build with recent glibc (#176911)
d657f6
d657f6
* Tue Jan  3 2006 Jesse Keating <jkeating@redhat.com> 1.2.2-5.2
d657f6
- rebuilt again
d657f6
d657f6
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
d657f6
- rebuilt
d657f6
d657f6
* Fri Dec  9 2005 Joe Orton <jorton@redhat.com> 1.2.2-5
d657f6
- rebuild for new gcc
d657f6
d657f6
* Thu Dec  8 2005 Joe Orton <jorton@redhat.com> 1.2.2-4
d657f6
- add apr_file_seek() fixes from upstream (r326593, r326597)
d657f6
d657f6
* Wed Dec  7 2005 Joe Orton <jorton@redhat.com> 1.2.2-3
d657f6
- apr-1-config: strip more exports (#175124) 
d657f6
d657f6
* Tue Dec  6 2005 Joe Orton <jorton@redhat.com> 1.2.2-2
d657f6
- avoid linking against -lrt
d657f6
- don't print -L${libdir} in --libs output
d657f6
- don't export -lcrypt/-luuid in .la file
d657f6
d657f6
* Fri Dec  2 2005 Joe Orton <jorton@redhat.com> 1.2.2-1
d657f6
- update to 1.2.2
d657f6
d657f6
* Thu Nov 24 2005 Joe Orton <jorton@redhat.com> 0.9.7-3
d657f6
- use RTLD_DEEPBIND in apr_dso_open by default
d657f6
d657f6
* Thu Oct 20 2005 Joe Orton <jorton@redhat.com> 0.9.7-2
d657f6
- update to 0.9.7
d657f6
d657f6
* Fri Sep 30 2005 Florian La Roche <laroche@redhat.com>
d657f6
- rebuild for new gcc
d657f6
d657f6
* Thu Sep 15 2005 Joe Orton <jorton@redhat.com> 0.9.6-6
d657f6
- don't override CFLAGS at build time
d657f6
- allow setting TCP_NODELAY and TCP_CORK concurrently
d657f6
- use _exit() not exit() in child if exec*() fails (upstream #30913)
d657f6
d657f6
* Fri Sep  9 2005 Joe Orton <jorton@redhat.com> 0.9.6-5
d657f6
- add from 0.9.x branch:
d657f6
 * fix for apr_{uid,gid}_* error handling (r239592)
d657f6
 * fix for apr_file_ write flushing (r267192)
d657f6
- add backport for use of readdir64_r (r265032, r265681, r265684)
d657f6
d657f6
* Mon Jul 11 2005 Florian La Roche <laroche@redhat.com>
d657f6
- rebuild
d657f6
d657f6
* Tue May 17 2005 Joe Orton <jorton@redhat.com> 0.9.6-3
d657f6
- fix apr_procattr_child_*_set error handling
d657f6
d657f6
* Tue Mar  1 2005 Joe Orton <jorton@redhat.com> 0.9.6-2
d657f6
- have apr-devel depend on specific version of gcc
d657f6
- add NOTICE to docdir
d657f6
d657f6
* Wed Feb  9 2005 Joe Orton <jorton@redhat.com> 0.9.6-1
d657f6
- update to 0.9.6
d657f6
d657f6
* Wed Feb  2 2005 Joe Orton <jorton@redhat.com> 0.9.5-4
d657f6
- don't disable sendfile on s390 (IBM LTC, #146891)
d657f6
d657f6
* Mon Nov 22 2004 Joe Orton <jorton@redhat.com> 0.9.5-3
d657f6
- really fix apr-config --srcdir
d657f6
d657f6
* Mon Nov 22 2004 Joe Orton <jorton@redhat.com> 0.9.5-2
d657f6
- fix apr-config --srcdir again
d657f6
d657f6
* Sun Nov 21 2004 Joe Orton <jorton@redhat.com> 0.9.5-1
d657f6
- update to 0.9.5
d657f6
d657f6
* Mon Sep 27 2004 Joe Orton <jorton@redhat.com> 0.9.4-24
d657f6
- rebuild
d657f6
d657f6
* Wed Sep  1 2004 Joe Orton <jorton@redhat.com> 0.9.4-23
d657f6
- have -devel require apr of same V-R
d657f6
d657f6
* Tue Aug 31 2004 Joe Orton <jorton@redhat.com> 0.9.4-22
d657f6
- backport fixes from HEAD:
d657f6
 * correct implementation of nested mutexes
d657f6
 * support for POSIX semaphores on LP64 platforms
d657f6
d657f6
* Thu Jul 15 2004 Joe Orton <jorton@redhat.com> 0.9.4-21
d657f6
- rebuild for another attempt at using sem_open
d657f6
d657f6
* Tue Jul 13 2004 Joe Orton <jorton@redhat.com> 0.9.4-20
d657f6
- move sticky/suid bits outside APR_OS_DEFAULT bitmask (Greg Hudson)
d657f6
d657f6
* Thu Jul  1 2004 Joe Orton <jorton@redhat.com> 0.9.4-19
d657f6
- rebuild
d657f6
d657f6
* Wed Jun 30 2004 Joe Orton <jorton@redhat.com> 0.9.4-18
d657f6
- rebuild now /dev/shm is mounted
d657f6
d657f6
* Thu Jun 17 2004 Joe Orton <jorton@redhat.com> 0.9.4-17
d657f6
- add fix for cleanup structure reuse (part of upstream #23567)
d657f6
d657f6
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
d657f6
- rebuilt
d657f6
d657f6
* Thu Jun 10 2004 Joe Orton <jorton@redhat.com> 0.9.4-15
d657f6
- add support for setuid/setgid/sticky bits (André Malo)
d657f6
- add apr_threadattr_{guardsize,stacksize}_set() (latter by Jeff Trawick)
d657f6
d657f6
* Mon Jun  7 2004 Joe Orton <jorton@redhat.com> 0.9.4-14
d657f6
- enable posixsem and process-shared pthread mutex support, but
d657f6
  ensure that sysvsem remains the default mechanism
d657f6
d657f6
* Mon May 24 2004 Joe Orton <jorton@redhat.com> 0.9.4-13
d657f6
- entirely remove 2Gb file size limit from apr_file_copy();
d657f6
  fixes "svnadmin hotcopy" on repos with >2Gb strings table
d657f6
- work around getnameinfo bugs with v4-mapped addresses
d657f6
- fix apr_time_exp_get() for dates in 2038 (Philip Martin)
d657f6
d657f6
* Thu May 13 2004 Joe Orton <jorton@redhat.com> 0.9.4-12
d657f6
- use APR_LARGEFILE in apr_file_{copy,append}
d657f6
d657f6
* Wed Mar 24 2004 Joe Orton <jorton@redhat.com> 0.9.4-11
d657f6
- add APR_LARGEFILE flag
d657f6
d657f6
* Mon Mar 15 2004 Joe Orton <jorton@redhat.com> 0.9.4-10
d657f6
- fix configure check for mmap of /dev/zero
d657f6
- just put -D_GNU_SOURCE in CPPFLAGS not _{BSD,SVID,XOPEN}_SOURCE
d657f6
d657f6
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 0.9.4-9.1
d657f6
- rebuilt
d657f6
d657f6
* Thu Feb 19 2004 Joe Orton <jorton@redhat.com> 0.9.4-9
d657f6
- undocument apr_dir_read() ordering constraint and fix tests
d657f6
d657f6
* Sun Feb 15 2004 Joe Orton <jorton@redhat.com> 0.9.4-8
d657f6
- rebuilt without -Wall -Werror
d657f6
d657f6
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 0.9.4-7
d657f6
- rebuilt
d657f6
d657f6
* Tue Feb  3 2004 Joe Orton <jorton@redhat.com> 0.9.4-6
d657f6
- define apr_off_t as int/long/... to prevent it changing
d657f6
  with _FILE_OFFSET_BITS on 32-bit platforms
d657f6
d657f6
* Mon Jan 12 2004 Joe Orton <jorton@redhat.com> 0.9.4-5
d657f6
- add apr_temp_dir_get fixes from HEAD
d657f6
d657f6
* Thu Jan  8 2004 Joe Orton <jorton@redhat.com> 0.9.4-4
d657f6
- ensure that libapr is linked against libpthread
d657f6
- don't link libapr against -lnsl
d657f6
d657f6
* Thu Nov 13 2003 Joe Orton <jorton@redhat.com> 0.9.4-3
d657f6
- -devel package no longer requires libtool
d657f6
d657f6
* Fri Oct  3 2003 Joe Orton <jorton@redhat.com> 0.9.4-2
d657f6
- disable tests on x86_64 (#97611)
d657f6
d657f6
* Fri Oct  3 2003 Joe Orton <jorton@redhat.com> 0.9.4-1
d657f6
- update to 0.9.4, enable tests
d657f6
- ensure that libresolv is not used
d657f6
d657f6
* Sun Sep  7 2003 Joe Orton <jorton@redhat.com> 0.9.3-14
d657f6
- use /dev/urandom (#103049)
d657f6
d657f6
* Thu Jul 24 2003 Joe Orton <jorton@redhat.com> 0.9.3-13
d657f6
- add back CC=gcc, CXX=g++
d657f6
d657f6
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.9.3-12
d657f6
- rebuild
d657f6
d657f6
* Mon Jul 14 2003 Joe Orton <jorton@redhat.com> 0.9.3-11
d657f6
- work round useless autoconf 2.57 AC_DECL_SYS_SIGLIST
d657f6
d657f6
* Thu Jul 10 2003 Joe Orton <jorton@redhat.com> 0.9.3-10
d657f6
- support --cc and --cpp arguments in apr-config
d657f6
d657f6
* Thu Jul  3 2003 Joe Orton <jorton@redhat.com> 0.9.3-9
d657f6
- force libtool to use CC=gcc, CXX=g++
d657f6
d657f6
* Thu Jul  3 2003 Joe Orton <jorton@redhat.com> 0.9.3-8
d657f6
- fix libtool location in apr_rules.mk
d657f6
d657f6
* Mon Jun 30 2003 Joe Orton <jorton@redhat.com> 0.9.3-7
d657f6
- use AI_ADDRCONFIG in getaddrinfo() support (#73350)
d657f6
- include a working libtool script rather than relying on
d657f6
 /usr/bin/libtool (#97695)
d657f6
d657f6
* Wed Jun 18 2003 Joe Orton <jorton@redhat.com> 0.9.3-6
d657f6
- don't use /usr/bin/libtool
d657f6
d657f6
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
d657f6
- rebuilt
d657f6
d657f6
* Tue May 20 2003 Joe Orton <jorton@redhat.com> 0.9.3-5
d657f6
- add fix for psprintf memory corruption (CAN-2003-0245)
d657f6
- remove executable bit from apr_poll.h
d657f6
d657f6
* Thu May  1 2003 Joe Orton <jorton@redhat.com> 0.9.3-4
d657f6
- link libapr against libpthread
d657f6
- make apr-devel conflict with old subversion-devel
d657f6
- fix License
d657f6
d657f6
* Tue Apr 29 2003 Joe Orton <jorton@redhat.com> 0.9.3-3
d657f6
- run ldconfig in post/postun
d657f6
d657f6
* Tue Apr 29 2003 Joe Orton <jorton@redhat.com> 0.9.3-2
d657f6
- patch test suite to not care if IPv6 is disabled
d657f6
d657f6
* Mon Apr 28 2003 Joe Orton <jorton@redhat.com> 0.9.3-1
d657f6
- initial build