mirror of https://github.com/adamdruppe/arsd.git
now assume mysql 5.1
This commit is contained in:
parent
7ddf54f030
commit
6e8e347862
13
mysql.d
13
mysql.d
|
@ -1,5 +1,5 @@
|
||||||
/// NOTE: If you're using MySQL client library v5.1 or greater,
|
/// NOTE: If you're using MySQL client library v5.0 or less,
|
||||||
/// you must pass this to dmd: -version=MySQL_51
|
/// you must pass this to dmd: -version=Less_Than_MySQL_51
|
||||||
/// This is important - otherwise you will see bizarre segfaults!
|
/// This is important - otherwise you will see bizarre segfaults!
|
||||||
module arsd.mysql;
|
module arsd.mysql;
|
||||||
|
|
||||||
|
@ -8,8 +8,13 @@ version(MySQL_51) {
|
||||||
// we good
|
// we good
|
||||||
} else version(Less_Than_MySQL_51) {
|
} else version(Less_Than_MySQL_51) {
|
||||||
// we good
|
// we good
|
||||||
} else
|
} else {
|
||||||
pragma(msg, "NOTE: If you are using MySQL 5.1 or newer, specify -version=MySQL_51 to dmd to avoid segfaults. If you are on an older version, you can shut this message up with -version=Less_Than_MySQL_51");
|
// default now is mysql 5.1 or up - it has been long
|
||||||
|
// enough that surely most everyone uses it and we don't
|
||||||
|
// need the pragma warning anymore. Of course, the old is
|
||||||
|
// still available if you need to explicitly opt in.
|
||||||
|
version = MySQL_51;
|
||||||
|
}
|
||||||
|
|
||||||
version(Windows) {
|
version(Windows) {
|
||||||
pragma(lib, "libmysql");
|
pragma(lib, "libmysql");
|
||||||
|
|
Loading…
Reference in New Issue