If `uname` match /MINGW/, use `cmd /c start $fname` to open SVG file.
sub RunWeb {
+ if (`uname` =~ /MINGW/) {
+ # Windows(MinGW): open will use standard preference for SVG files.
+ system("cmd", "/c", "start", $fname);
+ return;
+ }
}
Original issue reported on code.google.com by chaishus...@gmail.com on 22 Jul 2014 at 6:49
Original issue reported on code.google.com by
chaishus...@gmail.com
on 22 Jul 2014 at 6:49Attachments: