diff options
author | Nick Sayer <nsayer@FreeBSD.org> | 2001-08-21 14:15:11 +0000 |
---|---|---|
committer | Nick Sayer <nsayer@FreeBSD.org> | 2001-08-21 14:15:11 +0000 |
commit | 582554d310f45a39d8750a45b8ed860f02ad7df7 (patch) | |
tree | afab834cf16d2b87df3cf7a795408e9a0e0e2aa4 /emulators/p-interp/files/patch-aa | |
parent | Update to 0.70. (diff) |
New port for p-interp, a UCSD/Apple Pascal p-system interpreter.
Notes
Notes:
svn path=/head/; revision=46588
Diffstat (limited to 'emulators/p-interp/files/patch-aa')
-rw-r--r-- | emulators/p-interp/files/patch-aa | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/emulators/p-interp/files/patch-aa b/emulators/p-interp/files/patch-aa new file mode 100644 index 000000000000..05659efbf057 --- /dev/null +++ b/emulators/p-interp/files/patch-aa @@ -0,0 +1,31 @@ +--- Makefile.orig Sun Jun 10 13:40:04 2001 ++++ Makefile Tue Aug 21 07:07:13 2001 +@@ -61,13 +61,13 @@ + # + # + +-PREFIX=/usr/local ++#PREFIX=/usr/local + + SRCS=interpreter.c Memory.c Stack.c Sets.c Array.c native6502.c Longint.c \ + UnitIo.c Term.c Diskio.c Printer.c Search.c turtlegr.c ptrace.c + OBJS=$(SRCS:%.c=%.o) + +-X11=/opt/X11 ++X11=${X11BASE} + + X11_INCLUDE=$(X11)/include + X11_LIB=$(X11)/lib +@@ -105,10 +105,10 @@ + $(CC) -o $@ -g xturtleserver.c -I$(X11_INCLUDE) -L$(X11_LIB) -R$(X11_LIB) -lXt -lX11 -lm + + ucsd: $(OBJS) +- $(CC) -o $@ $(OBJS) -lncurses_g -lm ++ $(CC) -o $@ $(OBJS) -lncurses -lm + + svolio: svolio.o Diskio.o Memory.o +- $(CC) -o $@ $+ -lcurses ++ $(CC) -o $@ $> -lcurses + + depend: + $(MAKEDEPEND) -DMAKEDEPEND $(INCLUDES) $(DEFINES) $(SRCS) svolio.c svolcvt.c xturtleserver.c |