1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/lang/squeak1/files/patch-aa
Steve Price a24830d8ea Update to version 1.31.
PR:		9159
Submitted by:	maintainer
1998-12-23 04:32:33 +00:00

43 lines
1.1 KiB
Plaintext

*** /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
***************
*** 27,33 ****
# platform identification
! 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])
--- 27,34 ----
# platform identification
! #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)