diff options
author | lloyd <[email protected]> | 2015-02-06 04:01:31 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-02-06 04:01:31 +0000 |
commit | 9693089c88a1d7731c0633c7c0517cf4f9c28ae2 (patch) | |
tree | 6c72671da882b28d824babe655929a41d2f764f0 /src/contrib | |
parent | f41ae8e3119fa5647f142dc2a806799cdafa21d4 (diff) |
Mark modules pulling in external deps (zlib, boost, etc) as such, and
notify the user when they are enabled.
Drop botan-config, replaced by `botan config` command added in 1.11.8
Diffstat (limited to 'src/contrib')
-rw-r--r-- | src/contrib/perl-xs/Makefile.PL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contrib/perl-xs/Makefile.PL b/src/contrib/perl-xs/Makefile.PL index 5a3276aec..ab28bff1f 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-1.11 --cflags ); - $libs = qx( botan-config --libs ); + $cflags = $Config::Config{ccflags} . ' -Wno-write-strings -fexceptions ' . qx( botan config --cflags ); + $libs = qx( botan config --libs ); } WriteMakefile( |