diff options
author | Jack Lloyd <[email protected]> | 2016-11-05 22:01:12 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-05 22:01:12 -0400 |
commit | af7af14fb97299fc70a2a1f8590288fbf91f271b (patch) | |
tree | 467ba384ccb774e29b8aa094cc1c9034b0473a56 /src/contrib | |
parent | 8585ef862f6d0932d41a4bd03a2dd93fc15b6567 (diff) |
Fixes for Perl
Diffstat (limited to 'src/contrib')
-rw-r--r-- | src/contrib/perl-xs/Botan.xs | 1 | ||||
-rw-r--r-- | src/contrib/perl-xs/Makefile.PL | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/contrib/perl-xs/Botan.xs b/src/contrib/perl-xs/Botan.xs index 375f73830..38f1646b6 100644 --- a/src/contrib/perl-xs/Botan.xs +++ b/src/contrib/perl-xs/Botan.xs @@ -11,6 +11,7 @@ extern "C" { #endif #include <botan/alg_id.h> +#include <botan/asn1_attribute.h> #include <botan/asn1_alt_name.h> #include <botan/asn1_oid.h> #include <botan/filters.h> diff --git a/src/contrib/perl-xs/Makefile.PL b/src/contrib/perl-xs/Makefile.PL index ab28bff1f..0eb131211 100644 --- a/src/contrib/perl-xs/Makefile.PL +++ b/src/contrib/perl-xs/Makefile.PL @@ -9,8 +9,8 @@ if ( $^O eq 'MSWin32' ) else { $cc = 'g++'; - $cflags = $Config::Config{ccflags} . ' -Wno-write-strings -fexceptions ' . qx( botan config --cflags ); - $libs = qx( botan config --libs ); + $cflags = $Config::Config{ccflags} . ' -Wno-write-strings -fexceptions ' . qx( botan config cflags ); + $libs = qx( botan config libs ); } WriteMakefile( |