diff options
author | max <max@FreeBSD.org> | 1997-06-16 13:45:10 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-06-16 13:45:10 +0800 |
commit | 2b4cc3443700fcde272fce25a66f3b1826031269 (patch) | |
tree | bee8f23008d944d4279e2ef13111b4d1b1748ca7 /science/felt/files | |
parent | 235364434b26f9429f8d56b60220184b467b9a04 (diff) | |
download | freebsd-ports-gnome-2b4cc3443700fcde272fce25a66f3b1826031269.tar.gz freebsd-ports-gnome-2b4cc3443700fcde272fce25a66f3b1826031269.tar.zst freebsd-ports-gnome-2b4cc3443700fcde272fce25a66f3b1826031269.zip |
Upgrade, 3.01 -> 3.02.
PR: 3871
Submitted by: Pedro Giffuni S. <pgiffuni@FPS.biblos.unal.edu.co>
Diffstat (limited to 'science/felt/files')
-rw-r--r-- | science/felt/files/patch-aa | 6 | ||||
-rw-r--r-- | science/felt/files/patch-ac | 36 |
2 files changed, 15 insertions, 27 deletions
diff --git a/science/felt/files/patch-aa b/science/felt/files/patch-aa index e39c5f74a9e9..c1c9f3ec5c45 100644 --- a/science/felt/files/patch-aa +++ b/science/felt/files/patch-aa @@ -1,5 +1,5 @@ ---- configure.orig Fri Aug 4 23:57:09 1995 -+++ configure Sat Jan 11 12:14:28 1997 +--- configure.orig Tue May 30 15:29:15 1995 ++++ configure Mon Jun 16 14:18:42 1997 @@ -221,8 +221,10 @@ CONTRIBDIR = $CONTRIBDIR CONTRIBFLAGS = $CONTRIBFLAGS @@ -11,4 +11,4 @@ +DESTLIB = $DEST/share/felt DESTMAN = $DEST/man INSTALL = sh \$(TOPDIR)/etc/install.sh -c - LDOPTS = -s + LDOPTS = diff --git a/science/felt/files/patch-ac b/science/felt/files/patch-ac index 0e835d66f35c..c9361f62f8ee 100644 --- a/science/felt/files/patch-ac +++ b/science/felt/files/patch-ac @@ -1,28 +1,16 @@ -*** ../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 +*** src/Burlap/allocate.h.orig Sat Jun 14 22:32:22 1997 +--- src/Burlap/allocate.h Sat Jun 14 22:35:28 1997 *************** -*** 73,78 **** ---- 73,81 ---- - # include "popup.xbm" - # include "FElt.icon" +*** 28,34 **** +--- 28,38 ---- -+ #ifdef __FreeBSD__ -+ #include <floatingpoint.h> + # ifndef _ALLOCATE_H + # define _ALLOCATE_H ++ #ifdef __STDC__ ++ #include <stdlib.h> ++ #else + # include <malloc.h> + #endif + # include <string.h> - 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 */ + # define New(type) \ |