5b1b2f
%bcond_with largefile
5b1b2f
5b1b2f
Summary: A GNU set of database routines which use extensible hashing
5b1b2f
Name: gdbm
5b1b2f
Version: 1.19
5b1b2f
Release: 4%{?dist}
5b1b2f
Epoch: 1
5b1b2f
License: GPLv3+
5b1b2f
URL: http://www.gnu.org/software/gdbm/
5b1b2f
5b1b2f
Source: http://ftp.gnu.org/gnu/gdbm/gdbm-%{version}.tar.gz
5b1b2f
5b1b2f
BuildRequires: gcc
5b1b2f
BuildRequires: libtool
5b1b2f
BuildRequires: gettext
5b1b2f
BuildRequires: readline-devel
5b1b2f
BuildRequires: make
5b1b2f
5b1b2f
# when -libs subpkg was introduced
5b1b2f
Obsoletes: gdbm < 1:1.14.1-4
5b1b2f
5b1b2f
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
5b1b2f
5b1b2f
%description
5b1b2f
Gdbm is a GNU database indexing library, including routines which use
5b1b2f
extensible hashing.  Gdbm works in a similar way to standard UNIX dbm
5b1b2f
routines.  Gdbm is useful for developers who write C applications and
5b1b2f
need access to a simple and efficient database or who are building C
5b1b2f
applications which will use such a database.
5b1b2f
5b1b2f
If you're a C developer and your programs need access to simple
5b1b2f
database routines, you should install gdbm.  You'll also need to
5b1b2f
install gdbm-devel.
5b1b2f
5b1b2f
%package libs
5b1b2f
Summary: Libraries files for gdbm
5b1b2f
# when -libs subpkg was introduced
5b1b2f
Obsoletes: gdbm < 1:1.14.1-4
5b1b2f
5b1b2f
%description libs
5b1b2f
Libraries for the Gdbm GNU database indexing library
5b1b2f
5b1b2f
%package devel
5b1b2f
Summary: Development libraries and header files for the gdbm library
5b1b2f
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
5b1b2f
Requires(post): info
5b1b2f
Requires(preun): info
5b1b2f
5b1b2f
%description devel
5b1b2f
Gdbm-devel contains the development libraries and header files for
5b1b2f
gdbm, the GNU database system.  These libraries and header files are
5b1b2f
necessary if you plan to do development using the gdbm database.
5b1b2f
5b1b2f
Install gdbm-devel if you are developing C programs which will use the
5b1b2f
gdbm database library.  You'll also need to install the gdbm package.
5b1b2f
5b1b2f
%prep
5b1b2f
%setup -q
5b1b2f
5b1b2f
%build
5b1b2f
%configure \
5b1b2f
    --disable-static \
5b1b2f
%{!?with_largefile: --disable-largefile} \
5b1b2f
    --disable-rpath \
5b1b2f
    --enable-libgdbm-compat
5b1b2f
5b1b2f
# get rid of rpath (as per https://fedoraproject.org/wiki/Packaging:Guidelines#Beware_of_Rpath)
5b1b2f
# currently --disable-rpath doesn't work for gdbm_dump|load, gdbmtool and libgdbm_compat.so.4
5b1b2f
# https://puszcza.gnu.org.ua/bugs/index.php?359
5b1b2f
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
5b1b2f
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
5b1b2f
5b1b2f
%make_build
5b1b2f
5b1b2f
%install
5b1b2f
%make_install
5b1b2f
5b1b2f
%find_lang %{name}
5b1b2f
5b1b2f
# create symlinks for compatibility
5b1b2f
mkdir -p $RPM_BUILD_ROOT/%{_includedir}/gdbm
5b1b2f
ln -sf ../gdbm.h $RPM_BUILD_ROOT/%{_includedir}/gdbm/gdbm.h
5b1b2f
ln -sf ../ndbm.h $RPM_BUILD_ROOT/%{_includedir}/gdbm/ndbm.h
5b1b2f
ln -sf ../dbm.h $RPM_BUILD_ROOT/%{_includedir}/gdbm/dbm.h
5b1b2f
5b1b2f
# Remove libtool archives
5b1b2f
find %{buildroot} -type f -name "*.la" -delete
5b1b2f
5b1b2f
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
5b1b2f
5b1b2f
%check
5b1b2f
export LD_LIBRARY_PATH=`pwd`/src/.libs/:`pwd`/compat/.libs/
5b1b2f
make check
5b1b2f
5b1b2f
%ldconfig_scriptlets libs
5b1b2f
5b1b2f
%files -f %{name}.lang
5b1b2f
%doc NEWS README THANKS AUTHORS NOTE-WARNING
5b1b2f
%{_bindir}/gdbm*
5b1b2f
%{_mandir}/man1/gdbm*
5b1b2f
5b1b2f
%files libs
5b1b2f
%license COPYING
5b1b2f
%{_libdir}/libgdbm.so.6*
5b1b2f
%{_libdir}/libgdbm_compat.so.4*
5b1b2f
5b1b2f
%files devel
5b1b2f
%{_libdir}/libgdbm.so
5b1b2f
%{_libdir}/libgdbm_compat.so
5b1b2f
%{_includedir}/*
5b1b2f
%{_infodir}/*.info*
5b1b2f
%{_mandir}/man3/*
5b1b2f
5b1b2f
%changelog
5b1b2f
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.19-4
5b1b2f
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
5b1b2f
  Related: rhbz#1991688
5b1b2f
5b1b2f
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.19-3
5b1b2f
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
5b1b2f
5b1b2f
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.19-2
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
5b1b2f
5b1b2f
* Tue Jan 5 2021 Filip Januš <fjanus@redhat.com> - 1.19-1
5b1b2f
- Rebase to latest release 1.19
5b1b2f
- Remove gdbm_gcc_10.patch no more necessary
5b1b2f
5b1b2f
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.18.1-5
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5b1b2f
5b1b2f
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 1:1.18.1-4
5b1b2f
- Use make macros
5b1b2f
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
5b1b2f
5b1b2f
* Fri Feb 7 2020 Filip Januš <fjanus@redhat.com> - 1.18.1-3
5b1b2f
- Resolves: #1799391
5b1b2f
- After upgrade GCC to version gcc version 10.0.1 build fails
5b1b2f
- Patch gdbm_gcc_10.patch was added
5b1b2f
5b1b2f
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.18.1-2
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5b1b2f
5b1b2f
* Sun Oct 13 2019 Christian Stadelmann <genodeftest@fedoraproject.org>
5b1b2f
- Remove outdated comments from spec file
5b1b2f
5b1b2f
* Mon Sep 23 2019 Filip Janus <fjanus@redhat.com> - 1.18.1-1
5b1b2f
- Upstream released 1.18.1 bug(#1706639)
5b1b2f
- Remove old patches
5b1b2f
5b1b2f
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.18-5
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
5b1b2f
5b1b2f
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.18-4
5b1b2f
- Rebuild for readline 8.0
5b1b2f
5b1b2f
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.18-3
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
5b1b2f
5b1b2f
* Mon Oct 01 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.18-2
5b1b2f
- Add Obsoletes to better handle upgrade path from before -libs was introduced
5b1b2f
5b1b2f
* Tue Sep 25 2018 mskalick@redhat.com
5b1b2f
- Rebase to latest release 1.18
5b1b2f
- Fix issues found by coverity
5b1b2f
5b1b2f
* Tue Aug 21 2018 mskalick@redhat.com - 1:1.17-2
5b1b2f
- Fix directory entry validation - fails qsf test suite
5b1b2f
5b1b2f
* Tue Aug 07 2018 mskalick@redhat.com - 1:1.17-1
5b1b2f
- Rebase to upstream release 1.17
5b1b2f
5b1b2f
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.16-2
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
5b1b2f
5b1b2f
* Thu Jun 28 2018 mskalick@redhat.com - 1:1.16-1
5b1b2f
- Rebase to latest release 1.16
5b1b2f
5b1b2f
* Wed Jun 20 2018 mskalick@redhat.com - 1:1.15-1
5b1b2f
- Rebase to latest upstream relase 1.15
5b1b2f
5b1b2f
* Mon Mar 12 2018 Peter Robinson <pbrobinson@fedoraproject.org>a 1:1.14.1-4
5b1b2f
- Split libraries out to separate libs subpackage
5b1b2f
- Minor spec cleanups
5b1b2f
5b1b2f
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.14.1-3
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5b1b2f
5b1b2f
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.14.1-2
5b1b2f
- Switch to %%ldconfig_scriptlets
5b1b2f
5b1b2f
* Mon Jan 29 2018 Marek Skalický <mskalick@redhat.com> - 1:1.14.1-1
5b1b2f
- Rebase to latest upstream release
5b1b2f
  (soname bump for ABI breakage in 1.14)
5b1b2f
5b1b2f
* Tue Jan 16 2018 Marek Skalický <mskalick@redhat.com> - 1:1.14-3
5b1b2f
- Fix -devel require to include also epoch
5b1b2f
5b1b2f
* Tue Jan 16 2018 Marek Skalický <mskalick@redhat.com> - 1:1.14-2
5b1b2f
- Introduce epoch to not to break upgrade path from F27
5b1b2f
5b1b2f
* Wed Jan 03 2018 Petr Kubat <pkubat@redhat.com> - 1.14-1
5b1b2f
- Upgrade to gdbm 1.14
5b1b2f
- Resolves #1467431
5b1b2f
5b1b2f
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.13-3
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5b1b2f
5b1b2f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.13-2
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5b1b2f
5b1b2f
* Thu Mar 23 2017 Marek Skalický <mskalick@redhat.com> - 1.13-1
5b1b2f
- Upgrade to gdbm 1.13
5b1b2f
5b1b2f
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12-2
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5b1b2f
5b1b2f
* Thu Mar 17 2016 Marek Skalicky <mskalick@redhat.com> - 1.12-1
5b1b2f
- Upgrade to gdbm-1.12 (#1336604)
5b1b2f
5b1b2f
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-7
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5b1b2f
5b1b2f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11-6
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5b1b2f
5b1b2f
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.11-5
5b1b2f
- Rebuilt for Fedora 23 Change
5b1b2f
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
5b1b2f
5b1b2f
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11-4
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5b1b2f
5b1b2f
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 1.11-3
5b1b2f
- fix license handling
5b1b2f
5b1b2f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11-2
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5b1b2f
5b1b2f
* Wed Mar 05 2014 Honza Horak <hhorak@redhat.com> - 1.11-1
5b1b2f
- Upgrade to gdbm-1.11
5b1b2f
  Resolves: #1046643
5b1b2f
5b1b2f
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-7
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
5b1b2f
5b1b2f
* Mon Mar 25 2013 Honza Horak <hhorak@redhat.com> - 1.10-6
5b1b2f
- Fixed some issues found by Coverity
5b1b2f
- Add support of aarch64
5b1b2f
5b1b2f
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-5
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
5b1b2f
5b1b2f
* Mon Aug 27 2012 Honza Horak <hhorak@redhat.com> - 1.10-4
5b1b2f
- Spec file cleanup
5b1b2f
- Use make DESTDIR=... install instead of %%make_install
5b1b2f
5b1b2f
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-3
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5b1b2f
5b1b2f
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-2
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5b1b2f
5b1b2f
* Mon Nov 14 2011 Honza Horak <hhorak@redhat.com> - 1.10-1
5b1b2f
- Updated to new upstream release 1.10
5b1b2f
- Dropped -shortread patch, which has been already applied by upstream
5b1b2f
- Disable large file support, that is enabled by default since 1.9, 
5b1b2f
  but not compatible with db files created using gdbm-1.8.3 and lower
5b1b2f
- License change to GPLv3+
5b1b2f
- Add doc files THANKS AUTHORS NOTE-WARNING
5b1b2f
- Changed text in NOTE-WARNING to correspond with build settings
5b1b2f
5b1b2f
* Tue Sep 20 2011 Honza Horak <hhorak@redhat.com> - 1.9.1-1
5b1b2f
- Updated to new upstream release 1.9.1
5b1b2f
- Dropped -filestruct, -ndbmlock and -fhs patches, they are not 
5b1b2f
  needed anymore and GDBM_NOLOCK is used always
5b1b2f
- Run testsuite
5b1b2f
5b1b2f
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.3-9
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5b1b2f
5b1b2f
* Thu Jan 13 2011 Jan Horak <hhorak@redhat.com> - 1.8.3-8
5b1b2f
- Added filestruct patch (#668178)
5b1b2f
5b1b2f
* Mon Jan 03 2011 Karel Klic <kklic@redhat.com> - 1.8.3-7
5b1b2f
- Removed BuildRoot tag
5b1b2f
- Removed %%clean section
5b1b2f
- Added ndbmlock patch (#663932)
5b1b2f
5b1b2f
* Mon Apr 12 2010 Karel Klic <kklic@redhat.com> - 1.8.3-6
5b1b2f
- Use fcntl instead of flock for locking to make nfs safe (#477300)
5b1b2f
5b1b2f
* Thu Mar 11 2010 Karel Klic <kklic@redhat.com> - 1.8.3-5
5b1b2f
- Removed fake Provides: libgdbm.so.2 and corresponding symlinks
5b1b2f
- Moved autoconf, libtoolize from %%build to %%prep section
5b1b2f
- Remove static builds from the devel package (#556050)
5b1b2f
5b1b2f
* Thu Mar 11 2010 Karel Klic <kklic@redhat.com> - 1.8.3-4
5b1b2f
- Provides: libgdbm.so.2()(64bit) for x86_64 architecture
5b1b2f
5b1b2f
* Thu Mar 11 2010 Karel Klic <kklic@redhat.com> - 1.8.3-3
5b1b2f
- Added temporary symlinks to retain compatibility with gdbm 1.8.0
5b1b2f
5b1b2f
* Wed Mar 10 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.8.3-2
5b1b2f
- %%files: track shlib sonames, so abi breaks are less of a surprise
5b1b2f
5b1b2f
* Tue Mar 09 2010 Karel Klic <kklic@redhat.com> - 1.8.3-1
5b1b2f
- Newer upstream release
5b1b2f
- Removed gdbm-1.8.0-64offset.patch, because it was merged by the upstream
5b1b2f
- `jbj' patch extended and renamed to `zeroheaders'
5b1b2f
- Added shortread patch from Debian
5b1b2f
5b1b2f
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.0-33
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
5b1b2f
5b1b2f
* Fri Apr 17 2009 Stepan Kasal <skasal@redhat.com> - 1.8.0-32
5b1b2f
- Clean up the spec, for merge review.
5b1b2f
5b1b2f
* Fri Feb 27 2009 Stepan Kasal <skasal@redhat.com> - 1.8.0-31
5b1b2f
- drop *-cflags.patch, move all makefile fixes to *-fhs.patch
5b1b2f
- propagate libdir to Makefile; no need to set it on cmdline
5b1b2f
5b1b2f
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.0-30
5b1b2f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
5b1b2f
5b1b2f
* Mon Jul 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.8.0-29
5b1b2f
- fix license tag
5b1b2f
5b1b2f
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.8.0-28
5b1b2f
- Autorebuild for GCC 4.3
5b1b2f
5b1b2f
* Tue Apr 3 2007 Ondrej Dvoracek <odvorace@redhat.com> - 1.8.0-27
5b1b2f
- made install-info use in scriptlets safe (#223688)
5b1b2f
5b1b2f
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.8.0-26.2.1
5b1b2f
- rebuild
5b1b2f
5b1b2f
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.8.0-26.2
5b1b2f
- bump again for double-long bug on ppc(64)
5b1b2f
5b1b2f
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.8.0-26.1
5b1b2f
- rebuilt for new gcc4.1 snapshot and glibc changes
5b1b2f
5b1b2f
* Tue Jan 24 2006 Warren Togami <wtogami@redhat.com> 1.8.0-26
5b1b2f
- remove .la (#171535)
5b1b2f
5b1b2f
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
5b1b2f
- rebuilt
5b1b2f
5b1b2f
* Sat Apr 09 2005 Florian La Roche <laroche@redhat.com>
5b1b2f
- rebuild
5b1b2f
5b1b2f
* Sun Aug  8 2004 Alan Cox <alan@redhat.com> 1.8.0-24
5b1b2f
- Close bug #125319
5b1b2f
5b1b2f
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
5b1b2f
- rebuilt
5b1b2f
5b1b2f
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
5b1b2f
- rebuilt
5b1b2f
5b1b2f
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
5b1b2f
- rebuilt
5b1b2f
5b1b2f
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
5b1b2f
- rebuilt
5b1b2f
5b1b2f
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
5b1b2f
- rebuilt
5b1b2f
5b1b2f
* Fri Oct  4 2002 Nalin Dahyabhai <nalin@redhat.com> 1.8.0-19
5b1b2f
- rebuild
5b1b2f
5b1b2f
* Fri Sep 13 2002 Nalin Dahyabhai <nalin@redhat.com> 1.8.0-18.1
5b1b2f
- run make with libdir overridden so that it has the value passed to configure
5b1b2f
  instead of $(prefix)/lib
5b1b2f
5b1b2f
* Wed Jul 24 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.8.0-18
5b1b2f
- Remove cflags for large database support - not compatible 
5b1b2f
  with databases without it
5b1b2f
5b1b2f
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
5b1b2f
- automated rebuild
5b1b2f
5b1b2f
* Thu May 23 2002 Tim Powers <timp@redhat.com>
5b1b2f
- automated rebuild
5b1b2f
5b1b2f
* Thu Apr 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.8.0-15
5b1b2f
- Use 64bit offset
5b1b2f
- Patch to make the above not break from downsj@downsj.com (#63980) 
5b1b2f
5b1b2f
* Tue Feb 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.8.0-14
5b1b2f
- Rebuild
5b1b2f
5b1b2f
* Fri Jan 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.8.0-13
5b1b2f
- Update location
5b1b2f
- auto* changes to make it build
5b1b2f
5b1b2f
* Wed Oct 17 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.8.0-11
5b1b2f
- Add URL (# 54607)
5b1b2f
5b1b2f
* Mon Jun 25 2001 Nalin Dahyabhai <nalin@redhat.com>
5b1b2f
- s/Copyright:/License:/g
5b1b2f
- include text docs in binary package
5b1b2f
5b1b2f
* Tue Jun 12 2001 Than Ngo <than@redhat.com>
5b1b2f
- fix to build against new libtool
5b1b2f
5b1b2f
* Mon Mar 19 2001 Trond Eivind Glomsrød <teg@redhat.com>
5b1b2f
- Make it respect RPM_OPT_FLAGS/CFLAGS - #32242. 
5b1b2f
  Patch from dan@D00M.cmc.msu.ru
5b1b2f
5b1b2f
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
5b1b2f
- automatic rebuild
5b1b2f
5b1b2f
* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
5b1b2f
- FHS packaging.
5b1b2f
5b1b2f
* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
5b1b2f
- handle compressed manpages
5b1b2f
5b1b2f
* Tue Aug 10 1999 Jeff Johnson <jbj@redhat.com>
5b1b2f
- make sure created database header is initialized (#4457).
5b1b2f
5b1b2f
* Tue Jun  1 1999 Jeff Johnson <jbj@redhat.com>
5b1b2f
- update to 1.8.0.
5b1b2f
- repackage to include /usr/include/gdbm/*dbm.h compatibility includes.
5b1b2f
5b1b2f
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
5b1b2f
- auto rebuild in the new build environment (release 19)
5b1b2f
5b1b2f
* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
5b1b2f
- build against glibc 2.1
5b1b2f
5b1b2f
* Thu May 07 1998 Prospector System <bugs@redhat.com>
5b1b2f
- translations modified for de, fr, tr
5b1b2f
5b1b2f
* Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
5b1b2f
- gdbm-devel moved to Development/Libraries
5b1b2f
5b1b2f
* Wed Apr 08 1998 Cristian Gafton <gafton@redhat.com>
5b1b2f
- buildroot and built for Manhattan
5b1b2f
5b1b2f
* Tue Oct 14 1997 Donnie Barnes <djb@redhat.com>
5b1b2f
- spec file cleanups
5b1b2f
5b1b2f
* Thu Jun 12 1997 Erik Troan <ewt@redhat.com>
5b1b2f
- built against glibc