diff options
author | agc <agc> | 2000-03-20 16:55:37 +0000 |
---|---|---|
committer | agc <agc> | 2000-03-20 16:55:37 +0000 |
commit | e76bcb651d0903e0e8b7c19655246c52ceae9619 (patch) | |
tree | 8b84d7a0600c74f936f025d7fa2dfcdaa1a6d4b3 /devel | |
parent | 9c5e7371716560b1d9a4ebaf5930b1df05e2380f (diff) | |
download | pkgsrc-e76bcb651d0903e0e8b7c19655246c52ceae9619.tar.gz |
Make this package work on Solaris.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pccts/files/patch-sum | 6 | ||||
-rw-r--r-- | devel/pccts/patches/patch-aa | 15 | ||||
-rw-r--r-- | devel/pccts/patches/patch-ab | 15 | ||||
-rw-r--r-- | devel/pccts/patches/patch-ac | 21 | ||||
-rw-r--r-- | devel/pccts/patches/patch-ad | 15 |
5 files changed, 72 insertions, 0 deletions
diff --git a/devel/pccts/files/patch-sum b/devel/pccts/files/patch-sum new file mode 100644 index 00000000000..b6fec92a102 --- /dev/null +++ b/devel/pccts/files/patch-sum @@ -0,0 +1,6 @@ +$NetBSD: patch-sum,v 1.1 2000/03/20 16:55:37 agc Exp $ + +MD5 (patch-aa) = 1f5e4052f1cec2c846b617a2a7afebf4 +MD5 (patch-ab) = 0068ae8a3fbd70e0b3bdaefa18c9c979 +MD5 (patch-ac) = d853a08c02325100c4d9f87573f04151 +MD5 (patch-ad) = 078d1642ba9c41590fc12e2cf5b4073e diff --git a/devel/pccts/patches/patch-aa b/devel/pccts/patches/patch-aa new file mode 100644 index 00000000000..ebcd737edd0 --- /dev/null +++ b/devel/pccts/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2000/03/20 16:55:37 agc Exp $ + +Use gcc instead of cc, mainly for Solaris. + +--- antlr/makefile 2000/03/20 16:33:12 1.1 ++++ antlr/makefile 2000/03/20 16:33:29 +@@ -164,7 +164,7 @@ + # + # UNIX (default) + # +-CC=cc ++CC=gcc + ANTLR=../bin/antlr + DLG=../bin/dlg + OBJ_EXT=o diff --git a/devel/pccts/patches/patch-ab b/devel/pccts/patches/patch-ab new file mode 100644 index 00000000000..353cbe4922e --- /dev/null +++ b/devel/pccts/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2000/03/20 16:55:37 agc Exp $ + +Use gcc in place of cc. + +--- dlg/makefile 2000/03/20 16:10:48 1.1 ++++ dlg/makefile 2000/03/20 16:10:56 +@@ -114,7 +114,7 @@ + # + # UNIX + # +-CC=cc ++CC=gcc + ANTLR=../bin/antlr + DLG=../bin/dlg + CFLAGS= -O -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN diff --git a/devel/pccts/patches/patch-ac b/devel/pccts/patches/patch-ac new file mode 100644 index 00000000000..4c65d7025f1 --- /dev/null +++ b/devel/pccts/patches/patch-ac @@ -0,0 +1,21 @@ +$NetBSD: patch-ac,v 1.1 2000/03/20 16:55:37 agc Exp $ + +Use gcc in place of cc, mainly for Solaris. + +--- sorcerer/makefile 2000/03/20 16:13:28 1.1 ++++ sorcerer/makefile 2000/03/20 16:13:41 +@@ -16,12 +16,12 @@ + SRC = sor.c scan.c err.c main.c globals.c gen.c $(SET)/set.c hash.c look.c cpp.c + OBJ = sor.o scan.o err.o main.o globals.o gen.o set.o hash.o look.o cpp.o + GENHFILES = tokens.h mode.h stdpccts.h +-CC=cc ++CC=gcc + SHELL=/bin/sh + + all: + $(MAKE) sor +- (cd lib; $(MAKE)) ++ (cd lib; $(MAKE) "CC=${CC}") + + sor: $(OBJ) $(SRC) + $(CC) -o sor $(CFLAGS) $(OBJ) diff --git a/devel/pccts/patches/patch-ad b/devel/pccts/patches/patch-ad new file mode 100644 index 00000000000..7f95a5e374e --- /dev/null +++ b/devel/pccts/patches/patch-ad @@ -0,0 +1,15 @@ +$NetBSD: patch-ad,v 1.1 2000/03/20 16:55:37 agc Exp $ + +Use gcc in place of cc, mainly for Solaris. + +--- support/genmk/makefile 2000/03/20 16:36:13 1.1 ++++ support/genmk/makefile 2000/03/20 16:36:24 +@@ -9,7 +9,7 @@ + # see pccts/h/pcctscfg.h + #CFLAGS=-I../../h -DPC + CFLAGS=-I../../h +-CC=cc ++CC=gcc + BAG=../../bin/bag + + genmk: $(OBJ) $(SRC) ../../h/pcctscfg.h |