diff options
author | ek <ek@purplehat.org> | 2024-09-27 13:50:46 +0000 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2024-09-30 14:02:41 +0000 |
commit | bb5fe0462c8f32569dfe54292dba7077b922ce54 (patch) | |
tree | c8512bedba71e0039b595dd3c1d292278df0b82b | |
parent | b4ac6ffb5f153166c46c8cb28d53ff05e5521e90 (diff) | |
download | ports-bb5fe0462c8f32569dfe54292dba7077b922ce54.tar.gz ports-bb5fe0462c8f32569dfe54292dba7077b922ce54.zip |
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
-rw-r--r-- | www/Stikked/Makefile | 7 |
1 files 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} |