Blame SPECS/apr.spec

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