shlomif / Clipboard

Perl / CPAN extension for copying/pasting to the system's Clipboard (X.org / Windows / Mac)
http://metacpan.org/release/Clipboard
Other
6 stars 3 forks source link

Missing dep Win32::Clipboard prereq on Cygwin #7

Closed tzccinct closed 3 years ago

tzccinct commented 3 years ago

http://www.cpantesters.org/cpan/report/215179b8-73c1-1014-ba2f-25bc76d8a230

On version 0.17, the following line was removed from Makefile.PL: requires 'Win32::Clipboard' if $^O =~ /mswin|cygwin/i;

Current dist.ini has the following configuration for MSWin32, but not for Cygwin:

[OSPrereqs / MSWin32]
Win32::Clipboard = 0

I suppose the following configuration is necessary in dist.ini:

[OSPrereqs / cygwin]
Win32::Clipboard = 0
shlomif commented 3 years ago

Should be fixed in 0.28. please test.

tzccinct commented 3 years ago

I have tested 0.28 and confirmed it is no problem. Thank you for your update.