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