diff options
Diffstat (limited to 'lang/icon/patches/patch-an')
-rw-r--r-- | lang/icon/patches/patch-an | 55 |
1 files changed, 48 insertions, 7 deletions
diff --git a/lang/icon/patches/patch-an b/lang/icon/patches/patch-an index b5672f999f7..ca6b9e47f92 100644 --- a/lang/icon/patches/patch-an +++ b/lang/icon/patches/patch-an @@ -1,8 +1,49 @@ -$NetBSD: patch-an,v 1.2 1998/08/07 11:09:07 agc Exp $ +$NetBSD: patch-an,v 1.3 2001/06/25 18:00:16 jtb Exp $ ---- /dev/null Wed Oct 1 17:23:30 1997 -+++ config/unix/intel_netbsd/paths.h Wed Oct 1 17:32:26 1997 -@@ -0,0 +1,3 @@ -+#define RootPath "/usr/local" -+#define IcontPath "/usr/local/lib/icon/icont" -+#define IconxPath "/usr/local/lib/icon/iconx" +--- ipl/Makefile.orig Fri Jun 8 19:48:36 2001 ++++ ipl/Makefile +@@ -5,16 +5,16 @@ + + Ilib: ../bin/libcfunc.so + ../bin/libcfunc.so: ../bin/icont +- cp incl/*.icn gincl/*.icn cfuncs/icall.h ../lib +- cd procs; LPATH= ../../bin/icont -usc *.icn; mv *.u? ../../lib +- cd gprocs; LPATH= ../../bin/icont -usc *.icn; mv *.u? ../../lib ++ cp incl/*.icn gincl/*.icn cfuncs/icall.h ../lib/icon ++ cd procs; LPATH= ../../bin/icont -usc *.icn; mv *.u? ../../lib/icon ++ cd gprocs; LPATH= ../../bin/icont -usc *.icn; mv *.u? ../../lib/icon + cd cfuncs; LPATH= $(MAKE) ICONT=../../bin/icont +- mv cfuncs/*.u? ../lib +- mv cfuncs/libcfunc.so ../bin ++ mv cfuncs/*.u? ../lib/icon ++ mv cfuncs/libcfunc.so ../lib/icon + + + # Make selected program binaries (platform-dependent icode) for ../bin, +-# given that ../lib is ready ++# given that ../lib/icon is ready + + Ibin: ../bin/ipatch + ../bin/ipatch: ../bin/icont +@@ -22,18 +22,18 @@ + + + # Make a full set of program binaries (not usually done) in ./iexe, +-# given that ../lib is ready ++# given that ../lib/icon is ready + + Iexe: + rm -f iexe/* + MAKE=$(MAKE) ./BuildExe + + +-# Check for undefined identifiers in ../lib. ++# Check for undefined identifiers in ../lib/icon. + # (A few are expected: references to Mp, program, init, goal). + + Undef: +- cd ../lib; for f in *.u2; do (echo $$f; icont -us -fs $$f); done ++ cd ../lib/icon; for f in *.u2; do (echo $$f; icont -us -fs $$f); done + + + # Check for stray files |