Blame SPECS/unixODBC.spec

76d59a
Summary: A complete ODBC driver manager for Linux
76d59a
Name: unixODBC
76d59a
Version: 2.3.7
76d59a
Release: 1%{?dist}
76d59a
Group: System Environment/Libraries
76d59a
URL: http://www.unixODBC.org/
76d59a
# Programs are GPL, libraries are LGPL, except News Server library is GPL.
76d59a
License: GPLv2+ and LGPLv2+
76d59a
76d59a
Source: http://www.unixODBC.org/%{name}-%{version}.tar.gz
76d59a
Source1: odbcinst.ini
76d59a
Source5: README.dist
76d59a
76d59a
Patch8: so-version-bump.patch
76d59a
Patch9: keep-typedefs.patch
76d59a
76d59a
Conflicts: iodbc
76d59a
76d59a
BuildRequires: automake autoconf libtool libtool-ltdl-devel bison flex
76d59a
BuildRequires: readline-devel
76d59a
BuildRequires: multilib-rpm-config
76d59a
76d59a
%description
76d59a
Install unixODBC if you want to access databases through ODBC.
76d59a
You will also need the mariadb-connector-odbc package if you want to access
76d59a
a MySQL or MariaDB database, and/or the postgresql-odbc package for PostgreSQL.
76d59a
76d59a
%package devel
76d59a
Summary: Development files for programs which will use the unixODBC library
76d59a
Group: Development/Libraries
76d59a
Requires: %{name}%{?_isa} = %{version}-%{release}
76d59a
76d59a
%description devel
76d59a
The unixODBC package can be used to access databases through ODBC
76d59a
drivers. If you want to develop programs that will access data through
76d59a
ODBC, you need to install this package.
76d59a
76d59a
%prep
76d59a
%setup -q
76d59a
%patch8 -p1 -b .soname-bump
76d59a
%patch9 -p1
76d59a
76d59a
chmod 0644 Drivers/MiniSQL/*.c
76d59a
chmod 0644 Drivers/nn/*.c
76d59a
chmod 0644 Drivers/template/*.c
76d59a
chmod 0644 doc/ProgrammerManual/Tutorial/*.html
76d59a
chmod 0644 doc/lst/*
76d59a
chmod 0644 include/odbcinst.h
76d59a
76d59a
autoreconf -vfi
76d59a
76d59a
76d59a
%build
76d59a
# unixODBC 2.2.14 is not aliasing-safe
76d59a
CFLAGS="%{optflags} -fno-strict-aliasing"
76d59a
CXXFLAGS="$CFLAGS"
76d59a
export CFLAGS CXXFLAGS
76d59a
76d59a
%configure --with-gnu-ld=yes --enable-threads=yes \
76d59a
	--enable-drivers=yes --enable-driverc=yes
76d59a
76d59a
# Get rid of the rpaths
76d59a
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
76d59a
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
76d59a
76d59a
make all
76d59a
76d59a
%install
76d59a
make DESTDIR=$RPM_BUILD_ROOT install
76d59a
install -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
76d59a
%multilib_fix_c_header --file %{_includedir}/unixodbc_conf.h
76d59a
76d59a
# add some explanatory documentation
76d59a
cp %{SOURCE5} README.dist
76d59a
76d59a
# remove obsolete Postgres drivers from the package (but not the setup code)
76d59a
rm -f $RPM_BUILD_ROOT%{_libdir}/libodbcpsql.so*
76d59a
76d59a
# copy text driver documentation into main doc directory
76d59a
# currently disabled because upstream no longer includes text driver
76d59a
# mkdir -p doc/Drivers/txt
76d59a
# cp -pr Drivers/txt/doc/* doc/Drivers/txt
76d59a
76d59a
# don't want to install doc Makefiles as docs
76d59a
find doc -name 'Makefile*' | xargs rm
76d59a
76d59a
# we do not want to ship static libraries
76d59a
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
76d59a
76d59a
# remove unpackaged files from the buildroot
76d59a
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
76d59a
rm -f $RPM_BUILD_ROOT%{_libdir}/libltdl.*
76d59a
rm -rf $RPM_BUILD_ROOT%{_datadir}/libtool
76d59a
76d59a
# initialize lists of .so files
76d59a
find $RPM_BUILD_ROOT%{_libdir} -name "*.so.*" | sed "s|^$RPM_BUILD_ROOT||" > base-so-list
76d59a
find $RPM_BUILD_ROOT%{_libdir} -name "*.so"   | sed "s|^$RPM_BUILD_ROOT||" > devel-so-list
76d59a
76d59a
# move these to main package, they're often dlopened...
76d59a
for lib in libodbc.so libodbcinst.so libodbcpsqlS.so libodbcmyS.so libtdsS.so
76d59a
do
76d59a
    echo "%{_libdir}/$lib" >> base-so-list
76d59a
    grep -v "/$lib$" devel-so-list > devel-so-list.x
76d59a
    mv -f devel-so-list.x devel-so-list
76d59a
done
76d59a
76d59a
%files -f base-so-list
76d59a
%doc README COPYING AUTHORS ChangeLog NEWS doc
76d59a
%doc README.dist
76d59a
%config(noreplace) %{_sysconfdir}/odbc*
76d59a
%{_bindir}/odbcinst
76d59a
%{_bindir}/isql
76d59a
%{_bindir}/dltest
76d59a
%{_bindir}/iusql
76d59a
%{_bindir}/odbc_config
76d59a
%{_bindir}/slencheck
76d59a
%{_mandir}/man*/*
76d59a
76d59a
%files devel -f devel-so-list
76d59a
%{_includedir}/*
76d59a
%_libdir/pkgconfig/*.pc
76d59a
76d59a
%post -p /sbin/ldconfig
76d59a
%postun -p /sbin/ldconfig
76d59a
76d59a
%changelog
76d59a
* Sat Aug 11 2018 Pavel Raiskup <praiskup@redhat.com> - 2.3.7-1
76d59a
- update to version 2.3.7
76d59a
76d59a
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.6-2
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
76d59a
76d59a
* Fri Apr 27 2018 Pavel Raiskup <praiskup@redhat.com> - 2.3.6-1
76d59a
- update to version 2.3.6
76d59a
76d59a
* Wed Mar 07 2018 Honza Horak <hhorak@redhat.com> - 2.3.5-3
76d59a
- Bump for a rebuild
76d59a
76d59a
* Tue Feb 20 2018 Pavel Raiskup <praiskup@redhat.com> - 2.3.5-2
76d59a
- cleanup autotool hacks
76d59a
76d59a
* Mon Feb 19 2018 Jan Staněk <jstanek@redhat.com> - 2.3.5-1
76d59a
- Update to version 2.3.5
76d59a
76d59a
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-10
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
76d59a
76d59a
* Wed Jan 03 2018 Honza Horak <hhorak@redhat.com> - 2.3.4-9
76d59a
- Include mariadb-connector-odbc driver spec in the odbcinst.ini
76d59a
76d59a
* Wed Aug 30 2017 Tomas Repik <trepik@redhat.com> - 2.3.4-8
76d59a
- move libtdsS.so to the main package and add tds config to odbcinst.ini
76d59a
- rhbz#1448890
76d59a
76d59a
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-7
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
76d59a
76d59a
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-6
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
76d59a
76d59a
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-5
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
76d59a
76d59a
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.3.4-4
76d59a
- Rebuild for readline 7.x
76d59a
76d59a
* Wed Jun 22 2016 Pavel Raiskup <praiskup@redhat.com> - 2.3.4-3
76d59a
- delegate multilib hacks to multilib-rpm-config package
76d59a
76d59a
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-2
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
76d59a
76d59a
* Tue Sep 01 2015 Jan Stanek <jstanek@redhat.com> - 2.3.4-1
76d59a
- Update to version 2.3.4
76d59a
76d59a
* Tue Aug 25 2015 Jan Stanek <jstanek@redhat.com> - 2.3.3-1
76d59a
- Update to version 2.3.3
76d59a
- Removed patches and sources included upstream
76d59a
- Recreated so-version-bump.patch
76d59a
76d59a
* Wed Aug 12 2015 Jan Stanek <jstanek@redhat.com> - 2.3.2-8
76d59a
- Backported changes necessary for building with new autotools version.
76d59a
76d59a
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-7
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
76d59a
76d59a
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-6
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
76d59a
76d59a
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-5
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
76d59a
76d59a
* Tue Feb 18 2014 Jan Stanek <jstanek@redhat.com> - 2.3.2-4
76d59a
- Added manual pages for iusql, dltest, odbc_config
76d59a
76d59a
* Fri Dec 06 2013 Jan Stanek <jstanek@redhat.com> - 2.3.2-3
76d59a
- Renamed README.fedora to README.dist
76d59a
76d59a
* Thu Oct 24 2013 Jan Stanek <jstanek@redhat.com> - 2.3.2-2
76d59a
- Add man page describing enviromental variables (#991018)
76d59a
76d59a
* Thu Oct 10 2013 Jan Stanek <jstanek@redhat.com> - 2.3.2-1
76d59a
- Update to 2.3.2 version
76d59a
- Removed extra man-pages and patch already shipped by upstream
76d59a
76d59a
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-7
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
76d59a
76d59a
* Thu Jul  4 2013 Honza Horak <hhorak@redhat.com> 2.3.1-6
76d59a
- Spec file clean-up
76d59a
- Provide man pages created by Jan Stanek
76d59a
76d59a
* Thu Jul  4 2013 Honza Horak <hhorak@redhat.com> 2.3.1-5
76d59a
- Fix Coverity patch
76d59a
  Resolves: #981060
76d59a
76d59a
* Tue Mar 19 2013 Tom Lane <tgl@redhat.com> 2.3.1-4
76d59a
- Fix assorted small bugs found by Coverity
76d59a
Related: #760877
76d59a
76d59a
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-3
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
76d59a
76d59a
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-2
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
76d59a
76d59a
* Tue Jan 10 2012 Tom Lane <tgl@redhat.com> 2.3.1-1
76d59a
- Update to version 2.3.1.  The main externally-visible change is that the
76d59a
  GUI programs are not part of the unixODBC tarball anymore, so they are no
76d59a
  longer in this package, and the unixODBC-kde sub-RPM has disappeared.
76d59a
  There is a separate package unixODBC-gui-qt that now provides those programs.
76d59a
76d59a
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.14-13
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
76d59a
76d59a
* Tue Aug 31 2010 Tom Lane <tgl@redhat.com> 2.2.14-12
76d59a
- Fix isql crash at EOF with -b option
76d59a
Resolves: #628909
76d59a
76d59a
* Mon May  3 2010 Tom Lane <tgl@redhat.com> 2.2.14-11
76d59a
- Re-add accidentally-removed desktop icon for ODBCConfig
76d59a
Related: #587933
76d59a
76d59a
* Sat Mar 13 2010 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.2.14-10
76d59a
- BR qt-assistant-adp-devel
76d59a
76d59a
* Sat Dec 19 2009 Tom Lane <tgl@redhat.com> 2.2.14-9
76d59a
- Fix bug preventing drivers from being selected in ODBCConfig
76d59a
Resolves: #544852
76d59a
76d59a
* Wed Nov 25 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.2.14-8
76d59a
- Rebuild for Qt 4.6.0 RC1 in F13 (was built against Beta 1 with unstable ABI)
76d59a
76d59a
* Thu Oct 15 2009 Tom Lane <tgl@redhat.com> 2.2.14-7
76d59a
- Clean up bogosity in multilib stub header support: ia64 should not be
76d59a
  listed (it's not multilib), sparcv9 isn't a possible uname -i output
76d59a
76d59a
* Fri Aug 21 2009 Tom Lane <tgl@redhat.com> 2.2.14-6
76d59a
- Switch to building against qt4, not qt3.  This means the DataManager,
76d59a
  DataManagerII, and odbctest applications are gone.
76d59a
Resolves: #514064
76d59a
- Use Driver64/Setup64 to eliminate need for hand-adjustment of odbcinst.ini
76d59a
Resolves: #514688
76d59a
- Fix misdeclaration of SQLBIGINT and SQLUBIGINT in generated header files
76d59a
Resolves: #518623
76d59a
76d59a
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.14-5
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
76d59a
76d59a
* Tue Jun  9 2009 Peter Lemenkov <lemenkov@gmail.com> - 2.2.14-4
76d59a
- Properly install *.desktop files
76d59a
- No need to ship INSTALL in docs
76d59a
- Use macros instead of hardcoded /usr/share and /usr/include
76d59a
- fixed permissions on some doc- and src-files
76d59a
- Almost all rpmlint messages are gone now
76d59a
76d59a
* Sat Jun 06 2009 Dennis Gilmore <dennis@ausil.us> - 2.2.14-3
76d59a
- add sparc support to the multilib includes header
76d59a
76d59a
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.14-2
76d59a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
76d59a
76d59a
* Fri Feb 20 2009 Tom Lane <tgl@redhat.com> 2.2.14-1
76d59a
- Update to unixODBC 2.2.14.  Note this involves an ABI break and a consequent
76d59a
  soname version bump, because upstream fixed some mistakes in the widths of
76d59a
  some API datatypes for 64-bit platforms.  Also, the formerly embedded
76d59a
  mysql, postgresql, and text drivers have been removed.  (For mysql and
76d59a
  postgresql, use the separate mysql-connector-odbc and postgresql-odbc
76d59a
  packages, which are far more up to date.  The text driver is not currently
76d59a
  shipped by upstream at all, but might get revived as a separate SRPM later.)
76d59a
- Stop shipping .a library files, per distro policy.
76d59a
- Fixes for libtool 2.2.
76d59a
76d59a
* Mon Jul 28 2008 Tom Lane <tgl@redhat.com> 2.2.12-9
76d59a
- Fix build failure caused by new default patch fuzz = 0 policy in rawhide.
76d59a
76d59a
* Fri Jun 13 2008 Tom Lane <tgl@redhat.com> 2.2.12-8
76d59a
- Install icons in /usr/share/pixmaps, not /usr/share/icons as this package
76d59a
  has historically done; the former is considered correct.
76d59a
76d59a
* Fri Apr  4 2008 Tom Lane <tgl@redhat.com> 2.2.12-7
76d59a
- Must BuildRequire qt3 now that Fedora has renamed qt4 to qt
76d59a
Resolves: #440798
76d59a
76d59a
* Mon Feb 11 2008 Tom Lane <tgl@redhat.com> 2.2.12-6
76d59a
- Move libodbcinst.so symlink into main package, since it's often dlopen'd
76d59a
Related: #204882
76d59a
- Clean up specfile's ugly coding for making base-vs-devel decisions
76d59a
76d59a
* Sun Dec 30 2007 Tom Lane <tgl@redhat.com> 2.2.12-5
76d59a
- Add missing BuildRequires for flex.
76d59a
Resolves: #427063
76d59a
76d59a
* Thu Aug  2 2007 Tom Lane <tgl@redhat.com> 2.2.12-4
76d59a
- Update License tag to match code.
76d59a
76d59a
* Fri Apr 20 2007 Tom Lane <tgl@redhat.com> 2.2.12-3
76d59a
- Make configure find correct Qt libraries when building on a multilib machine
76d59a
76d59a
* Mon Apr 16 2007 Tom Lane <tgl@redhat.com> 2.2.12-2
76d59a
- Drop BuildRequires for kdelibs-devel
76d59a
Resolves: #152717
76d59a
- Clean up a few rpmlint complaints
76d59a
76d59a
* Wed Dec  6 2006 Tom Lane <tgl@redhat.com> 2.2.12-1
76d59a
- Update to unixODBC 2.2.12.
76d59a
- Add missing BuildPrereq for bison.
76d59a
Resolves: #190427
76d59a
76d59a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.2.11-7.1
76d59a
- rebuild
76d59a
76d59a
* Mon Mar 27 2006 Tom Lane <tgl@redhat.com> 2.2.11-7
76d59a
- Fix minor problems in desktop files (bug #185764)
76d59a
76d59a
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2.11-6.2.1
76d59a
- bump again for double-long bug on ppc(64)
76d59a
76d59a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2.11-6.2
76d59a
- rebuilt for new gcc4.1 snapshot and glibc changes
76d59a
76d59a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
76d59a
- rebuilt
76d59a
76d59a
* Mon Nov 21 2005 Tom Lane <tgl@redhat.com> 2.2.11-6
76d59a
- Patch NO-vs-no discrepancy between aclocal/acinclude and recent autoconf
76d59a
  versions (not sure if this has been broken for a long time, or was just
76d59a
  exposed by modular X changeover).
76d59a
- Apparently need to require libXt-devel too for modular X.
76d59a
76d59a
* Mon Nov  7 2005 Tom Lane <tgl@redhat.com> 2.2.11-5
76d59a
- Adjust BuildPrereq for modular X.
76d59a
76d59a
* Sun Oct 16 2005 Florian La Roche <laroche@redhat.com> 2.2.11-4
76d59a
- link against dependent libs
76d59a
- fix some bugs to resolve unknown symbols ;-(
76d59a
76d59a
* Thu Sep 29 2005 Tom Lane <tgl@redhat.com> 2.2.11-3
76d59a
- Force update of yac.h because the copy in the distributed tarball does not
76d59a
  match bison 2.0's numbering of symbols (bz #162676)
76d59a
- Include documentation of text-file driver
76d59a
- Use private libltdl so we can omit RTLD_GLOBAL from dlopen flags (bz #161399)
76d59a
76d59a
* Sat Sep 24 2005 Tom Lane <tgl@redhat.com> 2.2.11-2
76d59a
- Remove Makefiles accidentally included in docs installation (bz #168819)
76d59a
- Updates to keep newer libtool code from installing itself as part of package
76d59a
76d59a
* Fri Apr  8 2005 Tom Lane <tgl@redhat.com> 2.2.11-1
76d59a
- Update to unixODBC 2.2.11
76d59a
76d59a
* Mon Mar  7 2005 Tom Lane <tgl@redhat.com> 2.2.10-3
76d59a
- Rebuild with gcc4.
76d59a
76d59a
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 2.2.10-2
76d59a
- Rebuilt for new readline.
76d59a
76d59a
* Thu Oct 28 2004 Tom Lane <tgl@redhat.com> 2.2.10-1
76d59a
- Update to unixODBC 2.2.10
76d59a
76d59a
* Wed Sep 22 2004 Tom Lane <tgl@redhat.com> 2.2.9-1
76d59a
- Update to unixODBC 2.2.9
76d59a
76d59a
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
76d59a
- rebuilt
76d59a
76d59a
* Sat May  8 2004 Tom Lane <tgl@redhat.com> 2.2.8-5
76d59a
- Backpatch fix for double-free error from upstream devel sources.
76d59a
- rebuilt
76d59a
76d59a
* Wed May  5 2004 Tom Lane <tgl@redhat.com> 2.2.8-4
76d59a
- Add dependency to ensure kde subpackage stays in sync with main
76d59a
  (needed because we moved odbctest from one pkg to the other,
76d59a
  cf bug #122478)
76d59a
- rebuilt
76d59a
76d59a
* Wed Mar 10 2004 Tom Lane <tgl@redhat.com> 2.2.8-3
76d59a
- Use installed libltdl
76d59a
- rebuilt for Fedora Core 2
76d59a
76d59a
* Tue Mar  9 2004 Tom Lane <tgl@redhat.com> 2.2.8-2
76d59a
- Rename lo_xxx() to odbc_lo_xxx() (bug #117211) (temporary until 2.2.9)
76d59a
- rebuilt
76d59a
76d59a
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
76d59a
- rebuilt
76d59a
76d59a
* Mon Mar  1 2004 Tom Lane <tgl@redhat.com>
76d59a
- Update to 2.2.8
76d59a
- rebuilt
76d59a
76d59a
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
76d59a
- rebuilt
76d59a
76d59a
* Thu Dec  4 2003 Joe Orton <jorton@redhat.com> 2.2.5-10
76d59a
- rebuild to restore sqltypes.h after #111195
76d59a
76d59a
* Thu Oct 16 2003 Fernando Nasser <fnasser@redhat.com> 2.2.5-9
76d59a
- Add XFree86-devel to the list of BuildPrereq.  Did not bump
76d59a
  release as there is no need to rebuild.
76d59a
76d59a
* Thu Oct 16 2003 Fernando Nasser <fnasser@redhat.com> 2.2.5-9
76d59a
- Add comments to the /etc/odbcinst.ini file regarding the proper
76d59a
  setup for MySQL and the origin of each library needed.
76d59a
76d59a
* Tue Oct 14 2003 Fernando Nasser <fnasser@redhat.com> 2.2.5-8
76d59a
- Move libodbcmyS.so to the main package as well.  It is used the
76d59a
  same way as libodbcpsqlS.so.
76d59a
76d59a
* Tue Oct 14 2003 Fernando Nasser <fnasser@redhat.com> 2.2.5-7
76d59a
- Bumped the version so it rebuilds.
76d59a
76d59a
* Tue Oct 14 2003 Fernando Nasser <fnasser@redhat.com> 2.2.5-4
76d59a
- Revert previous change and special case libodbcpsql.so and
76d59a
  libodbcpsqlS.so instead.  Here is the explanation (from Elliot
76d59a
  Lee):
76d59a
  ".so files are only used at link time for normal dynamic libraries.
76d59a
   The libraries referred to here are being used as dynamically loaded
76d59a
   modules, so I guess moving those particular .so files back to the
76d59a
   main package would make sense, but the other .so files should stay
76d59a
   in the devel subpackage."
76d59a
76d59a
* Fri Oct 10 2003 Fernando Nasser <fnasser@redhat.com> 2.2.5-3
76d59a
- Moved all the shared library symlinks to the main package.
76d59a
  They were deliberatedly being added to the devel package for
76d59a
  unknown reasons but this was forcing users to install the
76d59a
  devel package always.
76d59a
- No need to special-case libodbc.so anymore
76d59a
76d59a
* Fri Sep 05 2003 Elliot Lee <sopwith@redhat.com> 2.2.5-2
76d59a
- Run auto* so it rebuilds.
76d59a
76d59a
* Mon Jul 07 2003 Fernando Nasser <fnasser@redhat.com> 2.2.5-1
76d59a
- Moved odbctest to the kde package to remove require on Qt stuff
76d59a
  from the main package.
76d59a
- Removed stray "\" from doc/Makefile.am
76d59a
- Applied libtool fix (provided by Alex Oliva) so that it build
76d59a
 with cross-compilers (which are used by 64 bit systems)
76d59a
- Updated sources to the 2.2.5 community release
76d59a
- Changed the included libtool to the 1.5-3 one so that
76d59a
  it properly link the libraries with the newly generated ones
76d59a
  and not with the ones installed on the build system (or give
76d59a
  an error if an old version is not installed (# 91110)
76d59a
- Added new files for executable DataManagerII and icons LinuxODBC.xpm
76d59a
  and odbc.xpm
76d59a
76d59a
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
76d59a
- rebuilt
76d59a
76d59a
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
76d59a
- rebuilt
76d59a
76d59a
* Thu Jan  9 2003 Bill Nottingham <notting@redhat.com> 2.2.3-5
76d59a
- debloat
76d59a
76d59a
* Tue Dec 17 2002 Elliot Lee <sopwith@redhat.com> 2.2.3-4
76d59a
- Run libtoolize etc.
76d59a
76d59a
* Thu Dec 12 2002 Elliot Lee <sopwith@redhat.com> 2.2.3-3
76d59a
- Rebuild to fix filelist errors...?
76d59a
76d59a
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 2.2.3-2
76d59a
- remove unpackaged files from the buildroot
76d59a
76d59a
* Tue Nov 19 2002 Elliot Lee <sopwith@redhat.com> 2.2.3-1
76d59a
- Rebuild, update to 2.2.3
76d59a
76d59a
* Mon Aug 26 2002 Trond Eivind Glomsrd <teg@redhat.com> 2.2.2-3
76d59a
- Move libodbc.so to the main package, so programs dlopening
76d59a
  it don't break (#72653)
76d59a
76d59a
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
76d59a
- rebuilt with gcc-3.2 (we hope)
76d59a
76d59a
* Mon Jul 22 2002 Trond Eivind Glomsrd <teg@redhat.com> 2.2.2-1
76d59a
- 2.2.2
76d59a
- desktop file changes (# 69371)
76d59a
76d59a
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
76d59a
- automated rebuild
76d59a
76d59a
* Sun May 26 2002 Tim Powers <timp@redhat.com>
76d59a
- automated rebuild
76d59a
76d59a
* Mon May 20 2002 Trond Eivind Glomsrd <teg@redhat.com> 2.2.1-1
76d59a
- 2.2.1
76d59a
- Reenable other archs, as this should now build on 64 bit archs
76d59a
76d59a
* Sun May 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
76d59a
- add at least mainframe; should this really be a i386-only rpm?
76d59a
76d59a
* Wed Apr 17 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.2.0-5
76d59a
- rebuild
76d59a
76d59a
* Fri Apr  5 2002 Trond Eivind Glomsrd <teg@redhat.com> 2.2.0-4
76d59a
- Avoid having files in more than one package (#62755)
76d59a
76d59a
* Tue Mar 26 2002 Trond Eivind Glomsrd <teg@redhat.com> 2.2.0-3
76d59a
- Don't include kde plugin .so as a devel symlink (#61039)
76d59a
76d59a
* Fri Mar  8 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.2.0-2
76d59a
- Rebuild with KDE 3.x
76d59a
76d59a
* Tue Feb 26 2002 Trond Eivind Glomsrd <teg@redhat.com> 2.2.0-1
76d59a
- Just build on i386 now, there are 64 bit oddities
76d59a
- 2.2.0
76d59a
76d59a
* Fri Jan 11 2002 Trond Eivind Glomsrd <teg@redhat.com> 2.1.1-2
76d59a
- move libodbcinstQ* to the kde subpackage
76d59a
76d59a
* Fri Jan 11 2002 Trond Eivind Glomsrd <teg@redhat.com> 2.1.1-1
76d59a
- 2.1.1
76d59a
- minor cleanups
76d59a
76d59a
* Fri Dec 14 2001 Trond Eivind Glomsrd <teg@redhat.com> 2.0.7-5
76d59a
- Rebuild
76d59a
76d59a
* Wed Sep 12 2001 Tim Powers <timp@redhat.com>
76d59a
- rebuild with new gcc and binutils
76d59a
76d59a
* Sun Jun 24 2001 Than Ngo <than@redhat.com>
76d59a
- rebuild against qt-2.3.1, kde-2.1.x
76d59a
76d59a
* Fri Jun 15 2001 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- Better default odbcinst.ini
76d59a
- Minor cleanups
76d59a
76d59a
* Wed Jun  6 2001 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- 2.0.7
76d59a
76d59a
* Wed Apr 25 2001 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- Fix for isql segfault on EOF/ctrl-d exit
76d59a
76d59a
* Fri Apr 20 2001 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- 2.0.6
76d59a
- add patch for 64 bit archs (dword shouldn't be "long int")
76d59a
76d59a
* Wed Feb 28 2001 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- rebuild
76d59a
76d59a
* Tue Nov 28 2000 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- 1.8.13
76d59a
76d59a
* Tue Oct 10 2000 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- enable GUI now that we have KDE compiled with the standard
76d59a
  compiler
76d59a
- move the applnk entries to the KDE package
76d59a
76d59a
* Thu Aug 24 2000 Nalin Dahyabhai <nalin@redhat.com>
76d59a
- add the missing shared libs to the non-devel package
76d59a
76d59a
* Wed Aug 23 2000 Preston Brown <pbrown@redhat.com>
76d59a
- 1.8.12 fixes problems with the postgresql driver
76d59a
76d59a
* Mon Jul 31 2000 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- disable KDE subpackage to avoid the mess that is C++ binary
76d59a
  compatibility
76d59a
76d59a
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
76d59a
- automatic rebuild
76d59a
76d59a
* Fri Jun 30 2000 Florian La Roche <laroche@redhat.com>
76d59a
- improved QTDIR detection
76d59a
76d59a
* Wed Jun 28 2000 Trond Eivind Glomsrd <teg@redhat.com>
76d59a
- 1.8.10
76d59a
- use %%{_tmppath}
76d59a
- update URL
76d59a
- including two missing libraries
76d59a
76d59a
* Tue Jun 13 2000 Preston Brown <pbrown@redhat.com>
76d59a
- 1.8.9
76d59a
76d59a
* Fri Jun 09 2000 Preston Brown <pbrown@redhat.com>
76d59a
- adopted for Winston, changed to Red Hat packaging standards
76d59a
76d59a
* Tue Apr 18 2000 Murray Todd Williams <murray@codingapes.com>
76d59a
- added a unixODBC-devel RPM to the group, added KDE links and icons to system
76d59a
- all of which came from recommendations from Fredrick Meunier
76d59a
- <Fredrick.Meunier@computershare.com.au>
76d59a
76d59a
* Mon Apr 17 2000 Murray Todd Williams <murray@codingapes.com>
76d59a
- unixODBC-1.8.7
76d59a
- moved install to $RPM_BUILD_ROOT so it didn't overrun existing files.