git: bb5fe0462c8f - main - www/Stikked: fix MYSQL option
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 30 Sep 2024 14:08:48 UTC
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=bb5fe0462c8f32569dfe54292dba7077b922ce54 commit bb5fe0462c8f32569dfe54292dba7077b922ce54 Author: ek <ek@purplehat.org> AuthorDate: 2024-09-27 13:50:46 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2024-09-30 14:02:41 +0000 www/Stikked: fix MYSQL option Building www/Stikked with mysqli using Poudriere on FBSD 14.0-p5, it works perfectly fine. There's no reason for this to continue to be marked as BROKEN for MySQL/MariaDB. PR: 277497 --- www/Stikked/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/www/Stikked/Makefile b/www/Stikked/Makefile index 5b74a4f15b20..60b6e529ceb2 100644 --- a/www/Stikked/Makefile +++ b/www/Stikked/Makefile @@ -1,5 +1,6 @@ PORTNAME= Stikked DISTVERSION= 0.14.0 +PORTREVISION= 1 CATEGORIES= www MAINTAINER= ports@FreeBSD.org @@ -11,7 +12,7 @@ USES= php:web USE_GITHUB= yes GH_ACCOUNT= claudehohl -USE_PHP= ctype filter gd pgsql session +USE_PHP= ctype filter gd session NO_BUILD= yes NO_ARCH= yes @@ -26,12 +27,10 @@ MYSQL_DESC= Include the PHP shared extension for MySQL PGSQL_DESC= Include the PHP shared extension for PostgreSQL SQLITE_DESC= Include the PHP shared extension for SQLite3 -MYSQL_BROKEN= USE_PHP=mysql no longer supported, unclear if USE_PHP=mysqli works - .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MMYSQL} -#USE_PHP+= mysql +USE_PHP+= mysqli .endif .if ${PORT_OPTIONS:MPGSQL}