Summary: | www/kanboard: Fix building with MySQL | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Vikash Badal <vikashb> | ||||
Component: | Individual Port(s) | Assignee: | Tobias Kortkamp <tobik> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Some People | CC: | andreas.jobs+freebsdbugs, bsd | ||||
Priority: | --- | Flags: | tobik:
maintainer-feedback-
koobs: merge-quarterly+ |
||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
A commit references this bug: Author: tobik Date: Tue Feb 11 08:30:45 UTC 2020 New revision: 525792 URL: https://svnweb.freebsd.org/changeset/ports/525792 Log: www/kanboard: Unbreak MYSQL option after r514556 Unknown extension pdo_mysqli for PHP 72. Pointy hat: swills PR: 241567 Submitted by: Vikash Badal <vikashb@where-ever.za.net> Approved by: bsd@if0.eu (maintainer timeout, 3 months) Changes: head/www/kanboard/Makefile A commit references this bug: Author: tobik Date: Tue Feb 11 08:31:43 UTC 2020 New revision: 525793 URL: https://svnweb.freebsd.org/changeset/ports/525793 Log: MFH: r525792 www/kanboard: Unbreak MYSQL option after r514556 Unknown extension pdo_mysqli for PHP 72. Pointy hat: swills PR: 241567 Submitted by: Vikash Badal <vikashb@where-ever.za.net> Approved by: bsd@if0.eu (maintainer timeout, 3 months) Approved by: ports-secteam blanket Changes: _U branches/2020Q1/ branches/2020Q1/www/kanboard/Makefile |
Created attachment 208673 [details] patch to fix sanitycheck when mysql is enabled when compiling with mysql support, the build fails: =======================<phase: check-sanity >============================ Unknown extension pdo_mysqli for PHP 72. the attached diff fixes the issue --------- root@l5580:/usr/ports/www/kanboard # diff -u Makefile Makefile.orig --- Makefile 2019-10-29 08:12:17.570639000 +0200 +++ Makefile.orig 2019-10-29 08:12:04.346477000 +0200 @@ -32,7 +32,7 @@ OPCACHE_DESC= OPcache support (recommended) MYSQL_USES= mysql -MYSQL_USE= PHP=pdo_mysql,mysqli +MYSQL_USE= PHP=pdo_mysqli,mysqli PGSQL_USES= pgsql PGSQL_USE= PHP=pdo_pgsql,pgsql SQLITE_USE= PHP=pdo_sqlite,sqlite3 ---------