summaryrefslogtreecommitdiff
path: root/lang/modula-3-lib
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>2000-01-21 05:14:21 +0000
committerJohn Polstra <jdp@FreeBSD.org>2000-01-21 05:14:21 +0000
commitfe7fa4a89d6cb9a07c16f0e2c20482bf25f13324 (patch)
tree945ee9ff24176f1a34aaf584e1dc2d46ac29220e /lang/modula-3-lib
parentFix bogus secure-keyboard startup mode for gnome-terminal. (diff)
Use byacc instead of bison.
Notes
Notes: svn path=/head/; revision=24864
Diffstat (limited to 'lang/modula-3-lib')
-rw-r--r--lang/modula-3-lib/files/patch-bw38
1 files changed, 38 insertions, 0 deletions
diff --git a/lang/modula-3-lib/files/patch-bw b/lang/modula-3-lib/files/patch-bw
new file mode 100644
index 000000000000..39d3da1ffe85
--- /dev/null
+++ b/lang/modula-3-lib/files/patch-bw
@@ -0,0 +1,38 @@
+--- m3cc/gcc/Makefile.in.orig Wed Sep 25 10:17:27 1996
++++ m3cc/gcc/Makefile.in Thu Jan 20 18:50:14 2000
+@@ -57,7 +57,7 @@
+ T_CPPFLAGS =
+
+ CC = cc
+-BISON = bison
++BISON = byacc
+ BISONFLAGS =
+ LEX = flex
+ LEXFLAGS =
+@@ -1067,7 +1067,7 @@
+ $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
+ $(srcdir)/c-parse.h: $(srcdir)/c-parse.c
+ $(srcdir)/c-parse.c: $(srcdir)/c-parse.y
+- cd $(srcdir); $(BISON) $(BISONFLAGS) -d c-parse.y -o c-parse.c
++ cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o c-parse.c c-parse.y
+ $(srcdir)/c-parse.y: c-parse.in
+ sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
+ -e "/^ifc$$/d" -e "/^end ifc$$/d" \
+@@ -1129,7 +1129,7 @@
+ c-tree.h input.h flags.h objc-act.h
+ $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/objc-parse.c
+ $(srcdir)/objc-parse.c : $(srcdir)/objc-parse.y
+- cd $(srcdir); $(BISON) $(BISONFLAGS) objc-parse.y -o objc-parse.c
++ cd $(srcdir); $(BISON) $(BISONFLAGS) -o objc-parse.c objc-parse.y
+ $(srcdir)/objc-parse.y: $(srcdir)/c-parse.in
+ sed -e "/^ifc$$/,/^end ifc$$/d" \
+ -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
+@@ -1569,7 +1569,7 @@
+
+ $(srcdir)/bi-parser.h: $(srcdir)/bi-parser.c
+ $(srcdir)/bi-parser.c: $(srcdir)/bi-parser.y
+- cd $(srcdir); $(BISON) $(BISONFLAGS) -d bi-parser.y -o bi-parser.c
++ cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o bi-parser.c bi-parser.y
+
+ bi-parser.o: $(srcdir)/bi-parser.c bi-defs.h $(build_xm_file)
+ $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \