]> git.pld-linux.org Git - packages/perl-PDL.git/commitdiff
- removed obsolete patch auto/th/perl-PDL-2.018-1
authorJan Rękorajski <baggins@pld-linux.org>
Mon, 12 Jun 2017 11:08:31 +0000 (13:08 +0200)
committerJan Rękorajski <baggins@pld-linux.org>
Mon, 12 Jun 2017 11:08:31 +0000 (13:08 +0200)
perl-PDL-gsl.patch [deleted file]

diff --git a/perl-PDL-gsl.patch b/perl-PDL-gsl.patch
deleted file mode 100644 (file)
index 93869e1..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-diff -up PDL-2.015/Lib/GSL/SF/ellint/gsl_sf_ellint.pd.gsl PDL-2.015/Lib/GSL/SF/ellint/gsl_sf_ellint.pd
---- PDL-2.015/Lib/GSL/SF/ellint/gsl_sf_ellint.pd.gsl   2015-08-11 19:44:20.000000000 -0600
-+++ PDL-2.015/Lib/GSL/SF/ellint/gsl_sf_ellint.pd       2015-11-30 15:50:16.162825309 -0700
-@@ -82,6 +82,10 @@ $e() = r.err;
-        Doc =>'Legendre form of incomplete elliptic integrals P(phi,k,n) = Integral[(1 + n Sin[t]^2)^(-1)/Sqrt[1 - k^2 Sin[t]^2], {t, 0, phi}]'
-       );
-+my $v = `gsl-config --version`;
-+
-+if($v < 2.0) {
-+
- pp_def('gsl_sf_ellint_D',
-        GenericTypes => [D],
-        Pars=>'double phi(); double k(); double n();
-@@ -95,6 +99,24 @@ $e() = r.err;
-        Doc =>'Legendre form of incomplete elliptic integrals D(phi,k,n)'
-       );
-+}
-+else {
-+
-+pp_def('gsl_sf_ellint_D',
-+       GenericTypes => [D],
-+       Pars=>'double phi(); double k();
-+              double [o]y(); double [o]e()',
-+       Code =>'
-+gsl_sf_result r;
-+GSLERR(gsl_sf_ellint_D_e,($phi(),$k(),GSL_PREC_DOUBLE,&r))
-+$y() = r.val;
-+$e() = r.err; 
-+',
-+       Doc =>'Legendre form of incomplete elliptic integrals D(phi,k)'
-+      );
-+
-+}
-+
- pp_def('gsl_sf_ellint_RC',
-        GenericTypes => [D],
-        Pars=>'double x(); double yy(); double [o]y(); double [o]e()',
This page took 0.112239 seconds and 4 git commands to generate.