Blame SPECS/apr.spec

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