summaryrefslogtreecommitdiff
path: root/lang/squeak1/files
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1998-12-23 04:32:33 +0000
committerSteve Price <steve@FreeBSD.org>1998-12-23 04:32:33 +0000
commita24830d8ea8867429389abfcb953e956e861d13a (patch)
treebb5115d3d38e729c0b8ae7e3e8e934a23c13046e /lang/squeak1/files
parentMark BROKEN, repo copied. (diff)
Update to version 1.31.
PR: 9159 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=15521
Diffstat (limited to 'lang/squeak1/files')
-rw-r--r--lang/squeak1/files/patch-aa54
1 files changed, 36 insertions, 18 deletions
diff --git a/lang/squeak1/files/patch-aa b/lang/squeak1/files/patch-aa
index 3eb64bcdf6ec..c5a10c35319c 100644
--- a/lang/squeak1/files/patch-aa
+++ b/lang/squeak1/files/patch-aa
@@ -1,24 +1,42 @@
-*** /usr/ports/lang/squeak/work/Squeak-1.18/src/Makefile Sun Jan 19 00:29:00 1997
---- Makefile Fri Apr 25 18:12:29 1997
+*** /usr/ports/lang/squeak1/work/1.31/src/GNUmakefile.conf Thu Mar 5 15:42:07 1998
+--- src/GNUmakefile.conf Mon Dec 21 01:01:59 1998
***************
-*** 23,32 ****
+*** 27,33 ****
- CC= gcc
- LD= gcc
-! CCFLAGS= -O3 -funroll-loops -g
- LDFLAGS=
-! LIBS= -lX11 -lm
-! INCLUDE=
+ # platform identification
- # top-level targets -- default is to build just the VM
+! UTSMAC:= $(shell arch | tr [A-Z] [a-z])
+ UTSSYS:= $(shell uname -s | tr [A-Z] [a-z] | sed 's/-//g')
+ UTSREL:= $(shell uname -r | tr [A-Z] [a-z])
---- 23,32 ----
+--- 27,34 ----
- CC= gcc
- LD= gcc
-! CCFLAGS= -O2 -funroll-loops
- LDFLAGS=
-! LIBS= -L${X11BASE}/lib -lX11 -lm
-! INCLUDE= -I${X11BASE}/include
+ # platform identification
- # top-level targets -- default is to build just the VM
+! #UTSMAC:= $(shell arch | tr [A-Z] [a-z])
+! UTSMAC:= $(shell uname -m | tr [A-Z] [a-z])
+ UTSSYS:= $(shell uname -s | tr [A-Z] [a-z] | sed 's/-//g')
+ UTSREL:= $(shell uname -r | tr [A-Z] [a-z])
+
+***************
+*** 52,57 ****
+--- 53,71 ----
+ # #
+ # START OF CONFIGURATION SECTION #
+ # #
++ ifeq ($(SYSTEM), freebsd)
++ CC= gcc
++ CCFLAGS:= -O3 -fomit-frame-pointer $(PROFILE)
++ INCDIRS:= -I/usr/X11R6/include
++ LDO= ld -r
++ LD= gcc
++ LDFLAGS:= $(PROFILE)
++ LIBDIRS= -L/usr/X11R6/lib
++ LIBS= -lX11 -lXext -lm
++ GNU= gnu-
++ GAWK= awk
++ endif
++
+ ifeq ($(SYSTEM), linux)
+ CC= gcc
+ CCFLAGS:= -O2 -g $(PROFILE)