diff options
author | marino <marino@pkgsrc.org> | 2011-12-02 20:50:31 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2011-12-02 20:50:31 +0000 |
commit | 0a77bffbcade87b12534c74747ff9f206e9c6fc0 (patch) | |
tree | d98a8f615cbc6b3306d0b7b4a76922570a7e07f1 /devel/cqual/Makefile | |
parent | 37c25a4c16e55a46eecd0047034232c999854529 (diff) | |
download | pkgsrc-0a77bffbcade87b12534c74747ff9f206e9c6fc0.tar.gz |
devel/cqual: Fix for modern gcc
There are several unreferenced functions in cqual which a modern gcc
complains about using -Werror. After trying to fix a few of them, it
was easier just to stop considering warnings as errors.
Diffstat (limited to 'devel/cqual/Makefile')
-rw-r--r-- | devel/cqual/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/cqual/Makefile b/devel/cqual/Makefile index fb12eda1ac6..56fa5d8d086 100644 --- a/devel/cqual/Makefile +++ b/devel/cqual/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2010/01/29 17:53:56 joerg Exp $ +# $NetBSD: Makefile,v 1.19 2011/12/02 20:50:31 marino Exp $ # DISTNAME= cqual-0.991 @@ -19,6 +19,7 @@ USE_TOOLS+= gmake perl:run bison m4 REPLACE_PERL+= bin/* INFO_FILES= yes +BUILDLINK_TRANSFORM= rm:-Werror INSTALLATION_DIRS= share/doc/cqual share/examples/cqual .include "options.mk" |