diff options
author | agc <agc@pkgsrc.org> | 1999-08-24 12:51:24 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-08-24 12:51:24 +0000 |
commit | 9b2125c48dedf286404c6f37fb3467782912ead4 (patch) | |
tree | a5ab08bed43f17c6b2211a0ae1d8fdb617a882c0 /devel/bison | |
parent | 70382b37494d38294a4da9a703025396404de4ae (diff) | |
download | pkgsrc-9b2125c48dedf286404c6f37fb3467782912ead4.tar.gz |
Update bison to version 1.28.
Changes include:
* Should compile better now with K&R compilers.
* Added NLS.
* Fixed a problem with escaping the double quote character.
* There is now a FAQ.
Diffstat (limited to 'devel/bison')
-rw-r--r-- | devel/bison/Makefile | 4 | ||||
-rw-r--r-- | devel/bison/files/md5 | 4 | ||||
-rw-r--r-- | devel/bison/files/patch-sum | 6 | ||||
-rw-r--r-- | devel/bison/patches/patch-aa | 6 | ||||
-rw-r--r-- | devel/bison/patches/patch-ab | 6 |
5 files changed, 13 insertions, 13 deletions
diff --git a/devel/bison/Makefile b/devel/bison/Makefile index 63b4201f7bb..cb77731e33d 100644 --- a/devel/bison/Makefile +++ b/devel/bison/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 1999/04/14 21:39:02 tron Exp $ +# $NetBSD: Makefile,v 1.10 1999/08/24 12:51:24 agc Exp $ -DISTNAME= bison-1.27 +DISTNAME= bison-1.28 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=bison/} diff --git a/devel/bison/files/md5 b/devel/bison/files/md5 index 8bd86f1f7f3..7850657afb7 100644 --- a/devel/bison/files/md5 +++ b/devel/bison/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.3 1999/02/19 03:27:09 tv Exp $ +$NetBSD: md5,v 1.4 1999/08/24 12:51:25 agc Exp $ -MD5 (bison-1.27.tar.gz) = 62cdda07da0bedaf7349a12903bd207d +MD5 (bison-1.28.tar.gz) = 4afb3989f2270043c47c3daa1fa7ffab diff --git a/devel/bison/files/patch-sum b/devel/bison/files/patch-sum index 0017fc5319d..f54e34d1980 100644 --- a/devel/bison/files/patch-sum +++ b/devel/bison/files/patch-sum @@ -1,4 +1,4 @@ -$NetBSD: patch-sum,v 1.1 1999/07/09 13:50:32 agc Exp $ +$NetBSD: patch-sum,v 1.2 1999/08/24 12:51:25 agc Exp $ -MD5 (patch-aa) = 4ff4d7f8c9ee1f356ab632b9ff06b0fa -MD5 (patch-ab) = 9426c46ebe9f0c8fc666f8eec8b8bcb2 +MD5 (patch-aa) = 3edc18b2508fc13d087e3f6e80fb8684 +MD5 (patch-ab) = 0aee895505c684915d8c6d2fd38e4172 diff --git a/devel/bison/patches/patch-aa b/devel/bison/patches/patch-aa index 146cfadecf8..b8c1913584f 100644 --- a/devel/bison/patches/patch-aa +++ b/devel/bison/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.4 1999/02/19 08:55:23 frueauf Exp $ +$NetBSD: patch-aa,v 1.5 1999/08/24 12:51:25 agc Exp $ ---- bison.texinfo-orig Thu Feb 18 18:56:43 1999 -+++ bison.texinfo Thu Feb 18 18:56:09 1999 +--- doc/bison.texinfo-orig Thu Feb 18 18:56:43 1999 ++++ doc/bison.texinfo Thu Feb 18 18:56:09 1999 @@ -38,7 +38,7 @@ @ifinfo @format diff --git a/devel/bison/patches/patch-ab b/devel/bison/patches/patch-ab index ed13c6694ba..29720460ed8 100644 --- a/devel/bison/patches/patch-ab +++ b/devel/bison/patches/patch-ab @@ -1,9 +1,9 @@ -$NetBSD: patch-ab,v 1.1 1998/09/14 15:14:52 agc Exp $ +$NetBSD: patch-ab,v 1.2 1999/08/24 12:51:25 agc Exp $ Use mkstemp(3) to make temporary files. ---- files.c.orig Sun Oct 15 21:01:30 1995 -+++ files.c Mon Sep 14 15:58:01 1998 +--- src/files.c.orig Sun Oct 15 21:01:30 1995 ++++ src/files.c Mon Sep 14 15:58:01 1998 @@ -235,12 +235,64 @@ tmpattrsfile = mktemp(stringappend(tmp_base, tmp_len, "atXXXXXX")); tmptabfile = mktemp(stringappend(tmp_base, tmp_len, "taXXXXXX")); |