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