summaryrefslogtreecommitdiff
path: root/math/ccmath/files
diff options
context:
space:
mode:
Diffstat (limited to 'math/ccmath/files')
-rw-r--r--math/ccmath/files/patch-aa14
-rw-r--r--math/ccmath/files/patch-ab11
-rw-r--r--math/ccmath/files/patch-ac30
3 files changed, 55 insertions, 0 deletions
diff --git a/math/ccmath/files/patch-aa b/math/ccmath/files/patch-aa
new file mode 100644
index 000000000000..5094b1058252
--- /dev/null
+++ b/math/ccmath/files/patch-aa
@@ -0,0 +1,14 @@
+--- non_intel.sh.orig Wed Mar 7 16:13:59 2001
++++ non_intel.sh Wed Mar 7 16:14:20 2001
+@@ -13,9 +13,5 @@
+ rm $MDR/simu/*.s
+ echo " .s code replaced in simu"
+ echo
+-echo " bigendian byte order (y/n)"
+-read F
+-if [ $F = "y" ]
+- then cp $MDR/xarm/supp/big-end/*.c $MDR/xarm
+- echo " bigend code installed in xarm"
+-fi
++cp $MDR/xarm/supp/big-end/*.c $MDR/xarm
++echo " bigend code installed in xarm"
diff --git a/math/ccmath/files/patch-ab b/math/ccmath/files/patch-ab
new file mode 100644
index 000000000000..c386e839fff6
--- /dev/null
+++ b/math/ccmath/files/patch-ab
@@ -0,0 +1,11 @@
+--- tseries/sany.c.orig Wed Mar 7 16:20:33 2001
++++ tseries/sany.c Wed Mar 7 16:20:40 2001
+@@ -5,7 +5,7 @@
+ * public license (LGPL). ( See the lgpl.license file for details.)
+ * ------------------------------------------------------------------------
+ */
+-#include "ccmath.h"
++#include "../ccmath.h"
+ int sany(double *x,int n,double *pm,double *cd,double *ci,
+ int nd,int ms,int lag)
+ { struct complex *pc,*p,**qc,**q;
diff --git a/math/ccmath/files/patch-ac b/math/ccmath/files/patch-ac
new file mode 100644
index 000000000000..707f54041035
--- /dev/null
+++ b/math/ccmath/files/patch-ac
@@ -0,0 +1,30 @@
+--- makelibs.sh.orig Wed Mar 7 16:18:01 2001
++++ makelibs.sh Wed Mar 7 16:18:36 2001
+@@ -9,23 +9,19 @@
+ LST="cfit complex fft geom intg matrix roots sfunc simu sort statf tseries util xarm"
+ MDR=`pwd`
+ LSOD=$MDR/tmp
+-echo "Intel platform ? (y/n)"
+-read F
+ for dr in $LST
+ do
+ cd $MDR/$dr
+ echo `pwd`
+- cc -c -O3 *.c
++ cc -c $CFLAGS *.c
+ mv *.o $LSOD
+ done
+-if [ $F = "y" ]
+- then cd $MDR/matrix
+- cc -c -O3 solv.s
++ cd $MDR/matrix
++ cc -c $CFLAGS solv.s
+ mv *.o $LSOD
+ cd $MDR/simu
+- cc -c -O3 *.s
++ cc -c $CFLAGS *.s
+ mv *.o $LSOD
+-fi
+ cd $LSOD
+ ar r libccm.a *.o
+ ld -shared -o libccm.so *.o