diff options
Diffstat (limited to 'math/asir2000/files')
-rw-r--r-- | math/asir2000/files/patch-ac | 15 | ||||
-rw-r--r-- | math/asir2000/files/patch-ad | 22 | ||||
-rw-r--r-- | math/asir2000/files/patch-af | 10 |
3 files changed, 29 insertions, 18 deletions
diff --git a/math/asir2000/files/patch-ac b/math/asir2000/files/patch-ac index 42db624cd86b..8757e0beaa72 100644 --- a/math/asir2000/files/patch-ac +++ b/math/asir2000/files/patch-ac @@ -1,13 +1,8 @@ ---- include/version.h.orig Thu Oct 4 02:04:12 2001 -+++ include/version.h Tue Oct 23 02:26:45 2001 -@@ -47,5 +47,8 @@ - * - * $OpenXM: OpenXM_contrib2/asir2000/include/version.h,v 1.51 2001/10/01 02:00:28 noro Exp $ +--- include/version.h.orig Fri Mar 1 09:40:52 2002 ++++ include/version.h Sat Mar 2 20:09:47 2002 +@@ -48,4 +48,4 @@ + * $OpenXM: OpenXM_contrib2/asir2000/include/version.h,v 1.61 2002/03/01 00:40:52 noro Exp $ */ --#define ASIR_VERSION 20011001 + #define ASIR_VERSION 20020301 -#define ASIR_DISTRIBUTION "Kobe" -+#define ASIR_VERSION 20011005 +#define ASIR_DISTRIBUTION "Plotting Group" -+#define PARI2_VERSION "PARI CALCULATOR Version 2.2.0 (alpha) Copyright (C) 2000 The PARI Group" -+#define PARI1_VERSION "PARI CALCULATOR Version 2.1.1 (released) Copyright (C) 2000 The PARI Group" -+#define LAPACK_VERSION "LAPACK Project Version 3.0" diff --git a/math/asir2000/files/patch-ad b/math/asir2000/files/patch-ad index a47f5c9d0826..40a1e9ae0394 100644 --- a/math/asir2000/files/patch-ad +++ b/math/asir2000/files/patch-ad @@ -1,5 +1,5 @@ ---- configure.orig Sat Oct 6 01:24:21 2001 -+++ configure Tue Oct 23 02:16:02 2001 +--- configure.orig Fri Oct 5 20:01:21 2001 ++++ configure Sat Mar 2 20:10:01 2002 @@ -4,6 +4,7 @@ use_plot=0 use_pari=0 @@ -17,7 +17,22 @@ -fep) use_fep=1 ;; esac -@@ -59,6 +62,10 @@ +@@ -43,12 +46,14 @@ + libname=$libname"_pari" + libpari=pari + echo "#define USE_PARI" >> include/config.h ++echo "#define PARI_VERSION \"PARI CALCULATOR Version ${OLD_PARI_VERSION}, Copyright (C) 2000 The PARI Group\"" >> include/version.h + fi + + if [ $use_pari = 2 ]; then + libname=$libname"_pari" + libpari=pari-2.2 + echo "#define USE_PARI" >> include/config.h ++echo "#define PARI_VERSION \"PARI CALCULATOR Version ${PARI_VERSION}, Copyright (C) 2000 The PARI Group\"" >> include/version.h + fi + + if [ $use_plot != 0 ]; then +@@ -59,6 +64,11 @@ if [ $use_interval != 0 ]; then libname=$libname"_itv" echo "#define USE_INTERVAL" >> include/config.h @@ -25,6 +40,7 @@ + +if [ $use_lapack != 0 ]; then +echo "#define USE_LAPACK" >> include/config.h ++echo "#define LAPACK_VERSION \"LAPACK Project Version ${LAPACK_VERSION}\"" >> include/version.h fi if [ $use_fep != 0 ]; then diff --git a/math/asir2000/files/patch-af b/math/asir2000/files/patch-af index 1d4f13b3eef6..2f3b2735a72e 100644 --- a/math/asir2000/files/patch-af +++ b/math/asir2000/files/patch-af @@ -1,5 +1,5 @@ ---- parse/glob.c.orig Sat Nov 3 18:28:57 2001 -+++ parse/glob.c Wed Nov 14 17:20:47 2001 +--- parse/glob.c.orig Sat Jan 5 02:45:29 2002 ++++ parse/glob.c Sat Jan 26 18:33:43 2002 @@ -51,6 +51,7 @@ #include "al.h" #include "parse.h" @@ -14,10 +14,10 @@ printf("GC 5.3, copyright 1999, H-J. Boehm, A. J. Demers, Xerox, SGI, HP.\n"); - printf("PARI 2.2.1(alpha), copyright (C) 2000,\n"); - printf(" C. Batut, K. Belabas, D. Bernardi, H. Cohen and M. Olivier.\n"); -+#if defined(PARI) -+ printf("%s.\n",PARI2_VERSION); ++#if PARI ++ printf("%s.\n",PARI_VERSION); +#endif -+#if defined(LAPACK) ++#if LAPACK + printf("%s.\n",LAPACK_VERSION); +#endif } |