diff options
author | wes <wes@FreeBSD.org> | 2000-09-01 14:52:05 +0800 |
---|---|---|
committer | wes <wes@FreeBSD.org> | 2000-09-01 14:52:05 +0800 |
commit | 1bad857622efc72ca70480acf760a5ec619e6894 (patch) | |
tree | fc622e47a6ac969678eb35af647c18b1c361f94d /lang/snobol/files | |
parent | 53295982b5130cff91891c94e5a665ae26cb181d (diff) | |
download | freebsd-ports-gnome-1bad857622efc72ca70480acf760a5ec619e6894.tar.gz freebsd-ports-gnome-1bad857622efc72ca70480acf760a5ec619e6894.tar.zst freebsd-ports-gnome-1bad857622efc72ca70480acf760a5ec619e6894.zip |
A port of the Macro Implementation of SNOBOL4 in C (C-MAINBOL) version
0.99.4; Aug 11, 1997. This was sort of request by Eivind.
Diffstat (limited to 'lang/snobol/files')
-rw-r--r-- | lang/snobol/files/patch-aa | 7 | ||||
-rw-r--r-- | lang/snobol/files/patch-ab | 11 | ||||
-rw-r--r-- | lang/snobol/files/patch-ac | 10 |
3 files changed, 28 insertions, 0 deletions
diff --git a/lang/snobol/files/patch-aa b/lang/snobol/files/patch-aa new file mode 100644 index 000000000000..ebe6b8f6937a --- /dev/null +++ b/lang/snobol/files/patch-aa @@ -0,0 +1,7 @@ +--- config/bsd44.m4.orig Thu Aug 31 09:49:40 2000 ++++ config/bsd44.m4 Thu Aug 31 09:49:59 2000 +@@ -1,3 +1,4 @@ + # $Id: bsd44.m4,v 1.3 1996/10/05 06:25:58 phil Exp $ + + # config for BSD 4.4, and progeny (BSDI, NetBSD, FreeBSD, 386BSD) ++DYNAMIC_C=lib/generic/dynamic.c diff --git a/lang/snobol/files/patch-ab b/lang/snobol/files/patch-ab new file mode 100644 index 000000000000..56a461e35fba --- /dev/null +++ b/lang/snobol/files/patch-ab @@ -0,0 +1,11 @@ +--- Makefile.orig Fri Sep 1 00:12:53 2000 ++++ Makefile Fri Sep 1 00:13:02 2000 +@@ -2,7 +2,7 @@ + + M4=m4 + +-it: Makefile2 ++all: Makefile2 + $(MAKE) -f Makefile2 $(TARGET) + + .PRECIOUS: Makefile2 diff --git a/lang/snobol/files/patch-ac b/lang/snobol/files/patch-ac new file mode 100644 index 000000000000..02d33b15ec90 --- /dev/null +++ b/lang/snobol/files/patch-ac @@ -0,0 +1,10 @@ +--- configure.orig Fri Sep 1 00:13:51 2000 ++++ configure Fri Sep 1 00:14:00 2000 +@@ -1,6 +1,6 @@ + #!/bin/sh + +-if autoconf "$@" > config.m4.tmp; then ++if ./autoconf "$@" > config.m4.tmp; then + rm -f config.m4 + mv config.m4.tmp config.m4 + else |