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