mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
255d573c71
cc1: error: -Werror=vla: No option -Wvla cc1: error: unrecognized command line option "-Wimplicit-fallthrough=3" cc1: error: unrecognized command line option "-Wcast-function-type" cc1: error: unrecognized command line option "-Wshadow=compatible-local" cc1: error: unrecognized command line option "-fexcess-precision=standard" cc1: error: unrecognized command line option "-Wno-stringop-truncation" OK jca@, go for it tb@
32 lines
627 B
Makefile
32 lines
627 B
Makefile
BROKEN = does not yet support PostgreSQL 18
|
|
COMMENT = PostgreSQL Foreign Data Wrapper for SQLite
|
|
|
|
GH_ACCOUNT = pgspider
|
|
GH_PROJECT = sqlite_fdw
|
|
GH_TAGNAME = v2.5.0
|
|
|
|
PKGNAME = pg_${DISTNAME}
|
|
|
|
CATEGORIES = databases
|
|
|
|
HOMEPAGE = https://github.com/pgspider/sqlite_fdw
|
|
|
|
# PostgreSQL
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB = c sqlite3
|
|
|
|
# -Wvla and other unrecognized command line options
|
|
COMPILER = base-clang ports-gcc
|
|
COMPILER_LANGS = c
|
|
|
|
BUILD_DEPENDS = databases/postgresql,-server
|
|
RUN_DEPENDS = databases/postgresql,-server
|
|
LIB_DEPENDS = databases/sqlite3
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
MAKE_FLAGS = USE_PGXS=1
|
|
|
|
.include <bsd.port.mk>
|