Changelog:
* Added support for PostgreSQL 18, upcoming Postgres Extended 18,
and upcoming EDB Postgres Advanced Server 18.
* Improved the handling of "NULL" values when executing parameterized
queries or execution-timed parameters to prevent unpredictable behavior due
to dangling pointers.
* Changed behavior where internal parameters were pushed to the remote
server, which could cause the server to crash. Internal parameters are no
longer pushed to the remote server.
* Remove support for PostgreSQL 12, Postgres Extended 12, and EDB Postgres
Advanced Server 12.
Taken from: https://github.com/EnterpriseDB/mysql_fdw/releases/tag/REL-2_9_3
Please note, that PostgreSQL 13+ is no required.
25 lines
524 B
Makefile
25 lines
524 B
Makefile
PORTNAME= mysql_fdw
|
|
DISTVERSIONPREFIX= REL-
|
|
DISTVERSION= 2_9_3
|
|
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:13+
|
|
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>
|