Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Revision history for {{$dist->name}}

{{$NEXT}}
- Alien::libuuid is now a prerequsite listed in META.json. If it is not
needed it will be removed in the configure stage instead of added if
it is needed (gh#10)

0.10 2021-05-10 06:53:27 -0600
- Check for required symbols, and require
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Graham Ollis <plicease@cpan.org>

# COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Graham Ollis.
This software is copyright (c) 2014-2022 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
11 changes: 3 additions & 8 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,23 @@ github_user = uperl
workflow = linux
workflow = macos

diag = +Alien::libuuid

[RemovePrereqs]
remove = strict
remove = warnings
remove = constant
remove = overload
remove = Carp

remove = Alien::libuuid

; comes with FFI::Platypus
remove = FFI::Platypus::Memory

[Prereqs]
FFI::Platypus = 0.12
FFI::CheckLib = 0.06
FFI::Platypus = 0.12
FFI::CheckLib = 0.06
Alien::libuuid = 0.05

[Prereqs / ConfigureRequires]
FFI::CheckLib = 0.05

[Author::Plicease::Upload]
cpan = 1


4 changes: 2 additions & 2 deletions inc/mymm.pl
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ sub myWriteMakefile
]
);

unless($lib)
if($lib)
{
$args{PREREQ_PM}->{'Alien::libuuid'} = 0.05;
delete $args{PREREQ_PM}->{'Alien::libuuid'};
}

WriteMakefile(%args);
Expand Down