Blame SPECS/apr.spec

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