From b12dbd21abedcfab84b249df52c5e5a039e3d028 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Wed, 3 Oct 2018 17:52:23 -0400 Subject: no bug - make libcmark-gfm optional (#792) --- Makefile.PL | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index 293a66f6b..c8d78f5cd 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -33,7 +33,6 @@ BEGIN { # PREREQ_PM my %requires = ( - 'Alien::libcmark_gfm' => '3', 'Algorithm::BloomFilter' => '0.02', 'CGI' => '4.31', 'CGI::Compile' => 0, @@ -122,6 +121,14 @@ if ( $OSNAME eq 'linux' && -f '/etc/debian_version' ) { } my %optional_features = ( + alien_cmark => { + description => 'Support GitHub-flavored markdown', + prereqs => { + runtime => { + requires => { 'Alien::libcmark_gfm' => '3' }, + }, + }, + }, argon2 => { description => 'Support hashing passwords with Argon2', prereqs => { -- cgit v1.2.3-24-g4f1b