Skip Menu |

This queue is for tickets about the DBD-SQLite CPAN distribution.

Report information
The Basics
Id: 84380
Status: resolved
Priority: 0/
Queue: DBD-SQLite

People
Owner: Nobody in particular
Requestors: RURBAN [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: (no value)



Subject: Fix WINLIKE for mingw/msys
Attached patch recognizes 'msys' i.e. MinGW/MSYS perl as WINLIKE http://www.mingw.org/ MSYS or MinGW Shell: This is perl, v5.8.8 built for msys-64int $ perl -V:osname osname='msys'; -- Reini Urban
Subject: msys.patch
MSYS or MinGW Shell: This is perl, v5.8.8 built for msys-64int $ perl -V:osname osname='msys'; Index: Makefile.PL =================================================================== --- Makefile.PL (revision 15751) +++ Makefile.PL (working copy) @@ -9,6 +9,7 @@ sub WINLIKE () { return 1 if $^O eq 'MSWin32'; return 1 if $^O eq 'cygwin'; + return 1 if $^O eq 'msys'; return ''; }
Applied to the trunk. Thanks. On Wed Apr 03 01:20:17 2013, RURBAN wrote: Show quoted text
> Attached patch recognizes 'msys' i.e. MinGW/MSYS perl as WINLIKE > > http://www.mingw.org/ > MSYS or MinGW Shell: > This is perl, v5.8.8 built for msys-64int > > $ perl -V:osname > osname='msys';
Closed as DBD::SQLite 1.38_02 was out. Thanks. On Wed Apr 03 02:57:23 2013, ISHIGAKI wrote: Show quoted text
> Applied to the trunk. Thanks. > > On Wed Apr 03 01:20:17 2013, RURBAN wrote:
> > Attached patch recognizes 'msys' i.e. MinGW/MSYS perl as WINLIKE > > > > http://www.mingw.org/ > > MSYS or MinGW Shell: > > This is perl, v5.8.8 built for msys-64int > > > > $ perl -V:osname > > osname='msys';
> >