diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-05-24 12:23:35 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-05-24 12:23:35 +0000 |
commit | 334e30e53e9c0d91b72c54fb681dab57f3961e40 (patch) | |
tree | fbc5eda6f9e218506c4f9b88d34047efe8c34622 | |
parent | Update REDasm to version 2.1.1, most important changes: (diff) |
www/Stikked: Mark MYSQL option as broken
USE_PHP=mysql no longer works.
PR: 238101
-rw-r--r-- | www/Stikked/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/Stikked/Makefile b/www/Stikked/Makefile index e6f13871b920..8e4c4ac1694c 100644 --- a/www/Stikked/Makefile +++ b/www/Stikked/Makefile @@ -29,10 +29,12 @@ 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+= mysql .endif .if ${PORT_OPTIONS:MPGSQL} |