diff options
author | wiz <wiz@pkgsrc.org> | 2000-03-11 06:01:55 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-03-11 06:01:55 +0000 |
commit | e151cd131d0f65b3eb2b52443baaebe7ed9a960c (patch) | |
tree | 1b8e31052cecf567ad3100d4f4aaab45fd876889 /lang/snobol/patches | |
parent | da0433f3fd38f1485a89f58a2af0a75c63c60aee (diff) | |
download | pkgsrc-e151cd131d0f65b3eb2b52443baaebe7ed9a960c.tar.gz |
Initial import of the original SIL (SNOBOL4 Implementation Language)
"macro" version of SNOBOL4 (developed at Bell Labs) with the `C'
language as a target. Requested in pkg/9074.
Diffstat (limited to 'lang/snobol/patches')
-rw-r--r-- | lang/snobol/patches/patch-aa | 12 | ||||
-rw-r--r-- | lang/snobol/patches/patch-ab | 21 |
2 files changed, 33 insertions, 0 deletions
diff --git a/lang/snobol/patches/patch-aa b/lang/snobol/patches/patch-aa new file mode 100644 index 00000000000..06971db1560 --- /dev/null +++ b/lang/snobol/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1.1.1 2000/03/11 06:01:56 wiz Exp $ + +--- ./configure.orig Fri Jul 18 23:43:30 1997 ++++ ./configure Sat Mar 11 03:56: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 diff --git a/lang/snobol/patches/patch-ab b/lang/snobol/patches/patch-ab new file mode 100644 index 00000000000..0008bddc98b --- /dev/null +++ b/lang/snobol/patches/patch-ab @@ -0,0 +1,21 @@ +$NetBSD: patch-ab,v 1.1.1.1 2000/03/11 06:01:56 wiz Exp $ + +--- ./Makefile2.m4.orig Thu Aug 7 07:34:47 1997 ++++ ./Makefile2.m4 Sat Mar 11 04:24:21 2000 +@@ -48,13 +48,13 @@ + SNOLIB_FILE=snolib.a + + # directory name for default SNOLIB (used by -INCLUDE and LOAD()) +-SNOLIB_DIR=/usr/local/lib/snobol4 ++SNOLIB_DIR=${PREFIX}/lib/snobol4 + + # default name for installed binary +-BINDEST=/usr/local/bin/snobol4 ++BINDEST=${PREFIX}/bin/snobol4 + + # default name for installed man page +-MANDEST=/usr/local/man/man1/snobol4.1 ++MANDEST=${PREFIX}/man/man1/snobol4.1 + + ######## + # default lib source files |