summaryrefslogtreecommitdiff
path: root/x11/libunique
diff options
context:
space:
mode:
authorjoerg <joerg>2011-08-02 17:11:40 +0000
committerjoerg <joerg>2011-08-02 17:11:40 +0000
commitd9f286ecb09680f9bd04100c194c03138b3be4d2 (patch)
tree37922d63ab6ed0ca33133a0e4751964eda246f49 /x11/libunique
parent5a0ed4a5ad40bf1ee726cc1439d7f0296f7de4a8 (diff)
downloadpkgsrc-d9f286ecb09680f9bd04100c194c03138b3be4d2.tar.gz
Don't fail on tautologic code when compiling with Clang
Diffstat (limited to 'x11/libunique')
-rw-r--r--x11/libunique/Makefile8
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"