git: b1ed31f7d2ab - main - devel/hoel: Fix build with SQLITE3 option
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 17 Jan 2022 10:42:01 UTC
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