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
|
2021-10-22 15:44:02 +02:00
|
|
|
#include <mysql/mysql.h> # Please install the libmysqlclient-dev development headers
|
2021-07-23 11:33:55 +02:00
|
|
|
} $else {
|
|
|
|
#pkgconfig mariadb
|
2021-10-22 15:44:02 +02:00
|
|
|
#include <mariadb/mysql.h> # Please install the libmariadb-dev development headers
|
2021-07-23 11:33:55 +02:00
|
|
|
}
|