summaryrefslogtreecommitdiff
path: root/devel/bison-devel
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-12-11 01:58:33 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-12-11 01:58:33 +0000
commitfd710dff4ab2fa2333743657e7b852ebd3a5af6f (patch)
tree981b4d25372969764f8229a08994c9bcdb04bdf1 /devel/bison-devel
parentRemove neoupdate (diff)
This PORTEPOCH for life crap is stupid.
Back out the downgrade, I would have never agreed to it if I had know... This leaves a window of downgradededness 18 hours -- people can just live with that.
Notes
Notes: svn path=/head/; revision=51321
Diffstat (limited to 'devel/bison-devel')
-rw-r--r--devel/bison-devel/Makefile5
-rw-r--r--devel/bison-devel/distinfo2
-rw-r--r--devel/bison-devel/files/patch-getargs.c28
-rw-r--r--devel/bison-devel/files/patch-reader.c33
4 files changed, 34 insertions, 34 deletions
diff --git a/devel/bison-devel/Makefile b/devel/bison-devel/Makefile
index ab0f25b2a7db..233ff0571062 100644
--- a/devel/bison-devel/Makefile
+++ b/devel/bison-devel/Makefile
@@ -7,8 +7,7 @@
#
PORTNAME= bison
-PORTVERSION= 1.28
-PORTEPOCH= 1
+PORTVERSION= 1.30
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= bison
@@ -21,7 +20,7 @@ GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -lintl" \
MAKEINFO="makeinfo --no-split"
-CONFIGURE_TARGET= --target=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
MAN1= bison.1
diff --git a/devel/bison-devel/distinfo b/devel/bison-devel/distinfo
index bf42a21c5426..39add6c3c6a8 100644
--- a/devel/bison-devel/distinfo
+++ b/devel/bison-devel/distinfo
@@ -1 +1 @@
-MD5 (bison-1.28.tar.gz) = 4afb3989f2270043c47c3daa1fa7ffab
+MD5 (bison-1.30.tar.gz) = 9f86a4166cf9146d0db1ec9a663d7d81
diff --git a/devel/bison-devel/files/patch-getargs.c b/devel/bison-devel/files/patch-getargs.c
index a08818ef5ca3..60c244d3ca77 100644
--- a/devel/bison-devel/files/patch-getargs.c
+++ b/devel/bison-devel/files/patch-getargs.c
@@ -1,18 +1,18 @@
---- src/getargs.c.orig Mon Jun 14 15:19:05 1999
-+++ src/getargs.c Mon Jan 17 03:38:56 2000
-@@ -31,6 +31,7 @@
- int noparserflag = 0;
- int toknumflag = 0;
- int rawtoknumflag = 0;
+--- src/getargs.c.orig Sun Sep 23 02:08:44 2001
++++ src/getargs.c Sun Sep 23 02:09:27 2001
+@@ -35,6 +35,7 @@
+ int statistics_flag = 0;
+ int yacc_flag = 0; /* for -y */
+ int graph_flag = 0;
+int broken_undeftoken_init;
- char *spec_name_prefix; /* for -p. */
- char *spec_file_prefix; /* for -b. */
- extern int fixed_outfiles;/* for -y */
-@@ -44,6 +45,7 @@
- struct option longopts[] =
+ const char *skeleton = NULL;
+
+@@ -42,6 +43,7 @@
+ const char *shortopts = "yvgdhrltknVo:b:p:S:";
+ static struct option longopts[] =
{
+ {"broken-undeftoken-init", 0, &broken_undeftoken_init, 1},
- {"debug", 0, &debugflag, 1},
- {"defines", 0, &definesflag, 1},
- {"file-prefix", 1, 0, 'b'},
+ /* Operation modes. */
+ {"help", no_argument, 0, 'h'},
+ {"version", no_argument, 0, 'V'},
diff --git a/devel/bison-devel/files/patch-reader.c b/devel/bison-devel/files/patch-reader.c
index 29e1146a7e1d..4e0460a0ebe5 100644
--- a/devel/bison-devel/files/patch-reader.c
+++ b/devel/bison-devel/files/patch-reader.c
@@ -1,22 +1,23 @@
---- src/reader.c.orig Mon Jun 14 15:19:05 1999
-+++ src/reader.c Mon Jan 17 03:38:56 2000
-@@ -44,6 +44,7 @@
- int rline_allocated;
+--- src/reader.c.orig Sun Sep 23 02:10:06 2001
++++ src/reader.c Sun Sep 23 02:08:08 2001
+@@ -65,6 +65,8 @@
- extern char *program_name;
+ static bucket *errtoken;
+ static bucket *undeftoken;
++
+extern int broken_undeftoken_init;
- extern int definesflag;
- extern int nolinesflag;
- extern int noparserflag;
-@@ -199,7 +200,10 @@
- /* it is always token number 2. */
- undeftoken = getsym("$undefined.");
- undeftoken->class = STOKEN;
+
+
+ /*===================\
+@@ -1959,7 +1961,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.28 bug-compatable
++ /* 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 ftable and fdefines file.
- Also notice any %token, %left, etc. found there. */
- if (noparserflag)
+
+ /* Read the declaration section. Copy %{ ... %} groups to
+ TABLE_OBSTACK and FDEFINES file. Also notice any %token, %left,