2020-11-01 22:15:33 +01:00
|
|
|
module mysql
|
|
|
|
|
2021-07-23 11:33:55 +02:00
|
|
|
// Need to check if mysqlclient is not there and use mariadb as alternative because newer system doesn't support mysql 8.0 as default
|
|
|
|
|
|
|
|
$if $pkgconfig('mysqlclient') {
|
|
|
|
#pkgconfig mysqlclient
|
|
|
|
} $else {
|
|
|
|
#pkgconfig mariadb
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <mysql/mysql.h> # Please install the mysqlclient development headers
|