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