Wed Aug 4 02:52:44 2010 UTC ()
Remove -Werror.  There is a defined but not used function in the
generated lex output file.


(dmcmahill)
diff -r1.7 -r1.8 pkgsrc/devel/confuse/Makefile

cvs diff -r1.7 -r1.8 pkgsrc/devel/confuse/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/confuse/Makefile 2010/05/07 08:34:22 1.7
+++ pkgsrc/devel/confuse/Makefile 2010/08/04 02:52:44 1.8
@@ -1,25 +1,29 @@ @@ -1,25 +1,29 @@
1# $NetBSD: Makefile,v 1.7 2010/05/07 08:34:22 ahoka Exp $ 1# $NetBSD: Makefile,v 1.8 2010/08/04 02:52:44 dmcmahill Exp $
2# 2#
3 3
4DISTNAME= confuse-2.6 4DISTNAME= confuse-2.6
5CATEGORIES= devel 5CATEGORIES= devel
6MASTER_SITES= http://bzero.se/confuse/ 6MASTER_SITES= http://bzero.se/confuse/
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://www.nongnu.org/confuse/ 9HOMEPAGE= http://www.nongnu.org/confuse/
10COMMENT= Configuration file parser library 10COMMENT= Configuration file parser library
11 11
12PKG_INSTALLATION_TYPES= overwrite pkgviews 12PKG_INSTALLATION_TYPES= overwrite pkgviews
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15GNU_CONFIGURE= YES 15GNU_CONFIGURE= YES
16CONFIGURE_ARGS+= --enable-shared 16CONFIGURE_ARGS+= --enable-shared
17USE_LIBTOOL= YES 17USE_LIBTOOL= YES
18USE_PKGLOCALEDIR= YES 18USE_PKGLOCALEDIR= YES
19USE_TOOLS+= pkg-config msgfmt 19USE_TOOLS+= pkg-config msgfmt
20 20
21PKGCONFIG_OVERRIDE+= libconfuse.pc.in 21PKGCONFIG_OVERRIDE+= libconfuse.pc.in
22INSTALLATION_DIRS= lib include 22INSTALLATION_DIRS= lib include
23 23
 24# the included, but generated, lexer.c includes a
 25# definition of a function which is then not used.
 26BUILDLINK_TRANSFORM+= rm:-Werror
 27
24.include "../../devel/gettext-lib/buildlink3.mk" 28.include "../../devel/gettext-lib/buildlink3.mk"
25.include "../../mk/bsd.pkg.mk" 29.include "../../mk/bsd.pkg.mk"