f5a2b2
f5a2b2
Summary: A garbage collector for C and C++
f5a2b2
Name:    gc
f5a2b2
Version: 8.0.4
f5a2b2
Release: 7%{?dist}
f5a2b2
f5a2b2
License: BSD
f5a2b2
Url:     http://www.hboehm.info/gc/
f5a2b2
Source0: http://www.hboehm.info/gc/gc_source/gc-%{version}%{?pre}.tar.gz
f5a2b2
f5a2b2
## upstreamable patches
f5a2b2
f5a2b2
## upstream patches
f5a2b2
f5a2b2
## downstream patches
f5a2b2
# https://bugzilla.redhat.com/show_bug.cgi?id=1551671
f5a2b2
Patch100: gc-7.6.4-dont_disable_exceptions.patch
f5a2b2
f5a2b2
BuildRequires: automake libtool
f5a2b2
BuildRequires: gcc-c++
f5a2b2
## https://www.hboehm.info/gc/ says: "Starting with 8.0, libatomic_ops is only required if the compiler does not understand C atomics."
f5a2b2
#BuildRequires: pkgconfig(atomic_ops) >= 7.4
f5a2b2
BuildRequires: pkgconfig
f5a2b2
BuildRequires: make
f5a2b2
f5a2b2
# rpmforge compatibility
f5a2b2
Obsoletes: libgc < %{version}-%{release}
f5a2b2
Provides:  libgc = %{version}-%{release}
f5a2b2
f5a2b2
%description
f5a2b2
The Boehm-Demers-Weiser conservative garbage collector can be
f5a2b2
used as a garbage collecting replacement for C malloc or C++ new.
f5a2b2
f5a2b2
%package devel
f5a2b2
Summary: Libraries and header files for %{name} development
f5a2b2
Requires: %{name}%{?_isa} = %{version}-%{release}
f5a2b2
Obsoletes: libgc-devel < %{version}-%{release}
f5a2b2
Provides:  libgc-devel = %{version}-%{release}
f5a2b2
%description devel
f5a2b2
%{summary}.
f5a2b2
f5a2b2
f5a2b2
%prep
f5a2b2
%autosetup -n gc-%{version}%{?pre} -p1
f5a2b2
f5a2b2
f5a2b2
%build
f5a2b2
# refresh auto*/libtool to purge rpaths
f5a2b2
rm -f libtool libtool.m4
f5a2b2
autoreconf -i -f
f5a2b2
f5a2b2
# see https://bugzilla.redhat.com/689877
f5a2b2
CPPFLAGS="-DUSE_GET_STACKBASE_FOR_MAIN"; export CPPFLAGS
f5a2b2
f5a2b2
%configure \
f5a2b2
  --disable-static \
f5a2b2
  --disable-docs \
f5a2b2
  --enable-cplusplus \
f5a2b2
  --enable-large-config \
f5a2b2
%ifarch %{ix86}
f5a2b2
  --enable-parallel-mark \
f5a2b2
%endif
f5a2b2
  --enable-threads=posix
f5a2b2
f5a2b2
%make_build
f5a2b2
f5a2b2
f5a2b2
%install
f5a2b2
%make_install
f5a2b2
f5a2b2
install -p -D -m644 doc/gc.man  %{buildroot}%{_mandir}/man3/gc.3
f5a2b2
f5a2b2
## Unpackaged files
f5a2b2
rm -rfv %{buildroot}%{_datadir}/gc/
f5a2b2
rm -fv  %{buildroot}%{_libdir}/lib*.la
f5a2b2
f5a2b2
f5a2b2
%check
f5a2b2
%ifarch %{arm}
f5a2b2
## cordtest segfaults
f5a2b2
%global arch_ignore ||:
f5a2b2
%endif
f5a2b2
## cordtest segfaults or hangs on ix86
f5a2b2
## gctest sometimes(?) hangs on armv7hl, aarch64, ppc64le
f5a2b2
%ifnarch %{arm} aarch64 %{ix86} ppc64le
f5a2b2
make check %{?arch_ignore}
f5a2b2
%endif
f5a2b2
f5a2b2
f5a2b2
%ldconfig_scriptlets
f5a2b2
f5a2b2
%files
f5a2b2
%{_libdir}/libcord.so.1*
f5a2b2
%{_libdir}/libgc.so.1*
f5a2b2
%{_libdir}/libgccpp.so.1*
f5a2b2
f5a2b2
%files devel
f5a2b2
%doc doc/README.environment doc/README.linux
f5a2b2
%doc doc/*.md
f5a2b2
%{_includedir}/gc.h
f5a2b2
%{_includedir}/gc_cpp.h
f5a2b2
%{_includedir}/gc/
f5a2b2
%{_libdir}/libcord.so
f5a2b2
%{_libdir}/libgc.so
f5a2b2
%{_libdir}/libgccpp.so
f5a2b2
%{_libdir}/pkgconfig/bdw-gc.pc
f5a2b2
%{_mandir}/man3/gc.3*
f5a2b2
f5a2b2
f5a2b2
%changelog
f5a2b2
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 8.0.4-7
f5a2b2
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
f5a2b2
  Related: rhbz#1991688
f5a2b2
f5a2b2
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 8.0.4-6
f5a2b2
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
f5a2b2
f5a2b2
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.4-5
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
f5a2b2
f5a2b2
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.4-4
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
f5a2b2
f5a2b2
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.4-3
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
f5a2b2
f5a2b2
* Wed Jan 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 8.0.4-2
f5a2b2
- drop libatomic_ops dep
f5a2b2
f5a2b2
* Wed Jan 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 8.0.4-1
f5a2b2
- 8.0.4
f5a2b2
- %%build: --with-libatomic-ops=yes
f5a2b2
f5a2b2
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.4-6
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
f5a2b2
f5a2b2
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.4-5
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
f5a2b2
f5a2b2
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.4-4
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
f5a2b2
f5a2b2
* Wed Mar 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 7.6.4-3
f5a2b2
- gc: Effectively overrides -fexceptions flag  (#1551671)
f5a2b2
- move autoreconf to %%build
f5a2b2
f5a2b2
* Tue Feb 27 2018 Richard W.M. Jones <rjones@redhat.com> - 7.6.4-2
f5a2b2
- Add upstream patches for RISC-V support.
f5a2b2
f5a2b2
* Tue Feb 20 2018 Rex Dieter <rdieter@fedoraproject.org> - 7.6.4-1
f5a2b2
- 7.6.4, reverts abi bump, compat-gc no longer needed
f5a2b2
f5a2b2
* Tue Feb 20 2018 Rex Dieter <rdieter@fedoraproject.org> - 7.6.2-4
f5a2b2
- BR: gcc-c++
f5a2b2
- add (temporary) compat-gc
f5a2b2
f5a2b2
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.2-3
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f5a2b2
f5a2b2
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 7.6.2-2
f5a2b2
- Switch to %%ldconfig_scriptlets
f5a2b2
f5a2b2
* Thu Jan 04 2018 Rex Dieter <rdieter@fedoraproject.org> - 7.6.2-1
f5a2b2
- 7.6.2 (#1531008)
f5a2b2
- libgc soname bump
f5a2b2
- -devel: include all docs here (ie, remove README's from main too)
f5a2b2
f5a2b2
* Fri Dec 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 7.6.0-8
f5a2b2
- rebuild (libatomic_ops)
f5a2b2
f5a2b2
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.0-7
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
f5a2b2
f5a2b2
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.0-6
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f5a2b2
f5a2b2
* Wed May 03 2017 Petr Å abata <contyk@redhat.com> - 7.6.0-5
f5a2b2
- Turns out our tests hang on armv7hl too, let's skip them (#1431866)
f5a2b2
f5a2b2
* Wed Mar 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 7.6.0-4
f5a2b2
- skip tests on ppcle64 (#1431866)
f5a2b2
f5a2b2
* Tue Mar 14 2017 Rex Dieter <rdieter@fedoraproject.org> - 7.6.0-3
f5a2b2
- skip tests on aarch64 (#1431866)
f5a2b2
f5a2b2
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.0-2
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f5a2b2
f5a2b2
* Tue Aug 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 7.6.0-1
f5a2b2
- gc-7.6.0 (#1365135)
f5a2b2
f5a2b2
* Fri Jun 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 7.4.4-1
f5a2b2
- gc-7.4.4 (#1346538)
f5a2b2
f5a2b2
* Sat Feb 27 2016 Dan Horák <dan[at]danny.cz> - 7.4.2-6
f5a2b2
- install also cord_pos.h
f5a2b2
f5a2b2
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 7.4.2-5
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f5a2b2
f5a2b2
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.4.2-4
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f5a2b2
f5a2b2
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 7.4.2-3
f5a2b2
- Rebuilt for GCC 5 C++11 ABI change
f5a2b2
f5a2b2
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.4.2-2
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
f5a2b2
f5a2b2
* Mon Jun 16 2014 Rex Dieter <rdieter@fedoraproject.org> 7.4.2-1
f5a2b2
- gc-7.4.2
f5a2b2
f5a2b2
* Wed Jun 11 2014 Pavel Raiskup <praiskup@redhat.com> - 7.4.0-4
f5a2b2
- backport upstream fix for disclaim_test fail on ppc (#1101996)
f5a2b2
f5a2b2
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.4.0-3
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f5a2b2
f5a2b2
* Wed May 28 2014 Pavel Raiskup <praiskup@redhat.com> - 7.4.0-2
f5a2b2
- ignore test results on ppc-like arches for now (#1101996)
f5a2b2
f5a2b2
* Tue May 13 2014 Rex Dieter <rdieter@fedoraproject.org> 7.4.0-1
f5a2b2
- gc-7.4.0
f5a2b2
f5a2b2
* Mon May 12 2014 Rex Dieter <rdieter@fedoraproject.org> 7.2e-3
f5a2b2
- 'make check' non-fatal on ppc64le too (#1096574)
f5a2b2
f5a2b2
* Fri Feb 21 2014 Rex Dieter <rdieter@fedoraproject.org> 7.2e-2
f5a2b2
- update Urls to match upstream project move
f5a2b2
f5a2b2
* Fri Nov 15 2013 Rex Dieter <rdieter@fedoraproject.org> 7.2e-1
f5a2b2
- gc-7.2e (#892559)
f5a2b2
f5a2b2
* Wed Oct 30 2013 Pavel Raiskup <praiskup@redhat.com> - 7.2d-4
f5a2b2
- add support for aarch64 (#969817)
f5a2b2
- ignore testsuite results only for powerpc
f5a2b2
f5a2b2
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.2d-3
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
f5a2b2
f5a2b2
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.2d-2
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f5a2b2
f5a2b2
* Mon Jan 07 2013 Rex Dieter <rdieter@fedoraproject.org> 7.2d-1
f5a2b2
- gc-7.2d
f5a2b2
f5a2b2
* Mon Oct 29 2012 Pavel Raiskup <praiskup@redhat.com> - 7.2c-5
f5a2b2
- fix possible infinite loop in test suite (#871067)
f5a2b2
f5a2b2
* Mon Oct 29 2012 Pavel Raiskup <praiskup@redhat.com> - 7.2c-4
f5a2b2
- trim lines, s/[tabs]/[spaces]/
f5a2b2
f5a2b2
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.2c-3
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f5a2b2
f5a2b2
* Tue Jul 24 2012 Rex Dieter <rdieter@fedoraproject.org> 7.2c-2
f5a2b2
- rebuild
f5a2b2
f5a2b2
* Tue Jun 26 2012 Rex Dieter <rdieter@fedoraproject.org> 7.2c-1
f5a2b2
- 7.2c
f5a2b2
f5a2b2
* Fri Jun 15 2012 Rex Dieter <rdieter@fedoraproject.org>
f5a2b2
- 7.2b-2
f5a2b2
- backport patches from gc-7_2-hotfix-2 branch in lieu of 7.2c release
f5a2b2
- gc 7.2 final abi broken when changing several symbols to hidden (#825473)
f5a2b2
- CVE-2012-2673 gc: malloc() and calloc() overflows (#828878)
f5a2b2
f5a2b2
* Wed May 30 2012 Rex Dieter <rdieter@fedoraproject.org> 7.2b-1
f5a2b2
- gc-7.2b
f5a2b2
f5a2b2
* Mon May 14 2012 Rex Dieter <rdieter@fedoraproject.org>
f5a2b2
- 7.2-1
f5a2b2
- gc-7.2 (final)
f5a2b2
f5a2b2
* Fri Mar 02 2012 Rex Dieter <rdieter@fedoraproject.org> 7.2-0.7.alpha6
f5a2b2
- libatomic_ops: use -DAO_USE_PTHREAD_DEFS on ARMv5
f5a2b2
f5a2b2
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.2-0.6.alpha6
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f5a2b2
f5a2b2
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.2-0.5.alpha6
f5a2b2
- Rebuilt for glibc bug#747377
f5a2b2
f5a2b2
* Mon Jun 20 2011 Rex Dieter <rdieter@fedoraproject.rog> 7.2-0.4.alpha6.20110107
f5a2b2
- gc-7.2alpha6
f5a2b2
- build with -DUSE_GET_STACKBASE_FOR_MAIN (#689877)
f5a2b2
f5a2b2
* Wed Feb 09 2011 Rex Dieter <rdieter@fedoraproject.org> 7.2-0.3.alpha5.20110107
f5a2b2
- bdwgc-7.2alpha4 20110107 snapshot
f5a2b2
f5a2b2
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.2-0.2.alpha4
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f5a2b2
f5a2b2
* Fri Dec 11 2009 Rex Dieter <rdieter@fedoraproject.org> - 7.2-0.1.alpha4
f5a2b2
- gc-7.2alpha4
f5a2b2
- use/package internal libatomic_ops
f5a2b2
f5a2b2
* Tue Dec  8 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 7.1-10
f5a2b2
- Explicitly BR libatomic_ops-static in accordance with the Packaging
f5a2b2
  Guidelines (libatomic_ops-devel is still static-only).
f5a2b2
f5a2b2
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.1-9
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f5a2b2
f5a2b2
* Sun Jul 19 2009 Rex Dieter 
f5a2b2
- FTBFS gc-7.1-7.fc11 (#511365)
f5a2b2
f5a2b2
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.1-7
f5a2b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f5a2b2
f5a2b2
* Fri Dec 12 2008 Rex Dieter <rdieter@fedoraproject.org> 7.1-6
f5a2b2
- rebuild for pkgconfig deps
f5a2b2
f5a2b2
* Wed Oct 15 2008 Rex Dieter <rdieter@fedoraproject.org> 7.1-5
f5a2b2
- forward-port patches (gcinit, sparc)
f5a2b2
f5a2b2
* Fri Oct 03 2008 Rex Dieter <rdieter@fedoraproject.org> 7.1-4
f5a2b2
- BR: libatomic_ops-devel
f5a2b2
f5a2b2
* Mon Sep 08 2008 Rex Dieter <rdieter@fedoraproject.org> 7.1-3
f5a2b2
- upstream DONT_ADD_BYTE_AT_END patch
f5a2b2
- spec cosmetics
f5a2b2
f5a2b2
* Sat Jul 12 2008 Rex Dieter <rdieter@fedoraproject.org> 7.1-2
f5a2b2
- --enable-large-config (#453972)
f5a2b2
f5a2b2
* Sun May 04 2008 Rex Dieter <rdieter@fedoraproject.org> 7.1-1
f5a2b2
- gc-7.1
f5a2b2
- purge rpaths
f5a2b2
f5a2b2
* Fri Feb 08 2008 Rex Dieter <rdieter@fedoraproject.org> 7.0-7
f5a2b2
- respin (gcc43)
f5a2b2
f5a2b2
* Wed Aug 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 7.0-6
f5a2b2
- BR: gawk
f5a2b2
- fixup compat_header patch to avoid needing auto* tools
f5a2b2
f5a2b2
* Wed Aug 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 7.0-5
f5a2b2
- compat_header patch (supercedes previous pkgconfig patch)
f5a2b2
f5a2b2
* Tue Aug 21 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 7.0-4
f5a2b2
- pkgconfig patch (cflags += -I%%_includedir/gc)
f5a2b2
f5a2b2
* Tue Aug 21 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 7.0-3
f5a2b2
- respin (ppc32)
f5a2b2
f5a2b2
* Tue Jul 24 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 7.0-2
f5a2b2
- gcinit patch, ABI compatibility (#248700)
f5a2b2
f5a2b2
* Mon Jul 09 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 7.0-1
f5a2b2
- gc-7.0
f5a2b2
f5a2b2
* Mon Dec 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.8-3
f5a2b2
- Obsoletes/Provides: libgc(-devel) (rpmforge compatibility)
f5a2b2
f5a2b2
* Mon Aug 28 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.8-2
f5a2b2
- fc6 respin
f5a2b2
f5a2b2
* Thu Jul 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.8-1
f5a2b2
- 6.8
f5a2b2
f5a2b2
* Fri Mar 03 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.7-1
f5a2b2
- 6.7
f5a2b2
f5a2b2
* Wed Mar 1 2006 Rex Dieter <rexdieter[AT]users.sf.net>
f5a2b2
- fc5: gcc/glibc respin
f5a2b2
f5a2b2
* Fri Feb 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-5
f5a2b2
- gcc(4.1) patch
f5a2b2
f5a2b2
* Thu Dec 01 2005 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-4
f5a2b2
- Provides: libgc(-devel)
f5a2b2
f5a2b2
* Wed Sep 14 2005 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-3
f5a2b2
- no-undefined patch, libtool madness (#166344)
f5a2b2
f5a2b2
* Mon Sep 12 2005 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-2
f5a2b2
- drop opendl patch (doesn't appear to be needed anymore)
f5a2b2
f5a2b2
* Fri Sep 09 2005 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-1
f5a2b2
- 6.6
f5a2b2
f5a2b2
* Wed May 25 2005 Rex Dieter <rexdieter[AT]users.sf.net> 6.5-1
f5a2b2
- 6.5
f5a2b2
f5a2b2
* Wed Apr  6 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
f5a2b2
- rebuilt
f5a2b2
f5a2b2
* Wed Jan 26 2005 Rex Dieter <rexdieter[AT]users.sf.net> 0:6.4-2
f5a2b2
- --enable-threads unconditionally
f5a2b2
- --enable-parallel-mark only on %%ix86 (#144681)
f5a2b2
f5a2b2
* Mon Jan 10 2005 Rex Dieter <rexdieter[AT]users.sf.net> 0:6.4-1
f5a2b2
- 6.4
f5a2b2
- update opendl patch
f5a2b2
f5a2b2
* Fri Jul 09 2004 Rex Dieter <rexdieter at sf.net> 0:6.3-0.fdr.1
f5a2b2
- 6.3(final)
f5a2b2
f5a2b2
* Tue Jun 01 2004 Rex Dieter <rexdieter at sf.net> 0:6.3-0.fdr.0.4.alpha6
f5a2b2
- dlopen patch
f5a2b2
f5a2b2
* Wed May 26 2004 Rex Dieter <rexdieter at sf.net> 0:6.3-0.fdr.0.3.alpha6
f5a2b2
- explictly --enable-threads ('n friends)
f5a2b2
f5a2b2
* Tue May 25 2004 Rex Dieter <rexdieter at sf.net> 0:6.3-0.fdr.0.2.alpha6
f5a2b2
- 6.3alpha6
f5a2b2
- --disable-static
f5a2b2
- --enable-parallel-mark
f5a2b2
f5a2b2
* Wed Dec 17 2003 Rex Dieter <rexdieter at sf.net> 0:6.3-0.fdr.0.1.alpha2
f5a2b2
- 6.3alpha2
f5a2b2
f5a2b2
* Thu Oct 02 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.3
f5a2b2
- OK, put manpage in man3.
f5a2b2
f5a2b2
* Thu Oct 02 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.2
f5a2b2
- drop manpage pending feedback from developer.
f5a2b2
f5a2b2
* Tue Sep 30 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.1
f5a2b2
- fix manpage location
f5a2b2
- remove .la file (it appears unnecessary after all, thanks to opendl patch)
f5a2b2
- remove cvs tag from description
f5a2b2
- touchup -devel desc/summary.
f5a2b2
- macro update to support Fedora Core
f5a2b2
f5a2b2
* Thu Sep 11 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.0
f5a2b2
- 6.2 release.
f5a2b2
- update license (BSD)
f5a2b2
- Consider building with: --enable-parallel-mark
f5a2b2
  (for now, no).