summaryrefslogtreecommitdiff
path: root/devel/bison/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/bison/files')
-rw-r--r--devel/bison/files/patch-getargs.c14
-rw-r--r--devel/bison/files/patch-intl::Makefile.in23
-rw-r--r--devel/bison/files/patch-reader.c23
3 files changed, 0 insertions, 60 deletions
diff --git a/devel/bison/files/patch-getargs.c b/devel/bison/files/patch-getargs.c
index 8bfc689dd9d1..e69de29bb2d1 100644
--- a/devel/bison/files/patch-getargs.c
+++ b/devel/bison/files/patch-getargs.c
@@ -1,14 +0,0 @@
---- src/getargs.c.orig Wed Jan 23 05:12:17 2002
-+++ src/getargs.c Sat Feb 16 19:47:24 2002
-@@ -36,4 +36,5 @@
- int graph_flag = 0;
- int trace_flag = 0;
-+int broken_undeftoken_init;
-
- const char *skeleton = NULL;
-@@ -50,4 +51,5 @@
-
- /* Parser. */
-+ {"broken-undeftoken-init", 0, &broken_undeftoken_init, 1},
- {"skeleton", required_argument, 0, 'S'},
- {"debug", no_argument, 0, 't'},
diff --git a/devel/bison/files/patch-intl::Makefile.in b/devel/bison/files/patch-intl::Makefile.in
deleted file mode 100644
index adfc8cd770de..000000000000
--- a/devel/bison/files/patch-intl::Makefile.in
+++ /dev/null
@@ -1,23 +0,0 @@
-
-$FreeBSD$
-
---- intl/Makefile.in 2002/04/30 08:12:35 1.1
-+++ intl/Makefile.in 2002/04/30 08:13:50
-@@ -52,7 +52,7 @@
- YFLAGS = --name-prefix=__gettext
-
- DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \
---DLIBDIR=\"$(libdir)\" -DIN_LIBINTL @DEFS@
-+-DLIBDIR=\"$(prefix)/libdata\" -DIN_LIBINTL @DEFS@
- CPPFLAGS = @CPPFLAGS@
- CFLAGS = @CFLAGS@
- LDFLAGS = @LDFLAGS@
-@@ -152,7 +152,7 @@
- else \
- : ; \
- fi
-- if test '@USE_INCLUDED_LIBINTL@' = yes; then \
-+ if test no = yes; then \
- test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \
- temp=$(DESTDIR)$(libdir)/t-charset.alias; \
- dest=$(DESTDIR)$(libdir)/charset.alias; \
diff --git a/devel/bison/files/patch-reader.c b/devel/bison/files/patch-reader.c
deleted file mode 100644
index 92c21a13cc66..000000000000
--- a/devel/bison/files/patch-reader.c
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/reader.c.orig Thu Feb 7 09:12:44 2002
-+++ src/reader.c Sat Feb 16 19:49:02 2002
-@@ -34,6 +34,8 @@
- #include "reader.h"
- #include "conflicts.h"
-
-+extern int broken_undeftoken_init;
-+
- typedef struct symbol_list
- {
- struct symbol_list *next;
-@@ -1978,7 +1979,10 @@
- It is always token number 2. */
- undeftoken = getsym ("$undefined.");
- undeftoken->class = token_sym;
-- undeftoken->user_token_number = 2;
-+ /* XXX ``broken_undeftoken_init'' makes Bison 1.29 bug-compatable
-+ with Bison 1.25. FreeBSD depends on this behavior when compiling
-+ EGCS-1.1.2's cc1plus. */
-+ undeftoken->user_token_number = broken_undeftoken_init ? 0 : 2;
-
- /* Read the declaration section. Copy %{ ... %} groups to
- TABLE_OBSTACK and FDEFINES file. Also notice any %token, %left,