diff options
author | jlam <jlam@pkgsrc.org> | 2003-02-05 03:57:13 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-02-05 03:57:13 +0000 |
commit | e73435b077c16136903284654159524effa6b9b4 (patch) | |
tree | 2220e88c9bb516a88dbe97348a6ea6f22041ca06 /textproc/expat/Makefile | |
parent | 611871b0ba3fea90798d05171361c74cf60f7029 (diff) | |
download | pkgsrc-e73435b077c16136903284654159524effa6b9b4.tar.gz |
Bump PKGREVISION of textproc/expat to 1: fix an obvious C bug where types
should be declared/defined before they are used. This should fix errors
of the form:
.../expat.h:657: use of enum `XML_Status' without previous declaration
.../expat.h:736: multiple definition of `enum XML_Status'
Diffstat (limited to 'textproc/expat/Makefile')
-rw-r--r-- | textproc/expat/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/expat/Makefile b/textproc/expat/Makefile index e3cbfa980f9..3178731ebef 100644 --- a/textproc/expat/Makefile +++ b/textproc/expat/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2003/01/30 10:49:13 drochner Exp $ +# $NetBSD: Makefile,v 1.9 2003/02/05 03:57:13 jlam Exp $ # DISTNAME= expat-1.95.6 +PKGREVISION= 1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=expat/} |