61b8e257f1
- SQL Relay now supports Kerberos encryption and authentication - SQL Relay now supports TLS/SSL encryption and authentication - Python 3 support - Node.js 4.x and higher are now correctly detected and supported. - Separate "database" and "proxied" Authentication Options - Various ODBC-related bugs have been fixed - A subtle bug that caused incompatibilities with the popular logrotate utility has been fixed - A long standing problem that occurred when using a listenertimeout with a threaded listener (the default) has been fixed. - After a graceful restart, Apache workers would get stuck in the Closing Connection state after running a PHP script that used SQL Relay. This is now fixed. See full changelog: http://software.firstworks.com/2016/03/sql-relay-0650-release-announcement.html
27 lines
770 B
Makefile
27 lines
770 B
Makefile
# $NetBSD: Makefile,v 1.4 2016/07/01 17:02:39 fhajny Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/sqlrelay/sqlrelay-mysql/}
|
|
COMMENT= MySQL support for SQL Relay
|
|
|
|
.include "../../databases/sqlrelay/Makefile.common"
|
|
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
CONFIGURE_ARGS+= --with-mysql-prefix=${BUILDLINK_PREFIX.mysql-client}
|
|
CONFIGURE_ARGS+= --disable-postgresql
|
|
CONFIGURE_ARGS+= --disable-sqlite
|
|
CONFIGURE_ARGS+= --disable-freetds
|
|
CONFIGURE_ARGS+= --disable-odbc
|
|
|
|
BUILD_DIRS= src/connections
|
|
|
|
INSTALLATION_DIRS+= libexec/sqlrelay
|
|
|
|
do-install:
|
|
${LIBTOOL} --mode=install ${INSTALL_LIB} \
|
|
${WRKSRC}/${BUILD_DIRS}/sqlrconnection_mysql.la \
|
|
${DESTDIR}${PREFIX}/libexec/sqlrelay
|
|
|
|
.include "../../databases/sqlrelay/buildlink3.mk"
|
|
.include "../../mk/mysql.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|