diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2015-08-08 12:11:27 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2015-08-08 12:11:27 +0000 |
commit | 63fd3b0cedb51d331e24ff1b136ebdd0c2b53483 (patch) | |
tree | fd0c606d43940e2ef58feff4e589b39c1ff2f6ea /databases/sqlrelay/files/patch-Makefile | |
parent | Update agryllcms to 1.7.0. (diff) |
databases/sqlrelay: 0.60 -> 0.62
- added query filter plugin framework
- added regex, string and pattern filters
- added normalization translation
- added reformatdatetime result set translation
- fixed error in sqlrconfigfile class that could cause sqlr-start to
- crash if one instance defines addresses but the next doesn't
- added query status flag to sqlrservercursor
- tweaked odbc driver's SQLGetTypeInfo()
- field name is passed into runResultSetTranslations() now
- added support for maxitembuffersize, maxselectlistsize,
- and maxbindcount for firebird
- added native api for node.js
- added recognition of bigint, ubigint and uniqueidentifier fields in
- freetds/sybase
- added nullsasnulls command to sqlrsh
- added workaround for freetds empty (but non-null) text fields not
getting properly converted to null-terminated empty strings
- fetchatonce, maxitembuffersize and maxselectlistsize are set to
defaulting values if invalid values are given for them
- added lazyconnect option to PHP PDO and Perl DBI drivers (defaults to 1)
- direct Transact SQL which returns a result set is now supported with
Sybase/SAP/MSSQLServer/FreeTDS
- added docs for authentication, query translation, query filter and
result set translation modules
- added -fPIC to sqlrserver-config --cflags, if supported
- the "default" auth module is now called "userlist"
- added database auth module that is analagous to authtier="database"
- replaced passwordencryption attribute with passwordencryptionid
- added --disable-postgresql8-api configure option
- tweaked -Werror detection in configure script
- refactored sqlr-bench build to work on windows
Notes
Notes:
svn path=/head/; revision=393725
Diffstat (limited to 'databases/sqlrelay/files/patch-Makefile')
-rw-r--r-- | databases/sqlrelay/files/patch-Makefile | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/databases/sqlrelay/files/patch-Makefile b/databases/sqlrelay/files/patch-Makefile index 9a4135433cc1..e5b34a14f234 100644 --- a/databases/sqlrelay/files/patch-Makefile +++ b/databases/sqlrelay/files/patch-Makefile @@ -1,13 +1,18 @@ ---- Makefile.orig 2015-03-31 20:50:58 UTC +--- Makefile.orig 2015-08-05 21:07:34 UTC +++ Makefile -@@ -30,11 +30,11 @@ install-doc: +@@ -30,16 +30,13 @@ install-doc: cd doc $(AND) $(MAKE) install + install-license: +- $(MKINSTALLDIRS) $(licensedir) +- $(CP) COPYING $(licensedir) +- $(CHMOD) 0644 $(licensedir)/COPYING + install-pkgconfig: - $(MKINSTALLDIRS) $(libdir)/pkgconfig -- $(CP) sqlrelay-c.pc $(libdir)/pkgconfig/sqlrelay-c.pc +- $(CP) sqlrelay-c.pc $(libdir)/pkgconfig - $(CHMOD) 0644 $(libdir)/pkgconfig/sqlrelay-c.pc -- $(CP) sqlrelay-c++.pc $(libdir)/pkgconfig/sqlrelay-c++.pc +- $(CP) sqlrelay-c++.pc $(libdir)/pkgconfig - $(CHMOD) 0644 $(libdir)/pkgconfig/sqlrelay-c++.pc + $(MKINSTALLDIRS) $(prefix)/libdata/pkgconfig + $(CP) sqlrelay-c.pc $(prefix)/libdata/pkgconfig/sqlrelay-c.pc @@ -17,3 +22,11 @@ uninstall: $(UNINSTALLSUBDIRS) $(RMTREE) $(libexecdir) +@@ -63,7 +60,6 @@ uninstall-doc: + cd doc $(AND) $(MAKE) uninstall + + uninstall-license: +- $(RMTREE) $(licensedir) + + uninstall-pkgconfig: + $(RM) $(libdir)/pkgconfig/sqlrelay-c.pc \ |