ports/databases/sqlrelay/files/patch-Makefile
Kurt Jaeger 63fd3b0ced 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
2015-08-08 12:11:27 +00:00

32 lines
1 KiB
Text

--- Makefile.orig 2015-08-05 21:07:34 UTC
+++ Makefile
@@ -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
- $(CHMOD) 0644 $(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
+ $(CHMOD) 0644 $(prefix)/libdata/pkgconfig/sqlrelay-c.pc
+ $(CP) sqlrelay-c++.pc $(prefix)/libdata/pkgconfig/sqlrelay-c++.pc
+ $(CHMOD) 0644 $(prefix)/libdata/pkgconfig/sqlrelay-c++.pc
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 \