summaryrefslogtreecommitdiff
path: root/math/yacas/patches
diff options
context:
space:
mode:
Diffstat (limited to 'math/yacas/patches')
-rw-r--r--math/yacas/patches/patch-aa13
-rw-r--r--math/yacas/patches/patch-ad25
2 files changed, 0 insertions, 38 deletions
diff --git a/math/yacas/patches/patch-aa b/math/yacas/patches/patch-aa
deleted file mode 100644
index 6956b82432c..00000000000
--- a/math/yacas/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.4 2000/12/05 19:02:05 drochner Exp $
-
---- src/Makefile.in.orig Sun Nov 19 01:39:17 2000
-+++ src/Makefile.in Tue Nov 28 11:07:23 2000
-@@ -89,7 +89,7 @@
- # supports elf binaries?
- #
-
--yacas_LDFLAGS = -ldl -rdynamic
-+yacas_LDFLAGS = -Wl,--export-dynamic
-
- testnum_SOURCES = anumber.cpp grower.cpp lispstring.cpp stdstubs.cpp testnum.cpp mathutil.cpp
-
diff --git a/math/yacas/patches/patch-ad b/math/yacas/patches/patch-ad
deleted file mode 100644
index 6fd2ca2dbc8..00000000000
--- a/math/yacas/patches/patch-ad
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-ad,v 1.1.1.1 2000/02/20 14:40:35 dmcmahill Exp $
-
---- /dev/null Sun Feb 20 09:00:11 2000
-+++ yacas.sh.in Sun Feb 20 09:07:01 2000
-@@ -0,0 +1,20 @@
-+#!/bin/sh
-+
-+# save the tty settings
-+stty -a | grep "\-extproc" 2>&1 > /dev/null
-+if [ $? = 0 ]; then
-+ OLD=-extproc
-+else
-+ OLD=extproc
-+fi
-+#OLD=`stty -g`
-+
-+# make sure one critical tty setting is correct
-+stty -extproc
-+
-+# run yacas
-+@prefix@/bin/yacas $*
-+
-+# restore the tty setting
-+stty $OLD
-+