diff options
author | joerg <joerg@pkgsrc.org> | 2011-08-02 17:11:40 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2011-08-02 17:11:40 +0000 |
commit | 9a516690e48906d7a7ce56548577965d88461cdd (patch) | |
tree | 37922d63ab6ed0ca33133a0e4751964eda246f49 /x11 | |
parent | 1ad8376cd30d4ff6d2896155306c9ab921bbad17 (diff) | |
download | pkgsrc-9a516690e48906d7a7ce56548577965d88461cdd.tar.gz |
Don't fail on tautologic code when compiling with Clang
Diffstat (limited to 'x11')
-rw-r--r-- | x11/libunique/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11/libunique/Makefile b/x11/libunique/Makefile index 3e65a97b40b..36bab6af1a6 100644 --- a/x11/libunique/Makefile +++ b/x11/libunique/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2011/04/22 13:42:40 obache Exp $ +# $NetBSD: Makefile,v 1.14 2011/08/02 17:11:40 joerg Exp $ # DISTNAME= libunique-1.1.6 @@ -23,6 +23,12 @@ PKGCONFIG_OVERRIDE+= unique.pc.in # for more detail, see also PR#41475. TOOLS_NOOP+= gtkdoc-rebase +.include "../../mk/compiler.mk" + +.if !empty(PKGSRC_COMPILER:Mclang) +CFLAGS+= -Wno-tautological-compare +.endif + .include "options.mk" .include "../../x11/gtk2/buildlink3.mk" |