Summary of Changes in release 1.0 -------------------------------------------- User visible (not in a particular order): - Removed "8.0" from protocol version string accepted. Please update configuration files; - Default protocol version is now auto. This could slow down connection but make user experience less painful; - Sybase encrypted login. Set encryption to get it; - Support protocol version 7.4; - Add intent support to specify we don't want to change data; - Allow to attach database file during the login (MS SQL Server); - Support for Sybase time/date/bigdate/bigdatetime; - Pool is working again; - ODBC BCP (not complete); - Improved dbconvert and dbconvert_ps (more compatible); - Fixed dbspid; - Improved ODBC type information; - Better certificate verification; - AppVeyor is used for every build; - Try all IPs from DNS. This allows SQL Cluster connection to secondary servers. Implementation: - Removed Nmake support; - Type conversions simplified; - Better type handle code.
19 lines
648 B
Text
19 lines
648 B
Text
$NetBSD: patch-Makefile.in,v 1.1 2017/09/17 14:57:59 taca Exp $
|
|
|
|
* Install example files without execute bit on.
|
|
|
|
--- Makefile.in.orig 2017-09-02 09:00:55.000000000 +0000
|
|
+++ Makefile.in
|
|
@@ -875,10 +875,10 @@ uninstall-am: uninstall-local
|
|
install-data-local:
|
|
$(mkinstalldirs) $(ETC)
|
|
if test ! -f $(ETC)/freetds.conf; then \
|
|
- $(INSTALL) $(srcdir)/freetds.conf $(ETC)/freetds.conf; \
|
|
+ $(INSTALL_DATA) $(srcdir)/freetds.conf $(ETC)/freetds.conf; \
|
|
fi
|
|
if test ! -f $(ETC)/locales.conf; then \
|
|
- $(INSTALL) $(srcdir)/locales.conf $(ETC)/locales.conf; \
|
|
+ $(INSTALL_DATA) $(srcdir)/locales.conf $(ETC)/locales.conf; \
|
|
fi
|
|
|
|
clean-local:
|