1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Description: patch out Alien::GSL, we sure have the -dev package installed
Author: Florian Schlichting <fsfs@debian.org>
Forwarded: not-needed
--- a/Build.PL
+++ b/Build.PL
@@ -26,14 +26,12 @@
use GSLBuilder;
use Ver2Func;
use File::Spec::Functions qw/:ALL/;
-use Math::GSL::Alien;
use File::Temp qw(tempdir);
our $MIN_GSL_VERSION = "1.15";
my $gsl_conf;
-check_alien_gsl_share_dir();
$gsl_conf = check_gsl_version_gsl_config();
$gsl_conf = check_gsl_version_alien_gsl() if not $gsl_conf;
$gsl_conf = check_gsl_version_pkgconfig() if not $gsl_conf;
@@ -152,7 +150,6 @@
configure_requires => {
'PkgConfig' => '0.07720',
'Module::Build' => '0.38',
- 'Math::GSL::Alien' => '1.03',
},
swig_version => $swig_version,
current_version => $gsl_conf->{gsl_version},
|