Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2f76485b4 | ||
|
|
da1daac60e |
5 changed files with 438 additions and 21 deletions
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: freetds
|
||||
# $Id$
|
||||
NAME := freetds
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
15
freetds-tds_sysdep_public.h
Normal file
15
freetds-tds_sysdep_public.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
/*
|
||||
* To avoid multiarch conflicts, we differentiate the 32/64 bit length
|
||||
* specific header names. This file is a wrapper to include the proper
|
||||
* arch-specific header at compile time.
|
||||
*/
|
||||
|
||||
#include <bits/wordsize.h>
|
||||
|
||||
#if __WORDSIZE == 32
|
||||
#include <tds_sysdep_public_32.h>
|
||||
#elif __WORDSIZE == 64
|
||||
#include <tds_sysdep_public_64.h>
|
||||
#else
|
||||
#error "Unknown word size"
|
||||
#endif
|
||||
422
freetds.spec
Normal file
422
freetds.spec
Normal file
|
|
@ -0,0 +1,422 @@
|
|||
%define bits %{?__isa_bits:%{__isa_bits}}%{!?__isa_bits:32}
|
||||
|
||||
Name: freetds
|
||||
Summary: Implementation of the TDS (Tabular DataStream) protocol
|
||||
Version: 1.5.18
|
||||
Release: 1%{?dist}
|
||||
# Automatically converted from old format: LGPLv2+ and GPLv2+ - review is highly recommended.
|
||||
License: LGPL-2.0-or-later AND GPL-2.0-or-later
|
||||
URL: http://www.freetds.org/
|
||||
|
||||
Source0: https://www.freetds.org/files/stable/%{name}-%{version}.tar.bz2
|
||||
Source1: freetds-tds_sysdep_public.h
|
||||
|
||||
BuildRequires: unixODBC-devel, readline-devel, gnutls-devel, krb5-devel
|
||||
BuildRequires: libgcrypt-devel
|
||||
BuildRequires: libtool
|
||||
BuildRequires: doxygen, docbook-style-dsssl
|
||||
BuildRequires: make
|
||||
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
|
||||
|
||||
%description
|
||||
FreeTDS is a project to document and implement the TDS (Tabular
|
||||
DataStream) protocol. TDS is used by Sybase(TM) and Microsoft(TM) for
|
||||
client to database server communications. FreeTDS includes call
|
||||
level interfaces for DB-Lib, CT-Lib, and ODBC.
|
||||
|
||||
|
||||
%package libs
|
||||
Summary: Libraries for %{name}
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description libs
|
||||
FreeTDS is a project to document and implement the TDS (Tabular
|
||||
DataStream) protocol. TDS is used by Sybase(TM) and Microsoft(TM) for
|
||||
client to database server communications. FreeTDS includes call
|
||||
level interfaces for DB-Lib, CT-Lib, and ODBC.
|
||||
This package contains the libraries for %{name}.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Header files and development libraries for %{name}
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package contains the header files and development libraries
|
||||
for %{name}. If you like to develop programs using %{name}, you will need
|
||||
to install %{name}-devel.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: Development documentation for %{name}
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
This package contains the development documentation for %{name}.
|
||||
If you like to develop programs using %{name}, you will need to install
|
||||
%{name}-doc.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
# correct perl path
|
||||
sed -i '1 s,#!.*/perl,#!%{__perl},' samples/*.pl
|
||||
|
||||
chmod -x samples/*.sh
|
||||
|
||||
|
||||
%build
|
||||
|
||||
[ -f configure ] || NOCONFIGURE=yes ./autogen.sh
|
||||
|
||||
%configure \
|
||||
--disable-dependency-tracking \
|
||||
--disable-rpath \
|
||||
--disable-static \
|
||||
--with-tdsver="auto" \
|
||||
--with-unixodbc="%{_prefix}" \
|
||||
--enable-msdblib \
|
||||
--enable-sybase-compat \
|
||||
--with-gnutls \
|
||||
--enable-krb5
|
||||
|
||||
# disable-rpath in configure does not work...
|
||||
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|' libtool
|
||||
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_RIE|' libtool
|
||||
|
||||
|
||||
make %{?_smp_mflags} DOCBOOK_DSL="`rpm -ql docbook-style-dsssl | fgrep html/docbook.dsl`"
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||
chmod -x $RPM_BUILD_ROOT%{_sysconfdir}/*
|
||||
|
||||
mv -f $RPM_BUILD_ROOT%{_includedir}/tds_sysdep_public.h \
|
||||
$RPM_BUILD_ROOT%{_includedir}/tds_sysdep_public_%{bits}.h
|
||||
install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/tds_sysdep_public.h
|
||||
|
||||
rm -f samples/Makefile* samples/*.in samples/README
|
||||
|
||||
mv -f samples/unixodbc.freetds.driver.template \
|
||||
samples/unixodbc.freetds.driver.template-%{bits}
|
||||
|
||||
mkdir samples-odbc
|
||||
mv -f samples/*odbc* samples-odbc
|
||||
|
||||
# deinstall it for our own way...
|
||||
mv -f $RPM_BUILD_ROOT%{_docdir}/%{name} docdir
|
||||
find docdir -type f -print0 | xargs -0 chmod -x
|
||||
|
||||
|
||||
%ldconfig_scriptlets libs
|
||||
|
||||
|
||||
%files
|
||||
%{_bindir}/*
|
||||
%license COPYING.txt
|
||||
%doc AUTHORS.md NEWS.md README.md TODO.md
|
||||
%doc doc/*.html
|
||||
%doc docdir/userguide docdir/images
|
||||
%{_mandir}/man1/*
|
||||
|
||||
|
||||
%files libs
|
||||
%license COPYING_LIB.txt
|
||||
%{_libdir}/*.so.*
|
||||
%{_libdir}/libtdsodbc.so
|
||||
%doc samples-odbc
|
||||
%config(noreplace) %{_sysconfdir}/*.conf
|
||||
%{_mandir}/man5/*
|
||||
|
||||
|
||||
%files devel
|
||||
%license COPYING_LIB.txt
|
||||
%doc samples
|
||||
%{_libdir}/*.so
|
||||
%exclude %{_libdir}/libtdsodbc.so
|
||||
%{_includedir}/*
|
||||
|
||||
|
||||
%files doc
|
||||
%doc docdir/reference
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Aug 11 2026 Dmitry Butskoy <Dmitry@Butskoy.name> - 1.5.18-1
|
||||
- update to 1.5.18 (#2513794)
|
||||
|
||||
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Mon Oct 7 2024 Dmitry Butskoy <Dmitry@Butskoy.name> - 1.4.23-1
|
||||
- update to 1.4.23 (#2316972)
|
||||
- fix SPDX license
|
||||
|
||||
* Wed Aug 28 2024 Miroslav Suchý <msuchy@redhat.com> - 1.4.16-3
|
||||
- convert license to SPDX
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.16-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Thu May 30 2024 Dmitry Butskoy <Dmitry@Butskoy.name> - 1.4.16-1
|
||||
- update to 1.4.16
|
||||
|
||||
* Tue Mar 19 2024 Marie Loise Nolden <loise@kde.org> - 1.4.10-1
|
||||
- update to 1.4.10
|
||||
|
||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Dec 8 2021 Dmitry Butskoy <Dmitry@Butskoy.name> - 1.3.3-1
|
||||
- update to 1.3.3
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.20-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.20-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.20-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.20-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Nov 7 2019 Dmitry Butskoy <Dmitry@Butskoy.name> - 1.1.20-1
|
||||
- update to 1.1.20
|
||||
|
||||
* Tue Jul 9 2019 Dmitry Butskoy <Dmitry@Butskoy.name> - 1.1.11-1
|
||||
- Upgrade to 1.1.11 (#1728191)
|
||||
|
||||
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.00.38-8
|
||||
- Rebuild for readline 8.0
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.00.38-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.00.38-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.00.38-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.00.38-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 1.00.38-3
|
||||
- Rebuild with binutils fix for ppc64le (#1475636)
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.00.38-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu May 11 2017 Dmitry Butskoy <Dmitry@Butskoy.name> - 1.00.38-1
|
||||
- Update to 1.00.38
|
||||
- split freetds-libs package (for multiarch support)
|
||||
- change default tds vesrion to auto
|
||||
- move odbc plugin from devel to libs package (#1449881)
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.95.81-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.95.81-2
|
||||
- Rebuild for readline 7.x
|
||||
|
||||
* Wed Feb 10 2016 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.95.81-1
|
||||
- update to 0.95.81
|
||||
- use proper rpm macros to determine 64 bit arches
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.95.19-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Sep 10 2015 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.95.19-1
|
||||
- Upgrade to 0.95.19
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-16.git0a42888
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-15.git0a42888
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-14.git0a42888
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue Apr 22 2014 Tomáš Mráz <tmraz@redhat.com> - 0.91-13.git0a42888
|
||||
- Rebuild for new libgcrypt
|
||||
|
||||
* Fri Jan 10 2014 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.91-12.git0a42888
|
||||
- add ppc64le to the list of 64bit arches (#1051199)
|
||||
|
||||
* Tue Dec 3 2013 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.91-11.git0a42888
|
||||
- update to the latest git source for 0_91 branch
|
||||
- fix format-security issue (#1037071)
|
||||
|
||||
* Thu Aug 22 2013 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.91-10.git748aa26
|
||||
- update to the latest git source for 0_91 branch
|
||||
- fix #999696
|
||||
|
||||
* Wed Aug 7 2013 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.91-9.gitb760a89
|
||||
- update to the latest git source for 0_91 branch
|
||||
- fix #992295, #993762
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-8.gitf3ae29d
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Jun 13 2013 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.91-7.gitf3ae29d
|
||||
- add aarch64 to the list of 64bit arches (#966129)
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-6.gitf3ae29d
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Nov 7 2012 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.91-5.gitf3ae29d
|
||||
- update to the latest git source for 0_91 branch
|
||||
- fix #870483
|
||||
|
||||
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Feb 27 2012 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.91-3
|
||||
- Enable Kerberos support (#797276)
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Wed Oct 26 2011 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.91-1
|
||||
- Upgrade to 0.91
|
||||
- Drop shared-libtds support
|
||||
|
||||
* Wed Mar 9 2011 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.82.1-0.3.20110306dev
|
||||
- update to the latest stable snapshot 0.82.1.dev.20110306
|
||||
- make build with shared-libtds conditional
|
||||
- disable shared-libtds patch by default (seems noone uses it for now)
|
||||
|
||||
* Mon Feb 14 2011 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.82.1-0.2.20100810dev
|
||||
- fix again shared-libtds patch to provide increased library version
|
||||
|
||||
* Thu Feb 10 2011 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.82.1-0.1.20100810dev
|
||||
- update to the latest stable snapshot 0.82.1.dev.20100810
|
||||
- fix shared-libtds patch to provide properly library names
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.82-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.82-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Thu Mar 26 2009 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.82-5
|
||||
- add upstream patch cspublic.BLK_VERSION_150.patch (#492393)
|
||||
|
||||
* Tue Feb 24 2009 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.82-4
|
||||
- fix autoconf data for libtool2 (patch by Tom Lane <tgl@redhat.com>)
|
||||
|
||||
* Fri Jan 30 2009 Karsten Hopp <karsten@redhat.com> 0.82-3
|
||||
- add s390x to 64 bit archs
|
||||
|
||||
* Sun Jan 11 2009 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.82-3
|
||||
- Use gnutls for SSL (#479148)
|
||||
|
||||
* Tue Jun 17 2008 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.82-2
|
||||
- Continue to provide an internal libtds library as public
|
||||
(patch from Hans de Goede, #451021). This shared library is needed
|
||||
for some existing applications (libgda etc.), which still use it directly.
|
||||
|
||||
* Mon Jun 9 2008 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.82-1
|
||||
- Upgrade to 0.82
|
||||
|
||||
* Tue Feb 26 2008 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-11
|
||||
- fix "64 or 32 bit" test (#434975)
|
||||
|
||||
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.64-10
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Mon Jan 28 2008 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-9
|
||||
- drop "Obsoletes:" from -doc subpackage to avoid extra complexity.
|
||||
|
||||
* Fri Jan 25 2008 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-8
|
||||
- resolve multiarch conflicts (#341181):
|
||||
- split references to separate freetds-doc subpackage
|
||||
- add arch-specific suffixes for arch-specific filenames in -devel
|
||||
- add wrapper for tds_sysdep_public.h
|
||||
- add readline support (#430196)
|
||||
|
||||
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.64-7
|
||||
- Rebuild for selinux ppc32 issue.
|
||||
|
||||
* Thu Aug 16 2007 Dmitry Butskoy <Dmitry@Butskoy.name>
|
||||
- Change License tag to "LGPLv2+ and GPLv2+"
|
||||
|
||||
* Fri Jun 15 2007 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-6
|
||||
- bump release to provide update path over Livna
|
||||
|
||||
* Wed Jun 13 2007 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-5
|
||||
- spec file cleanups
|
||||
- allowed for Fedora (no patent issues exist), clarification by
|
||||
James K. Lowden <jklowden [AT] freetds.org>
|
||||
- approved for Fedora (review by Hans de Goede <j.w.r.degoede@hhs.nl>)
|
||||
|
||||
* Wed Aug 2 2006 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-4
|
||||
- approved for Livna (review by Hans de Goede <j.w.r.degoede@hhs.nl>)
|
||||
|
||||
* Tue Aug 1 2006 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-4
|
||||
- add patch to fix sed scripts in the doc/ Makefile
|
||||
- avoid using rpath in binaries
|
||||
- cleanup in samples/ dir
|
||||
|
||||
* Thu Jul 27 2006 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-3
|
||||
- rebuild userguide too.
|
||||
- move reference docs to -devel
|
||||
|
||||
* Mon Jul 24 2006 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-2
|
||||
- Properly clear extra executable bit in source
|
||||
- Regenerate docs using doxygen
|
||||
|
||||
* Thu Jul 20 2006 Dmitry Butskoy <Dmitry@Butskoy.name> - 0.64-1
|
||||
- Upgrade to 0.64
|
||||
- Some spec file and distro cleanups
|
||||
|
||||
* Tue Sep 20 2005 V.C.G.Yeah <VCGYeah@iname.com> - 0.63-1
|
||||
- Upgrade to 0.63
|
||||
- spec file cleanups
|
||||
- build static libs conditional
|
||||
|
||||
* Thu Sep 2 2004 V.C.G.Yeah <VCGYeah@iname.com> - 0.62.4-1Y
|
||||
- Updated to release 0.62.4.
|
||||
- Leave includes in system default include dir (needed for php-mssql build)
|
||||
|
||||
* Mon May 17 2004 Dag Wieers <dag@wieers.com> - 0.62.3-1
|
||||
- Updated to release 0.62.3.
|
||||
|
||||
* Wed Feb 04 2004 Dag Wieers <dag@wieers.com> - 0.61.2-0
|
||||
- Added --enable-msdblib configure option. (Dean Mumby)
|
||||
- Updated to release 0.61.2.
|
||||
|
||||
* Fri Jun 13 2003 Dag Wieers <dag@wieers.com> - 0.61-0
|
||||
- Initial package. (using DAR)
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
SHA512 (freetds-1.5.18.tar.bz2) = 9410b992d5b6a2bede00a6e81256b9f426d1477d7b9a2ea74c0481b2a5c3840c35171916a24f7820e101bfc44cf67dbf7c6c5d69010415c19178d91e7949859e
|
||||
Loading…
Add table
Add a link
Reference in a new issue