Add check to Makefile to abort in a Windows environment (neither i3 nor unix sockets available)
Hopefully, this will stop CPAN Testers emails about failing tests on windows.
This commit is contained in:
parent
da94674f8f
commit
a3a42f30e1
|
@ -9,4 +9,8 @@ requires 'AnyEvent::Handle';
|
||||||
requires 'AnyEvent::Socket';
|
requires 'AnyEvent::Socket';
|
||||||
requires 'JSON::XS';
|
requires 'JSON::XS';
|
||||||
|
|
||||||
|
if ($^O eq 'MSWin32') {
|
||||||
|
die "AnyEvent::I3 cannot be used on win32 (unix sockets are missing)";
|
||||||
|
}
|
||||||
|
|
||||||
WriteAll;
|
WriteAll;
|
||||||
|
|
|
@ -15,11 +15,11 @@ AnyEvent::I3 - communicate with the i3 window manager
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
our $VERSION = '0.05';
|
our $VERSION = '0.06';
|
||||||
|
|
||||||
=head1 VERSION
|
=head1 VERSION
|
||||||
|
|
||||||
Version 0.05
|
Version 0.06
|
||||||
|
|
||||||
=head1 SYNOPSIS
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue