Date: Mon, 17 Jan 2022 10:42:01 GMT From: =?utf-8?Q?Stefan E=C3=9Fer?= <se@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: b1ed31f7d2ab - main - devel/hoel: Fix build with SQLITE3 option Message-ID: <202201171042.20HAg1KZ059783@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by se: URL: https://cgit.FreeBSD.org/ports/commit/?id=b1ed31f7d2ab84cfb5a912d3251ab588f5bc3785 commit b1ed31f7d2ab84cfb5a912d3251ab588f5bc3785 Author: Stefan Eßer <se@FreeBSD.org> AuthorDate: 2022-01-17 10:38:22 +0000 Commit: Stefan Eßer <se@FreeBSD.org> CommitDate: 2022-01-17 10:41:44 +0000 devel/hoel: Fix build with SQLITE3 option The SQLITE3 option effectively added a USES=sqlite3 clause to the Makefile, but only Mk/Uses/sqlite.mk exists, causing the build to fail. Approved by: portmgr (implicit) --- devel/hoel/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/hoel/Makefile b/devel/hoel/Makefile index 14b871c60b03..4c199b0150ce 100644 --- a/devel/hoel/Makefile +++ b/devel/hoel/Makefile @@ -32,7 +32,7 @@ MARIADB_DESC= Use MariaDB as backend MARIADB_USES= mariadb PGSQL_USES= pgsql -SQLITE3_USES= sqlite3 +SQLITE3_USES= sqlite MARIADB_CMAKE_BOOL= WITH_MARIADB PGSQL_CMAKE_BOOL= WITH_PGSQL
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202201171042.20HAg1KZ059783>