summaryrefslogtreecommitdiff
path: root/lang/Gofer/files
diff options
context:
space:
mode:
authorJeffrey Hsu <hsu@FreeBSD.org>1995-02-08 09:41:13 +0000
committerJeffrey Hsu <hsu@FreeBSD.org>1995-02-08 09:41:13 +0000
commit7687e06a935961c526c5538ad42cdf64c94bfee8 (patch)
tree81749882efb4f825f0896e33f185a0cbc53bb340 /lang/Gofer/files
parentMesa - a 3-D graphics library similiar to OpenGL (diff)
gofer - a lazy functional language
Notes
Notes: svn path=/head/; revision=909
Diffstat (limited to 'lang/Gofer/files')
-rw-r--r--lang/Gofer/files/patch-aa22
-rw-r--r--lang/Gofer/files/patch-ab79
-rw-r--r--lang/Gofer/files/patch-ac36
-rw-r--r--lang/Gofer/files/patch-ad26
4 files changed, 163 insertions, 0 deletions
diff --git a/lang/Gofer/files/patch-aa b/lang/Gofer/files/patch-aa
new file mode 100644
index 000000000000..b3c7fabf7aa7
--- /dev/null
+++ b/lang/Gofer/files/patch-aa
@@ -0,0 +1,22 @@
+*** Makefile.0 Thu Jun 23 09:00:00 1994
+--- Makefile Wed Feb 1 01:42:58 1995
+***************
+*** 24,32 ****
+ # below).
+
+ CC = cc
+! #CFLAGS = -DUSE_READLINE=1
+! CFLAGS =
+! LDFLAGS = -lm
+ OPTFLAGS = -O
+ OPT1 =
+ #OPT1 = -O1
+--- 24,31 ----
+ # below).
+
+ CC = cc
+! CFLAGS = -DUSE_READLINE=1
+! LDFLAGS = -lm -lreadline
+ OPTFLAGS = -O
+ OPT1 =
+ #OPT1 = -O1
diff --git a/lang/Gofer/files/patch-ab b/lang/Gofer/files/patch-ab
new file mode 100644
index 000000000000..b66f281ae563
--- /dev/null
+++ b/lang/Gofer/files/patch-ab
@@ -0,0 +1,79 @@
+*** prelude.h.0 Thu Jun 23 09:00:00 1994
+--- prelude.h Tue Jan 31 16:17:47 1995
+***************
+*** 30,40 ****
+ #define OS2 0 /* For IBM OS/2 2.0 using EMX GCC */
+ #define SUNOS 0 /* For Sun 3/Sun 4 running SunOs 4.x */
+ #define MIPS 0 /* For MIPS RC6280/Sony machine NWS-3870 UN */
+! #define NEXTSTEP 1 /* For NeXTstep 3.0 using NeXT cc */
+ #define NEXTGCC 0 /* For NeXTstep with gcc 2.x, doesn't work w/ NS3.2*/
+ #define MINIX68K 0 /* For Minix68k with gcc UN */
+ #define AMIGA 0 /* For Amiga using gcc 2.2.2 UN */
+ #define HPUX 0 /* For HPUX using gcc */
+ #define LINUX 0 /* For Linux using gcc UN */
+ #define RISCOS 0 /* For Acorn DesktopC and RISCOS2 or 3 */
+ #define ALPHA 0 /* For DEC Alpha with OSF/1 (32 bit ints, no gofc) */
+--- 30,41 ----
+ #define OS2 0 /* For IBM OS/2 2.0 using EMX GCC */
+ #define SUNOS 0 /* For Sun 3/Sun 4 running SunOs 4.x */
+ #define MIPS 0 /* For MIPS RC6280/Sony machine NWS-3870 UN */
+! #define NEXTSTEP 0 /* For NeXTstep 3.0 using NeXT cc */
+ #define NEXTGCC 0 /* For NeXTstep with gcc 2.x, doesn't work w/ NS3.2*/
+ #define MINIX68K 0 /* For Minix68k with gcc UN */
+ #define AMIGA 0 /* For Amiga using gcc 2.2.2 UN */
+ #define HPUX 0 /* For HPUX using gcc */
++ #define FREEBSD 1 /* For FreeBSD using gcc */
+ #define LINUX 0 /* For Linux using gcc UN */
+ #define RISCOS 0 /* For Acorn DesktopC and RISCOS2 or 3 */
+ #define ALPHA 0 /* For DEC Alpha with OSF/1 (32 bit ints, no gofc) */
+***************
+*** 82,88 ****
+
+ #define UNIX (SUNOS | NEXTSTEP | HPUX | NEXTGCC | LINUX | AMIGA | \
+ MINIX68K | ALPHA | OS2 | SVR4 | ULTRIX | AIX | MIPS |\
+! SGI4 | NETBSD)
+ #define SMALL_GOFER (TURBOC | BCC)
+ #define REGULAR_GOFER (RISCOS | DJGPP | ZTC | ATARI)
+ #define LARGE_GOFER (UNIX | WATCOM)
+--- 83,89 ----
+
+ #define UNIX (SUNOS | NEXTSTEP | HPUX | NEXTGCC | LINUX | AMIGA | \
+ MINIX68K | ALPHA | OS2 | SVR4 | ULTRIX | AIX | MIPS |\
+! SGI4 | NETBSD | FREEBSD)
+ #define SMALL_GOFER (TURBOC | BCC)
+ #define REGULAR_GOFER (RISCOS | DJGPP | ZTC | ATARI)
+ #define LARGE_GOFER (UNIX | WATCOM)
+***************
+*** 91,97 ****
+ #define TERMIO_IO (LINUX | HPUX | OS2 | SVR4 | SGI4)
+ #define SGTTY_IO (SUNOS | NEXTSTEP | NEXTGCC | AMIGA | MINIX68K | \
+ ALPHA | ULTRIX | AIX | MIPS)
+! #define TERMIOS_IO (NETBSD)
+ #define BREAK_FLOATS (TURBOC | BCC)
+ #define HAS_FLOATS (REGULAR_GOFER | LARGE_GOFER | BREAK_FLOATS)
+
+--- 92,98 ----
+ #define TERMIO_IO (LINUX | HPUX | OS2 | SVR4 | SGI4)
+ #define SGTTY_IO (SUNOS | NEXTSTEP | NEXTGCC | AMIGA | MINIX68K | \
+ ALPHA | ULTRIX | AIX | MIPS)
+! #define TERMIOS_IO (NETBSD | FREEBSD)
+ #define BREAK_FLOATS (TURBOC | BCC)
+ #define HAS_FLOATS (REGULAR_GOFER | LARGE_GOFER | BREAK_FLOATS)
+
+***************
+*** 202,208 ****
+ #define farCalloc(n,s) (Void *)valloc(((unsigned)n)*((unsigned)s))
+ #endif
+
+! #if (HPUX | DJGPP | ZTC | LINUX | ALPHA | OS2 | SVR4 | AIX | SGI4 | NETBSD)
+ #include <stdlib.h>
+ #define far
+ #endif
+--- 203,209 ----
+ #define farCalloc(n,s) (Void *)valloc(((unsigned)n)*((unsigned)s))
+ #endif
+
+! #if (HPUX | DJGPP | ZTC | LINUX | ALPHA | OS2 | SVR4 | AIX | SGI4 | NETBSD | FREEBSD)
+ #include <stdlib.h>
+ #define far
+ #endif
diff --git a/lang/Gofer/files/patch-ac b/lang/Gofer/files/patch-ac
new file mode 100644
index 000000000000..fb0b3fd981ac
--- /dev/null
+++ b/lang/Gofer/files/patch-ac
@@ -0,0 +1,36 @@
+*** gofer.0 Thu Jun 23 16:00:00 1994
+--- gofer Wed Feb 8 01:16:55 1995
+***************
+*** 9,18 ****
+ # Edited by Jonathan Bowen, Oxford University, August 1993
+
+ # Location of gofer files - site specific
+! ROOT=/usr/local/gofer
+
+ # first, the location of your prelude file:
+! GOFER=${GOFER-$ROOT/lib/standard.prelude}
+ export GOFER
+
+ # next, command line argument settings. One example might be:
+--- 9,18 ----
+ # Edited by Jonathan Bowen, Oxford University, August 1993
+
+ # Location of gofer files - site specific
+! ROOT=/usr/local/lib/Gofer
+
+ # first, the location of your prelude file:
+! GOFER=${GOFER-$ROOT/standard.prelude}
+ export GOFER
+
+ # next, command line argument settings. One example might be:
+***************
+*** 34,37 ****
+
+ # Finally, start the interpreter running:
+ # exec /usr/local/lib/Gofer/gofer $GOFERARGS $*
+! exec $ROOT/bin/Gofer $GOFERARGS $*
+--- 34,37 ----
+
+ # Finally, start the interpreter running:
+ # exec /usr/local/lib/Gofer/gofer $GOFERARGS $*
+! exec $ROOT/gofer $GOFERARGS $*
diff --git a/lang/Gofer/files/patch-ad b/lang/Gofer/files/patch-ad
new file mode 100644
index 000000000000..67fefef415f0
--- /dev/null
+++ b/lang/Gofer/files/patch-ad
@@ -0,0 +1,26 @@
+*** goferc.0 Thu Jun 23 16:00:00 1994
+--- goferc Wed Feb 8 01:12:53 1995
+***************
+*** 29,39 ****
+ ;;
+ esac
+
+! GOFER=/home/staff/ian/gofer/lib/standard.prelude
+ export GOFER
+ /usr/local/lib/Gofer/gofc $args
+ echo '[Compiling with gcc]'
+ gcc -o $prog -O $prog.c /usr/local/lib/Gofer/runtime.o -lm
+ strip $prog
+ rm $prog.c
+-
+--- 29,38 ----
+ ;;
+ esac
+
+! GOFER=/usr/local/lib/Gofer/standard.prelude
+ export GOFER
+ /usr/local/lib/Gofer/gofc $args
+ echo '[Compiling with gcc]'
+ gcc -o $prog -O $prog.c /usr/local/lib/Gofer/runtime.o -lm
+ strip $prog
+ rm $prog.c