aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authormi <mi@FreeBSD.org>2003-02-08 13:59:12 +0800
committermi <mi@FreeBSD.org>2003-02-08 13:59:12 +0800
commit7f9242dfbd7f641d32d82a9063586be552d104eb (patch)
tree7a367184cba579aa59a0191ca536c648c2c5f8a6 /graphics
parent9629b2745802fdb9ab5b6efea998e79ff3ea4c82 (diff)
downloadfreebsd-ports-gnome-7f9242dfbd7f641d32d82a9063586be552d104eb.tar.gz
freebsd-ports-gnome-7f9242dfbd7f641d32d82a9063586be552d104eb.tar.zst
freebsd-ports-gnome-7f9242dfbd7f641d32d82a9063586be552d104eb.zip
Make sure warnings are not fatal when compiling the C++ parts of this
package by explicitly appending -Wno-error to CXXFLAGS. This assumes, the compiler is from the gcc family, but the assumption was already there -- in the explicit -Werror appended to CFLAGS. Reported by: Dirk Meyer
Diffstat (limited to 'graphics')
-rw-r--r--graphics/libfpx/files/Makefile.bsd2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/libfpx/files/Makefile.bsd b/graphics/libfpx/files/Makefile.bsd
index 644dd0f77e8c..3bc7720446e6 100644
--- a/graphics/libfpx/files/Makefile.bsd
+++ b/graphics/libfpx/files/Makefile.bsd
@@ -33,6 +33,6 @@ LDADD += -L${LOCALBASE}/lib -ljpeg -lstdc++
CXXFLAGS+= -I${.CURDIR}/$d
.endfor
-CXXFLAGS+= -I${LOCALBASE}/include -D_UNIX
+CXXFLAGS+= -I${LOCALBASE}/include -D_UNIX -Wno-error
.include <bsd.lib.mk>