summaryrefslogtreecommitdiff
path: root/lang/gforth/files
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2006-07-25 11:50:32 +0000
committerMartin Wilke <miwi@FreeBSD.org>2006-07-25 11:50:32 +0000
commit9a74edf16627f0839415c57ce91636a70d3eb2bd (patch)
tree897c5c01609f41661bd477576e7cd8ec235053fa /lang/gforth/files
parent- Improved description (diff)
- Pass maintainership to submitter
- Update to 0.6.2 - Cleanup and optimization PR: ports/100692 Submitted by: Stanislav Sedov <ssedov(at)mbsd.msk.ru> Approved by: krion (mentor)
Notes
Notes: svn path=/head/; revision=168718
Diffstat (limited to 'lang/gforth/files')
-rw-r--r--lang/gforth/files/patch-engine::Makefile.in12
-rw-r--r--lang/gforth/files/patch-engine::signals.c21
-rw-r--r--lang/gforth/files/patch-getopt.c16
3 files changed, 0 insertions, 49 deletions
diff --git a/lang/gforth/files/patch-engine::Makefile.in b/lang/gforth/files/patch-engine::Makefile.in
deleted file mode 100644
index eb239e282bd0..000000000000
--- a/lang/gforth/files/patch-engine::Makefile.in
+++ /dev/null
@@ -1,12 +0,0 @@
---- engine/Makefile.in.orig Sun Mar 9 16:06:46 2003
-+++ engine/Makefile.in Tue Mar 9 14:47:19 2004
-@@ -72,7 +72,8 @@
- XCFLAGS = @CFLAGS@
- XDEFINES = @DEFS@
- SWITCHES = $(XCFLAGS) $(XDEFINES)
--ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
-+#use -fno-inline to avoid register problems with asinh, atanh on gcc-3.3 on 386
-+ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves -fno-inline
- DEBUGFLAG = @DEBUGFLAG@
- CFLAGS = $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -I. -O2 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
- CFLAGS2 = $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -I. -O2 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
diff --git a/lang/gforth/files/patch-engine::signals.c b/lang/gforth/files/patch-engine::signals.c
deleted file mode 100644
index 9cb26b52aebd..000000000000
--- a/lang/gforth/files/patch-engine::signals.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- engine/signals.c.orig Sun Mar 9 16:06:56 2003
-+++ engine/signals.c Tue Mar 9 14:44:48 2004
-@@ -142,10 +142,18 @@
- #ifdef FPE_INTOVF
- case FPE_INTOVF: code=-11; break; /* integer overflow */
- #endif
-+#ifdef FPE_FLTDIV
- case FPE_FLTDIV: code=-42; break; /* floating point divide by zero */
-+#endif
-+#ifdef FPE_FLTOVF
- case FPE_FLTOVF: code=-43; break; /* floating point overflow */
-+#endif
-+#ifdef FPE_FLTUND
- case FPE_FLTUND: code=-54; break; /* floating point underflow */
-+#endif
-+#ifdef FPE_FLTRES
- case FPE_FLTRES: code=-41; break; /* floating point inexact result */
-+#endif
- #if 0 /* defined by Unix95, but unnecessary */
- case FPE_FLTINV: /* invalid floating point operation */
- case FPE_FLTSUB: /* subscript out of range */
diff --git a/lang/gforth/files/patch-getopt.c b/lang/gforth/files/patch-getopt.c
deleted file mode 100644
index 9175b4778c42..000000000000
--- a/lang/gforth/files/patch-getopt.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- engine/getopt.c.orig Sat Sep 23 20:22:09 2000
-+++ engine/getopt.c Fri Mar 16 01:42:49 2001
-@@ -177,12 +177,12 @@
- REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
- } ordering, default_ordering = PERMUTE;
-
-+#include <string.h>
- #ifdef __GNU_LIBRARY__
- /* We want to avoid inclusion of string.h with non-GNU libraries
- because there are many ways it can cause trouble.
- On some systems, it contains special magic macros that don't work
- in GCC. */
--#include <string.h>
- #define my_index strchr
- #define my_bcopy(src, dst, n) memcpy ((dst), (src), (n))
- #else