We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7f13c0 commit 6043a8fCopy full SHA for 6043a8f
Makefile.PL
@@ -447,7 +447,11 @@ sub Configure {
447
448
if ($param eq 'version') {
449
if ($str !~ /^8\./) {
450
- die "DBD::mysql requires MySQL 8.x for building. Version reported by $command: $str";
+ if ($^O == "Windows") { # mysql_config doesn't work the same on Windows
451
+ warn "DBD::mysql requires MySQL 8.x for building. Version reported by $command: $str";
452
+ } else {
453
+ die "DBD::mysql requires MySQL 8.x for building. Version reported by $command: $str";
454
+ }
455
}
456
457
0 commit comments