blob: 1462e89f9d6da27d4fcee559c500e1d4c87adf9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
module mysql
// 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
|