diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-15 22:19:19 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-15 22:19:19 +0000 |
commit | a9f7f4d174a4ccd033e68859aabc407beee009b0 (patch) | |
tree | 285b9cdeba6528070879aae32ac54c8adc0b077b /devel | |
parent | 8774e67aa87c27bed79a9a939f9a80c938187161 (diff) | |
download | pkgsrc-a9f7f4d174a4ccd033e68859aabc407beee009b0.tar.gz |
Fix errno. Require bison.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/uno/Makefile | 4 | ||||
-rw-r--r-- | devel/uno/distinfo | 3 | ||||
-rw-r--r-- | devel/uno/patches/patch-aa | 13 |
3 files changed, 18 insertions, 2 deletions
diff --git a/devel/uno/Makefile b/devel/uno/Makefile index 753cb9daaea..6dae372d9a5 100644 --- a/devel/uno/Makefile +++ b/devel/uno/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/11/20 12:43:44 rillig Exp $ +# $NetBSD: Makefile,v 1.4 2005/12/15 22:19:19 joerg Exp $ # DISTNAME= uno_v28 @@ -13,6 +13,8 @@ COMMENT= Tool for source code analysis WRKSRC= ${WRKDIR}/Uno/src MAKEFILE= makefile +USE_TOOLS+= bison + .include "../../mk/bsd.prefs.mk" .if ${MACHINE_ARCH} == "i386" diff --git a/devel/uno/distinfo b/devel/uno/distinfo index faf77923e5c..13d75564232 100644 --- a/devel/uno/distinfo +++ b/devel/uno/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1 2005/11/15 20:55:47 shannonjr Exp $ +$NetBSD: distinfo,v 1.2 2005/12/15 22:19:19 joerg Exp $ SHA1 (uno_v28.tar.gz) = a15812a7d7ba72d6d3df283e28265c4ca2761c8f RMD160 (uno_v28.tar.gz) = ea12259c130ab61e7147a4f51c73d1c1ad056c55 Size (uno_v28.tar.gz) = 236562 bytes +SHA1 (patch-aa) = 111afbf8fbfdbb1d86737ebead7dbbf2d18d7af3 diff --git a/devel/uno/patches/patch-aa b/devel/uno/patches/patch-aa new file mode 100644 index 00000000000..6eabdc37255 --- /dev/null +++ b/devel/uno/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2005/12/15 22:19:19 joerg Exp $ + +--- c_gram.y.orig 2005-12-15 22:13:27.000000000 +0000 ++++ c_gram.y +@@ -40,7 +40,7 @@ int yydebug = 1; + + int structfieldflag; + +-extern int errno, err_cnt, Verbose; ++extern int err_cnt, Verbose; + extern char *progname; + extern int yylex(YYSTYPE *lvalp); + extern void name_scope(context_t *, char *, int); |