diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1997-01-15 07:19:43 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1997-01-15 07:19:43 +0000 |
commit | f18d9822f1bcdfb1c2d61c860d1e1020b3f9a458 (patch) | |
tree | b5ae0fb1da12e1e68bdeae3d739f268786999453 /science/felt/files | |
parent | Serves me right for committing work I hadn't looked at in over a month. (diff) |
Import of FElt, a system for Finite Element analysis.
Closes PR #2237.
Submitted by: Pedro Giffuni <pgiffuni@FPS.biblos.unal.edu.co>
Notes
Notes:
svn path=/head/; revision=5356
Diffstat (limited to 'science/felt/files')
-rw-r--r-- | science/felt/files/patch-aa | 14 | ||||
-rw-r--r-- | science/felt/files/patch-ac | 28 | ||||
-rw-r--r-- | science/felt/files/patch-ad | 15 |
3 files changed, 57 insertions, 0 deletions
diff --git a/science/felt/files/patch-aa b/science/felt/files/patch-aa new file mode 100644 index 000000000000..e39c5f74a9e9 --- /dev/null +++ b/science/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/science/felt/files/patch-ac b/science/felt/files/patch-ac new file mode 100644 index 000000000000..0e835d66f35c --- /dev/null +++ b/science/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/science/felt/files/patch-ad b/science/felt/files/patch-ad new file mode 100644 index 000000000000..22525e8ca2d8 --- /dev/null +++ b/science/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)) |