- fix API/ABI of 32-bit builds (#254241)
This commit is contained in:
parent
7fc85ae8a7
commit
9be12803db
16
apr.spec
16
apr.spec
@ -6,7 +6,7 @@
|
|||||||
Summary: Apache Portable Runtime library
|
Summary: Apache Portable Runtime library
|
||||||
Name: apr
|
Name: apr
|
||||||
Version: 1.2.9
|
Version: 1.2.9
|
||||||
Release: 3
|
Release: 4
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
URL: http://apr.apache.org/
|
URL: http://apr.apache.org/
|
||||||
@ -18,6 +18,7 @@ Patch3: apr-1.2.2-locktimeout.patch
|
|||||||
Patch4: apr-1.2.2-libdir.patch
|
Patch4: apr-1.2.2-libdir.patch
|
||||||
Patch5: apr-1.2.7-pkgconf.patch
|
Patch5: apr-1.2.7-pkgconf.patch
|
||||||
Patch6: apr-1.2.7-psprintfpi.patch
|
Patch6: apr-1.2.7-psprintfpi.patch
|
||||||
|
Patch7: apr-1.2.9-openlfs.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||||
BuildRequires: autoconf, libtool, e2fsprogs-devel, python
|
BuildRequires: autoconf, libtool, e2fsprogs-devel, python
|
||||||
|
|
||||||
@ -47,6 +48,7 @@ C data structures and routines.
|
|||||||
%patch4 -p1 -b .libdir
|
%patch4 -p1 -b .libdir
|
||||||
%patch5 -p1 -b .pkgconf
|
%patch5 -p1 -b .pkgconf
|
||||||
%patch6 -p1 -b .psprintfpi
|
%patch6 -p1 -b .psprintfpi
|
||||||
|
%patch7 -p1 -b .openlfs
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# regenerate configure script etc.
|
# regenerate configure script etc.
|
||||||
@ -60,7 +62,6 @@ export ac_cv_search_shm_open=no
|
|||||||
--includedir=%{_includedir}/apr-%{aprver} \
|
--includedir=%{_includedir}/apr-%{aprver} \
|
||||||
--with-installbuilddir=%{_libdir}/apr-%{aprver}/build \
|
--with-installbuilddir=%{_libdir}/apr-%{aprver}/build \
|
||||||
--with-devrandom=/dev/urandom
|
--with-devrandom=/dev/urandom
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -86,6 +87,15 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/apr.exp \
|
|||||||
$RPM_BUILD_ROOT%{_libdir}/libapr-*.a
|
$RPM_BUILD_ROOT%{_libdir}/libapr-*.a
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
%if "%{_lib}" == "lib"
|
||||||
|
# Fail if LFS support isn't preent in a 32-bit build, since this
|
||||||
|
# breaks ABI and the soname doesn't change: see #254241
|
||||||
|
if ! grep off64_t include/apr.h; then
|
||||||
|
cat config.log
|
||||||
|
: LFS support not present in 32-bit build
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
%endif
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -114,7 +124,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_includedir}/apr-%{aprver}/*.h
|
%{_includedir}/apr-%{aprver}/*.h
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Aug 31 2007 Joe Orton <jorton@redhat.com> 1.2.9-3
|
* Sun Sep 2 2007 Joe Orton <jorton@redhat.com> 1.2.9-4
|
||||||
- fix API/ABI of 32-bit builds (#254241)
|
- fix API/ABI of 32-bit builds (#254241)
|
||||||
|
|
||||||
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 1.2.9-2
|
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 1.2.9-2
|
||||||
|
Loading…
Reference in New Issue
Block a user