summaryrefslogtreecommitdiff
path: root/math/asir2000/files/patch-af
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2001-08-30 15:50:41 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2001-08-30 15:50:41 +0000
commitc7d20b1d748db9202b210f011187b86003bd1a84 (patch)
treed3d60b6526283e6f66278ccc91d26afa432fa70b /math/asir2000/files/patch-af
parent= Update MASTER_SITES (diff)
Add new port Asir.
The system Risa/Asir is a general computer algebra system. It performs arithmetics in various rings and fields, factorization, and Groebner basis computations. It can call outer modules complient to the OpenXM protocols. PR: ports/30158 Submitted by: Saito Tomokatsu <saito@asir.org>
Notes
Notes: svn path=/head/; revision=47162
Diffstat (limited to 'math/asir2000/files/patch-af')
-rw-r--r--math/asir2000/files/patch-af30
1 files changed, 30 insertions, 0 deletions
diff --git a/math/asir2000/files/patch-af b/math/asir2000/files/patch-af
new file mode 100644
index 000000000000..d5549e5c019b
--- /dev/null
+++ b/math/asir2000/files/patch-af
@@ -0,0 +1,30 @@
+--- parse/glob.c.orig Thu Aug 9 10:20:46 2001
++++ parse/glob.c Thu Aug 16 19:04:59 2001
+@@ -50,6 +50,7 @@
+ #include "ca.h"
+ #include "al.h"
+ #include "parse.h"
++#include "version.h"
+ #if PARI
+ #include "genpari.h"
+ #endif
+@@ -688,11 +689,15 @@
+ printf("This is Risa/Asir, Version %d (%s Distribution).\n",
+ get_asir_version(), get_asir_distribution());
+ #endif
++
+ printf("Copyright (C) 1994-2000, all rights reserved, FUJITSU LABORATORIES LIMITED.\n");
+ printf("Copyright 2000,2001, Risa/Asir committers, http://www.openxm.org/.\n");
+ printf("GC 5.3, copyright 1999, H-J. Boehm, A. J. Demers, Xerox, SGI, HP.\n");
+- printf("PARI 2.0.17(beta), copyright (C) 1989-1999,\n");
+- printf(" C. Batut, K. Belabas, D. Bernardi, H. Cohen and M. Olivier.\n");
+-}
+-
++#if defined(PARI)
++ printf("%s.\n",PARI_VERSION);
++#endif
+
++#if defined(LAPACK)
++ printf("%s.\n",LAPACK_VERSION);
++#endif
++}