diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2001-08-30 15:50:41 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2001-08-30 15:50:41 +0000 |
commit | c7d20b1d748db9202b210f011187b86003bd1a84 (patch) | |
tree | d3d60b6526283e6f66278ccc91d26afa432fa70b /math/asir2000/files/patch-ad | |
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-ad')
-rw-r--r-- | math/asir2000/files/patch-ad | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/math/asir2000/files/patch-ad b/math/asir2000/files/patch-ad new file mode 100644 index 000000000000..39fb80e2ba00 --- /dev/null +++ b/math/asir2000/files/patch-ad @@ -0,0 +1,33 @@ +--- configure.org Thu Aug 16 18:36:16 2001 ++++ configure Thu Aug 16 18:38:59 2001 +@@ -4,6 +4,7 @@ + use_plot=0 + use_pari=0 + use_interval=0 ++use_lapack=0 + use_fep=0 + oxhome=/usr/local + +@@ -22,6 +23,8 @@ + use_pari=1 ;; + -interval) + use_interval=1 ;; ++ -lapack) ++ use_lapack=1 ;; + -fep) + use_fep=1 ;; + esac +@@ -48,8 +51,12 @@ + fi + + if [ $use_interval != 0 ]; then +-libname=$libname"_itv" + echo "#define USE_INTERVAL" >> include/config.h ++fi ++ ++if [ $use_lapack != 0 ]; then ++libname=$libname"_itv" ++echo "#define USE_LAPACK" >> include/config.h + fi + + if [ $use_fep != 0 ]; then |