summaryrefslogtreecommitdiff
path: root/cad/felt/files
diff options
context:
space:
mode:
Diffstat (limited to 'cad/felt/files')
-rw-r--r--cad/felt/files/patch-aa14
-rw-r--r--cad/felt/files/patch-ac28
-rw-r--r--cad/felt/files/patch-ad15
3 files changed, 57 insertions, 0 deletions
diff --git a/cad/felt/files/patch-aa b/cad/felt/files/patch-aa
new file mode 100644
index 000000000000..e39c5f74a9e9
--- /dev/null
+++ b/cad/felt/files/patch-aa
@@ -0,0 +1,14 @@
+--- configure.orig Fri Aug 4 23:57:09 1995
++++ configure Sat Jan 11 12:14:28 1997
+@@ -221,8 +221,10 @@
+ CONTRIBDIR = $CONTRIBDIR
+ CONTRIBFLAGS = $CONTRIBFLAGS
+ CPP = $CPP
++FC = f77
++FFLAGS = $CCOPTS -Dfreebsd
+ DESTBIN = $DEST/bin
+-DESTLIB = $DEST/lib/felt
++DESTLIB = $DEST/share/felt
+ DESTMAN = $DEST/man
+ INSTALL = sh \$(TOPDIR)/etc/install.sh -c
+ LDOPTS = -s
diff --git a/cad/felt/files/patch-ac b/cad/felt/files/patch-ac
new file mode 100644
index 000000000000..0e835d66f35c
--- /dev/null
+++ b/cad/felt/files/patch-ac
@@ -0,0 +1,28 @@
+*** ../FElt-3.00/src/Velvet/velvet.c Wed May 31 19:03:06 1995
+--- ./src/Velvet/velvet.c Wed Dec 18 20:50:30 1996
+***************
+*** 73,78 ****
+--- 73,81 ----
+ # include "popup.xbm"
+ # include "FElt.icon"
+
++ #ifdef __FreeBSD__
++ #include <floatingpoint.h>
++ #endif
+
+ static char *defaults [ ] = {
+ # include "velvet.ad.h"
+***************
+*** 595,600 ****
+--- 598,608 ----
+ static String output_buttons [ ] = {"dismiss", "save"};
+ static String proceed_buttons [ ] = {"okay", "cancel"};
+ static String qsave_buttons [ ] = {"yes", "no", "cancel"};
++
++ #ifdef __FreeBSD__
++ fpsetmask (0);
++ #endif
++
+
+
+ /* Parse the initial command line options */
diff --git a/cad/felt/files/patch-ad b/cad/felt/files/patch-ad
new file mode 100644
index 000000000000..22525e8ca2d8
--- /dev/null
+++ b/cad/felt/files/patch-ad
@@ -0,0 +1,15 @@
+--- include/allocate.h.orig Fri Jan 10 20:11:30 1997
++++ include/allocate.h Fri Jan 10 20:10:54 1997
+@@ -25,7 +25,12 @@
+
+ # ifndef _ALLOCATE_H
+ # define _ALLOCATE_H
++
++#ifdef __STDC__
++#include <stdlib.h>
++#else
+ # include "malloc.h"
++#endif
+
+ # define AllocNew(type) \
+ (type *) malloc (sizeof (type))