changeset 23670:fcf7c4362eb1

Remove xgamma.f, xdgamma.f which are now provided by std library. * liboctave/external/slatec-fn/module.mk: Remove xdgamma.f, xgamma.f from build system. * xdgamma.f, xgamma.f: Remove files.
author Rik <rik@octave.org>
date Wed, 21 Jun 2017 17:00:12 -0700
parents 94a4ba7b0d94
children d197f62cde8a
files liboctave/external/slatec-fn/module.mk liboctave/external/slatec-fn/xdgamma.f liboctave/external/slatec-fn/xgamma.f
diffstat 3 files changed, 0 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/external/slatec-fn/module.mk	Wed Jun 21 16:44:26 2017 -0700
+++ b/liboctave/external/slatec-fn/module.mk	Wed Jun 21 17:00:12 2017 -0700
@@ -40,10 +40,8 @@
   %reldir%/xdbetai.f \
   %reldir%/xdgami.f \
   %reldir%/xdgamit.f \
-  %reldir%/xdgamma.f \
   %reldir%/xgmainc.f \
   %reldir%/xsgmainc.f \
-  %reldir%/xgamma.f \
   %reldir%/xbetai.f
 
 liboctave_EXTRA_DIST += \
--- a/liboctave/external/slatec-fn/xdgamma.f	Wed Jun 21 16:44:26 2017 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-      subroutine xdgamma (x, result)
-      external dgamma
-      double precision x, result, dgamma
-      result = dgamma (x)
-      return
-      end
--- a/liboctave/external/slatec-fn/xgamma.f	Wed Jun 21 16:44:26 2017 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-      subroutine xgamma (x, result)
-      external gamma
-      real x, result, gamma
-      result = gamma (x)
-      return
-      end