Blame SPECS/nspr.spec

e1af5a
%global nspr_version 4.34.0
f14557
f14557
# The upstream omits the trailing ".0", while we need it for
f14557
# consistency with the pkg-config version:
f14557
# https://bugzilla.redhat.com/show_bug.cgi?id=1578106
f14557
%{lua:
f14557
rpm.define(string.format("nspr_archive_version %s",
f14557
           string.gsub(rpm.expand("%nspr_version"), "(.*)%.0$", "%1")))
f14557
}
f14557
f14557
Summary:        Netscape Portable Runtime
f14557
Name:           nspr
f14557
Version:        %{nspr_version}
f14557
Release:        1%{?dist}
f14557
License:        MPLv2.0
2f4717
URL:            http://ftp.mozilla.org/pub/nspr/releases/v${nspr_archive_version}/src
f14557
Group:          System Environment/Libraries
f14557
Conflicts:      filesystem < 3
f14557
BuildRequires:  gcc
f14557
f14557
# Sources available at ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/
f14557
# When hg tag based snapshots are being used, refer to hg documentation on
f14557
# mozilla.org and check out subdirectory mozilla/nsprpub.
f14557
Source0:        %{name}-%{nspr_archive_version}.tar.gz
f14557
Source1:        nspr-config.xml
f14557
f14557
Patch1:         nspr-config-pc.patch
f14557
Patch2:         nspr-gcc-atomics.patch
f14557
f14557
%description
f14557
NSPR provides platform independence for non-GUI operating system 
f14557
facilities. These facilities include threads, thread synchronization, 
f14557
normal file and network I/O, interval timing and calendar time, basic 
f14557
memory management (malloc and free) and shared library linking.
f14557
f14557
%package devel
f14557
Summary:        Development libraries for the Netscape Portable Runtime
f14557
Group:          Development/Libraries
f14557
Requires:       nspr = %{version}-%{release}
f14557
Requires:       pkgconfig
f14557
BuildRequires:  xmlto
f14557
Conflicts:      filesystem < 3
f14557
f14557
%description devel
f14557
Header files for doing development with the Netscape Portable Runtime.
f14557
f14557
%prep
f14557
f14557
%setup -q -n %{name}-%{nspr_archive_version}
f14557
f14557
# Original nspr-config is not suitable for our distribution,
f14557
# because on different platforms it contains different dynamic content.
f14557
# Therefore we produce an adjusted copy of nspr-config that will be 
f14557
# identical on all platforms.
f14557
# However, we need to use original nspr-config to produce some variables
f14557
# that go into nspr.pc for pkg-config.
f14557
f14557
cp ./nspr/config/nspr-config.in ./nspr/config/nspr-config-pc.in
f14557
%patch1 -p0 -b .flags
f14557
pushd nspr
f14557
%patch2 -p1 -b .gcc-atomics
f14557
popd
f14557
f14557
%build
f14557
%define _configure ./nspr/configure
f14557
%configure \
f14557
                 --prefix=%{_prefix} \
f14557
                 --libdir=%{_libdir} \
f14557
                 --includedir=%{_includedir}/nspr4 \
f14557
%ifnarch noarch
f14557
%if 0%{__isa_bits} == 64
f14557
                 --enable-64bit \
f14557
%endif
f14557
%endif
f14557
%ifarch armv7l armv7hl armv7nhl
f14557
                 --enable-thumb2 \
f14557
%endif
f14557
                 --enable-optimize="$RPM_OPT_FLAGS" \
f14557
                 --disable-debug
f14557
f14557
# The assembly files are only for legacy atomics, to which we prefer GCC atomics
f14557
%ifarch i686 x86_64
f14557
sed -i '/^PR_MD_ASFILES/d' config/autoconf.mk
f14557
%endif
f14557
make
f14557
f14557
date +"%e %B %Y" | tr -d '\n' > date.xml
f14557
echo -n %{version} > version.xml
f14557
f14557
for m in %{SOURCE1}; do
f14557
  cp ${m} .
f14557
done
f14557
for m in nspr-config.xml; do
f14557
  xmlto man ${m}
f14557
done
f14557
f14557
%check
f14557
f14557
# Run test suite.
f14557
perl ./nspr/pr/tests/runtests.pl 2>&1 | tee output.log
f14557
f14557
TEST_FAILURES=`grep -c FAILED ./output.log` || :
f14557
if [ $TEST_FAILURES -ne 0 ]; then
f14557
  echo "error: test suite returned failure(s)"
f14557
  exit 1
f14557
fi
f14557
echo "test suite completed"
f14557
f14557
%install
f14557
f14557
%{__rm} -Rf $RPM_BUILD_ROOT
f14557
f14557
DESTDIR=$RPM_BUILD_ROOT \
f14557
  make install
f14557
f14557
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1 
f14557
f14557
NSPR_LIBS=`./config/nspr-config --libs`
f14557
NSPR_CFLAGS=`./config/nspr-config --cflags`
f14557
NSPR_VERSION=`./config/nspr-config --version`
f14557
%{__mkdir_p} $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
f14557
f14557
# Get rid of the things we don't want installed (per upstream)
f14557
%{__rm} -rf \
f14557
   $RPM_BUILD_ROOT/%{_bindir}/compile-et.pl \
f14557
   $RPM_BUILD_ROOT/%{_bindir}/prerr.properties \
f14557
   $RPM_BUILD_ROOT/%{_libdir}/libnspr4.a \
f14557
   $RPM_BUILD_ROOT/%{_libdir}/libplc4.a \
f14557
   $RPM_BUILD_ROOT/%{_libdir}/libplds4.a \
f14557
   $RPM_BUILD_ROOT/%{_datadir}/aclocal/nspr.m4 \
f14557
   $RPM_BUILD_ROOT/%{_includedir}/nspr4/md
f14557
f14557
for f in nspr-config; do 
f14557
   install -c -m 644 ${f}.1 $RPM_BUILD_ROOT%{_mandir}/man1/${f}.1
f14557
done
f14557
f14557
%post -p /sbin/ldconfig
f14557
f14557
%postun -p /sbin/ldconfig
f14557
f14557
%files
f14557
%{!?_licensedir:%global license %%doc}
f14557
%license nspr/LICENSE
f14557
%{_libdir}/libnspr4.so
f14557
%{_libdir}/libplc4.so
f14557
%{_libdir}/libplds4.so
f14557
f14557
%files devel
f14557
%{_includedir}/nspr4
f14557
%{_libdir}/pkgconfig/nspr.pc
f14557
%{_bindir}/nspr-config
f14557
%{_mandir}/man*/*
f14557
f14557
%changelog
e1af5a
* Thu Jun 2 2022 Bob Relyea <rrelyea@redhat.com> - 4.34.0-1
e1af5a
- Update to NSPR 4.34
e1af5a
17e74c
* Thu Jun 17 2021 Bob Relyea <rrelyea@redhat.com> - 4.32.0-1
17e74c
- Update to NSPR 4.32
17e74c
2f4717
* Thu Jun 17 2021 Bob Relyea <rrelyea@redhat.com> - 4.31.0-1
2f4717
- Update to NSPR 4.31
2f4717
f14557
* Tue Jun 1 2021 Bob Relyea <rrelyea@redhat.com> - 4.30.0-1
f14557
- Update to NSPR 4.30
f14557
f14557
* Mon Jun 29 2020 Daiki Ueno <dueno@redhat.com> - 4.25.0-2
f14557
- Rebuild
f14557
f14557
* Fri Jun  5 2020 Daiki Ueno <dueno@redhat.com> - 4.25.0-1
f14557
- Update to NSPR 4.25
f14557
f14557
* Fri May 24 2019 Daiki Ueno <dueno@redhat.com> - 4.21.0-2
f14557
- Rebuild
f14557
f14557
* Fri May 24 2019 Daiki Ueno <dueno@redhat.com> - 4.21.0-1
f14557
- Update to NSPR 4.21
f14557
f14557
* Wed Oct  3 2018 Daiki Ueno <dueno@redhat.com> - 4.20.0-2
f14557
- Prefer GCC atomics on i686 and x86_64
f14557
f14557
* Mon Sep  3 2018 Daiki Ueno <dueno@redhat.com> - 4.20.0-1
f14557
- Update to NSPR 4.20
f14557
- Use the upstream tarball as it is (rhbz#1578106)
f14557
f14557
* Thu Mar  8 2018 Daiki Ueno <dueno@redhat.com> - 4.19.0-1
f14557
- Update to NSPR 4.19
f14557
- Add gcc to BuildRequires
f14557
f14557
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 4.18.0-4
f14557
- Use LDFLAGS from redhat-rpm-config
f14557
f14557
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.18.0-3
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f14557
f14557
* Tue Jan 30 2018 Daiki Ueno <dueno@redhat.com> - 4.18.0-2
f14557
- Rebuild
f14557
f14557
* Mon Jan 22 2018 Daiki Ueno <dueno@redhat.com> - 4.18.0-1
f14557
- Update to NSPR 4.18
f14557
f14557
* Wed Sep 20 2017 Daiki Ueno <dueno@redhat.com> - 4.17.0-1
f14557
- Update to NSPR 4.17
f14557
f14557
* Thu Aug  3 2017 Daiki Ueno <dueno@redhat.com> - 4.16.0-1
f14557
- Update to NSPR 4.16
f14557
f14557
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.15.0-3
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
f14557
f14557
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.15.0-2
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f14557
f14557
* Wed Jun 21 2017 Daiki Ueno <dueno@redhat.com> - 4.15.0-1
f14557
- Update to NSPR 4.15
f14557
f14557
* Fri Apr 21 2017 Daiki Ueno <dueno@redhat.com> - 4.14.0-2
f14557
- Rebase to NSPR 4.14
f14557
f14557
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.13.1-2
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f14557
f14557
* Fri Oct 21 2016 Daiki Ueno <dueno@redhat.com> - 4.13.1-1
f14557
- Rebase to NSPR 4.13.1
f14557
f14557
* Thu Sep 29 2016 Daiki Ueno <dueno@redhat.com> - 4.13.0-1
f14557
- Rebase to NSPR 4.13
f14557
f14557
* Sun Feb 21 2016 Elio Maldonado <emaldona@redhat.com> - 4.12.0-1
f14557
- Rebase to NSPR 4.12
f14557
f14557
* Mon Jan 18 2016 Elio Maldonado <emaldona@redhat.com> - 4.11.0-1
f14557
- Rebase to NSPR 4.11
f14557
f14557
* Sat Nov 14 2015 Elio Maldonado <emaldona@redhat.com> - 4.10.10-2
f14557
- Use __isa_bits macro instead of list of 64-bit architectures
f14557
- Patch contributed by Marcin Juszkiewicz <mjuszkiewicz@redhat.com>
f14557
- Resolves: Bug 1258425
f14557
f14557
* Thu Oct 29 2015 Elio Maldonado <emaldona@redhat.com> - 4.10.10-1
f14557
- Update to NSPR_4_10_10_RTM
f14557
f14557
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.10.8-2
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f14557
f14557
* Thu Jan 29 2015 Elio Maldonado <emaldona@redhat.com> - 4.10.8-1
f14557
- Update to NSPR_4_10_8_RTM
f14557
f14557
* Tue Aug 19 2014 Elio Maldonado <emaldona@redhat.com> - 4.10.7-1
f14557
- Update to NSPR_4_10_7_RTM
f14557
f14557
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.10.6-3
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
f14557
f14557
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 4.10.6-2
f14557
- fix license handling
f14557
f14557
* Tue Jun 10 2014 Elio Maldonado <emaldona@redhat.com> - 4.10.6-1
f14557
- Update to NSPR_4_10_6_RTM
f14557
f14557
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.10.5-2
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f14557
f14557
* Tue May 06 2014 Elio Maldonado <emaldona@redhat.com> - 4.10.5-1
f14557
- Update to NSPR_4_10_5_RTM
f14557
- Remove patch no longer needed due to the rebase
f14557
f14557
* Wed Apr 02 2014 Elio Maldonado <emaldona@redhat.com> - 4.10.4-2
f14557
- Resolves: Bug 1083725 - Add ppc64le support to nspr
f14557
- Use a patch by Ulrich Weigand already applied upstream
f14557
f14557
* Sat Mar 15 2014 Elio Maldonado <emaldona@redhat.com> - 4.10.4-1
f14557
- Update to NSPR_4_10_4_RTM
f14557
f14557
* Thu Dec 05 2013 Dennis Gilmore <dennis@ausil.us> - 4.10.2-3
f14557
- escape the rpm macro in the previous commit
f14557
f14557
* Tue Dec  3 2013 Peter Robinson <pbrobinson@fedoraproject.org> 4.10.2-2
f14557
- Fix running %%configure to ensure appropriate config options and fix aarch64 builds
f14557
f14557
* Sat Nov 23 2013 Elio Maldonado <emaldona@redhat.com> - 4.10.2-1
f14557
- Update to NSPR_4_10_2_RTM
f14557
- Avoid unsigned integer wrapping in PL_ArenaAllocate
f14557
- Resolves: rhbz#1031465 - CVE-2013-5607
f14557
f14557
* Thu Sep 26 2013 Elio Maldonado <emaldona@redhat.com> - 4.10.1-1
f14557
- Update to NSPR_4_10_1_RTM
f14557
f14557
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.10.0-4
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
f14557
f14557
* Thu Jun 27 2013 Elio Maldonado <emaldona@redhat.com> - 4.10.0-3
f14557
- Repackage the source tar ball as nspr-4.10.0.tar.bz2
f14557
- Ensure client packages dependency resolution succeeds
f14557
f14557
* Tue Jun 18 2013 Elio Maldonado <emaldona@redhat.com> - 4.10-2
f14557
- Install man page for the nspr-config script
f14557
f14557
* Wed May 29 2013 Elio Maldonado <emaldona@redhat.com> - 4.10-1
f14557
- Update to NSPR_4_10_RTM
f14557
f14557
* Mon May 06 2013 Elio Maldonado <emaldona@redhat.com> - 4.9.6-1
f14557
- Update to NSPR_4_9_6_RTM
f14557
f14557
* Mon Feb 18 2013 Elio Maldonado <emaldona@redhat.com> - 4.9.5-2
f14557
- Resolves: rhbz#912483 - Add spec file support for AArch64
f14557
f14557
* Fri Feb 01 2013 Elio Maldonado <emaldona@redhat.com> - 4.9.5-1
f14557
- Update to NSPR_4_9_5_RTM
f14557
f14557
* Mon Dec 17 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.4-1
f14557
- Update to NSPR_4_9_4_RTM
f14557
f14557
* Mon Oct 01 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.3-0.1.beta1.1
f14557
- Update to NSPR_4_9_5_BETA1
f14557
f14557
* Sun Aug 26 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.2-1
f14557
- Update to NSPR_4_9_2_RTM
f14557
f14557
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.9.1-6
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f14557
f14557
* Wed Jul 11 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.1-5
f14557
- Updated License: to MPLv2.0 per upstream
f14557
f14557
* Fri Jun 22 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.1-4
f14557
- Update the nspr-config-pc.patch to prevent multilib regressions
f14557
f14557
* Thu Jun 21 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.1-3
f14557
- Bump the release tag
f14557
f14557
* Thu Jun 21 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.1-3
f14557
- Resolves: rhbz#833529 - restore the good changes to nspr.pc
f14557
f14557
* Thu Jun 21 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.1-2
f14557
- Resolves: rhbz#833529 - revert unwanted change to nspr.pc
f14557
- Removed nspr-config.pc.in.patch
f14557
f14557
* Mon Jun 18 2012 Elio Maldonado <emaldona@redhat.com> - 4.9.1-1
f14557
- Update to NSPR_4_9_1_RTM
f14557
f14557
* Wed Mar 21 2012 Elio Maldonado <emaldona@redhat.com> - 4.9-2
f14557
- Resolves: Bug 805672 - Library needs partial RELRO support added
f14557
f14557
* Wed Feb 29 2012 Elio Maldonado <emaldona@redhat.com> - 4.9-1
f14557
- Update to NSPR_4_9_RTM
f14557
f14557
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 4.9-0.2.beta3.1
f14557
- install everything in /usr
f14557
  https://fedoraproject.org/wiki/Features/UsrMove
f14557
f14557
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 4.9-0.2.beta3.1
f14557
- 
f14557
f14557
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.9-0.2.beta3
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f14557
f14557
* Thu Oct 06 2011 Elio Maldonado <emaldona@redhat.com> - 4.9-0.1.beta3
f14557
- Update to NSPR_4_9_BETA3
f14557
f14557
* Thu Sep  8 2011 Ville Skyttä <ville.skytta@iki.fi> - 4.8.9-2
f14557
- Avoid %%post/un shell invocations and dependencies.
f14557
f14557
* Tue Aug 09 2011 Elio Maldonado <emaldona@redhat.com> - 4.8.9-1
f14557
- Update to NSPR_4_8_9_RTM
f14557
f14557
* Mon Jul 18 2011 Elio Maldonado <emaldona@redhat.com> - 4.8.8-4
f14557
- The tests must pass for the build to succeed
f14557
f14557
* Mon Jul 18 2011 Elio Maldonado <emaldona@redhat.com> - 4.8.8-3
f14557
- Run the nspr test suite in the %%check section
f14557
f14557
* Wed Jul 06 2011 Elio Maldonado <emaldona@redhat.com> - 4.8.8-2
f14557
- Conditionalize Thumb2 build support on right Arm arches
f14557
f14557
* Fri May 06 2011 Elio Maldonado <emaldona@redhat.com> - 4.8.8-1
f14557
- Update to NSPR_4_8_8_RTM
f14557
f14557
* Mon Apr 25 2011 Elio Maldonado Batiz <emaldona@redhat.com> - 4.8.8-0.1.beta3
f14557
- Update to NSPR_4_8_8_BETA3
f14557
f14557
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.7-2
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f14557
f14557
* Wed Jan 12 2011 Elio Maldonado <emaldona@redhat.com> - 4.8.7-1
f14557
- Update to 4.8.7
f14557
f14557
* Mon Dec 27 2010 Elio Maldonado <emaldona@redhat.com> - 4.8.7-0.1beta2
f14557
- Rebuilt according to fedora pre-release naming guidelines
f14557
f14557
* Fri Dec 10 2010 Elio Maldonado <emaldona@redhat.com> - 4.8.6.99.2-1
f14557
- Update to NSPR_4_8_7_BETA2
f14557
f14557
* Tue Dec 07 2010 Elio Maldonado <emaldona@redhat.com> - 4.8.6.99.1-1
f14557
- Update to NSPR_4_8_7_BETA1
f14557
f14557
* Mon Aug 16 2010 Elio Maldonado <emaldona@redhat.com> - 4.8.6-1
f14557
- Update to 4.8.6
f14557
f14557
* Fri Mar 12 2010 Till Maas <opensource@till.name> - 4.8.4-2
f14557
- Fix release value
f14557
f14557
* Tue Feb 23 2010 Elio Maldonado <emaldona@redhat.com> - 4.8.4-1
f14557
- Update to 4.8.4
f14557
f14557
* Sat Nov 14 2009 Elio Maldonado<emaldona@redhat.com> - 4.8.2-3
f14557
- update to 4.8.2
f14557
f14557
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8-2
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f14557
f14557
* Tue Jun 30 2009 Christopher Aillon <caillon@redhat.com> 4.8-1
f14557
- update to 4.8
f14557
f14557
* Fri Jun 05 2009 Kai Engert <kaie@redhat.com> - 4.7.4-2
f14557
- update to 4.7.4
f14557
f14557
* Wed Mar 04 2009 Kai Engert <kaie@redhat.com> - 4.7.3-5
f14557
- add a workaround for bug 487844
f14557
f14557
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.7.3-4
f14557
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f14557
f14557
* Wed Dec  3 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 4.7.3-3
f14557
- Rebuild for pkgconfig
f14557
f14557
* Wed Nov 19 2008 Kai Engert <kaie@redhat.com> - 4.7.3-2
f14557
- update to 4.7.3
f14557
* Thu Oct 23 2008 Kai Engert <kaie@redhat.com> - 4.7.2-2
f14557
- update to 4.7.2
f14557
f14557
* Thu Oct  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 4.7.1-5
f14557
- forgot to cvs add patch... whoops. :/
f14557
f14557
* Thu Oct  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 4.7.1-4
f14557
- properly handle sparc64 in nspr code
f14557
f14557
* Tue Sep 30 2008 Dennis Gilmore <dennis@ausil.us> - 4.7.1-3
f14557
- add sparc64 to the list of 64 bit arches
f14557
f14557
* Mon Jun 02 2008 Kai Engert <kengert@redhat.com> - 4.7.1-2
f14557
- Update to 4.7.1
f14557
f14557
* Thu Mar 20 2008 Jesse Keating <jkeating@redhat.com> - 4.7.0.99.2-2
f14557
- Drop the old obsoletes/provides that aren't needed anymore.
f14557
f14557
* Mon Mar 17 2008 Kai Engert <kengert@redhat.com> - 4.7.0.99.2-1
f14557
- Update to NSPR_4_7_1_BETA2
f14557
* Tue Feb 26 2008 Kai Engert <kengert@redhat.com> - 4.7.0.99.1-2
f14557
- Addressed cosmetic review comments from bug 226202
f14557
* Fri Feb 22 2008 Kai Engert <kengert@redhat.com> - 4.7.0.99.1-1
f14557
- Update to NSPR 4.7.1 Beta 1
f14557
- Use /usr/lib{64} as devel libdir, create symbolic links.
f14557
* Sat Feb 09 2008 Kai Engert <kengert@redhat.com> - 4.7-1
f14557
- Update to NSPR 4.7
f14557
f14557
* Thu Jan 24 2008 Kai Engert <kengert@redhat.com> - 4.6.99.3-1
f14557
* NSPR 4.7 beta snapshot 20080120
f14557
f14557
* Mon Jan 07 2008 Kai Engert <kengert@redhat.com> - 4.6.99-2
f14557
- move .so files to /lib
f14557
f14557
* Wed Nov 07 2007 Kai Engert <kengert@redhat.com> - 4.6.99-1
f14557
- NSPR 4.7 alpha
f14557
f14557
* Tue Aug 28 2007 Kai Engert <kengert@redhat.com> - 4.6.7-3
f14557
- Updated license tag
f14557
f14557
* Fri Jul 06 2007 Kai Engert <kengert@redhat.com> - 4.6.7-2
f14557
- Update to 4.6.7
f14557
f14557
* Fri Jul 06 2007 Kai Engert <kengert@redhat.com> - 4.6.6-2
f14557
- Update thread-cleanup patch to latest upstream version
f14557
- Add upstream patch to support PR_STATIC_ASSERT
f14557
f14557
* Wed Mar 07 2007 Kai Engert <kengert@redhat.com> - 4.6.6-1
f14557
- Update to 4.6.6
f14557
- Adjust IPv6 patch to latest upstream version
f14557
f14557
* Sat Feb 24 2007 Kai Engert <kengert@redhat.com> - 4.6.5-2
f14557
- Update to latest ipv6 upstream patch
f14557
- Add upstream patch to fix a thread cleanup issue
f14557
- Now requires pkgconfig
f14557
f14557
* Mon Jan 22 2007 Wan-Teh Chang <wtchang@redhat.com> - 4.6.5-1
f14557
- Update to 4.6.5
f14557
f14557
* Tue Jan 16 2007 Kai Engert <kengert@redhat.com> - 4.6.4-2
f14557
- Include upstream patch to fix ipv6 support (rhbz 222554)
f14557
f14557
* Tue Nov 21 2006 Kai Engert <kengert@redhat.com> - 4.6.4-1
f14557
- Update to 4.6.4
f14557
f14557
* Thu Sep 14 2006 Kai Engert <kengert@redhat.com> - 4.6.3-1
f14557
- Update to 4.6.3
f14557
f14557
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.6.2-1.1
f14557
- rebuild
f14557
f14557
* Fri May 26 2006 Kai Engert <kengert@redhat.com> - 4.6.2-1
f14557
- Update to 4.6.2
f14557
- Tweak nspr-config to be identical on all platforms.
f14557
f14557
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.6.1-2.2
f14557
- bump again for double-long bug on ppc(64)
f14557
f14557
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.6.1-2.1
f14557
- rebuilt for new gcc4.1 snapshot and glibc changes
f14557
f14557
* Thu Jan  5 2006 Kai Engert <kengert@redhat.com> 4.6.1-2
f14557
- Do not use -ansi when compiling, because of a compilation
f14557
  problem with latest glibc and anonymous unions.
f14557
  See also bugzilla.mozilla.org # 322427.
f14557
f14557
* Wed Jan  4 2006 Kai Engert <kengert@redhat.com>
f14557
- Add an upstream patch to fix gcc visibility issues.
f14557
f14557
* Tue Jan  3 2006 Christopher Aillon <caillon@redhat.com>
f14557
- Stop shipping static libraries; NSS and dependencies no longer
f14557
  require static libraries to build.
f14557
f14557
* Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> 4.6.1-1
f14557
- Update to 4.6.1
f14557
f14557
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
f14557
- rebuilt
f14557
f14557
* Fri Jul 15 2005 Christopher Aillon <caillon@redhat.com> 4.6-4
f14557
- Use the NSPR version numbering scheme reported by NSPR,
f14557
  which unfortunately is not exactly the same as the real
f14557
  version (4.6 != 4.6.0 according to RPM and pkgconfig).
f14557
f14557
* Fri Jul 15 2005 Christopher Aillon <caillon@redhat.com> 4.6-3
f14557
- Correct the CFLAGS reported by pkgconfig
f14557
f14557
* Tue Jul 12 2005 Christopher Aillon <caillon@redhat.com> 4.6-2
f14557
- Temporarily include the static libraries allowing nss and 
f14557
  its dependencies to build. 
f14557
f14557
* Tue Jul 12 2005 Christopher Aillon <caillon@redhat.com> 4.6-1
f14557
- Update to NSPR 4.6
f14557
f14557
* Wed Apr 20 2005 Christopher Aillon <caillon@redhat.com> 4.4.1-2
f14557
- NSPR doesn't have make install, but it has make real_install.  Use it.
f14557
f14557
* Thu Apr 14 2005 Christopher Aillon <caillon@redhat.com> 4.4.1-1
f14557
- Let's make an RPM.