mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
Changelog: * Support for PostgreSQL 17 and upcoming EDB Postgres Advanced Server 17. * Add support for MYSQL_READ_DEFAULT_FILE option used to read connection details. * Fix server crash in left join with whole-row reference. * Map TIMESTAMP to TIMESTAMPTZ in IMPORT FOREIGN SCHEMA processing. * Set the session timezone to UTC on the MySQL connection. * Correct pushability of ScalarArrayOpExpr (ANY and ALL) and fix handling of the multidimensional array in its deparsing. * Refactor README.md file. * Remove support for v11. Taken from: https://github.com/EnterpriseDB/mysql_fdw/releases/tag/REL-2_9_2 Sponsored by: P. Variablis
24 lines
524 B
Makefile
24 lines
524 B
Makefile
PORTNAME= mysql_fdw
|
|
DISTVERSIONPREFIX= REL-
|
|
DISTVERSION= 2_9_2
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= PostgreSQL foreign data wrapper for MySQL
|
|
WWW= https://github.com/EnterpriseDB/mysql_fdw
|
|
|
|
LICENSE= PostgreSQL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gmake mysql pgsql:11+
|
|
WANT_PGSQL= server
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= EnterpriseDB
|
|
|
|
MAKE_ENV= USE_PGXS=1
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/mysql_fdw.so
|
|
|
|
.include <bsd.port.mk>
|