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