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