diff options
author | mi <mi@FreeBSD.org> | 2008-01-27 07:43:36 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2008-01-27 07:43:36 +0800 |
commit | 057eac6698a56ddbea8c936915582a939954276f (patch) | |
tree | f0eb656c341a09582cb02a5b5bb528c707ba2238 /graphics/libfpx | |
parent | f09896c1bb0caabb1fb86e243d692a2acbcebbd0 (diff) | |
download | freebsd-ports-gnome-057eac6698a56ddbea8c936915582a939954276f.tar.gz freebsd-ports-gnome-057eac6698a56ddbea8c936915582a939954276f.tar.zst freebsd-ports-gnome-057eac6698a56ddbea8c936915582a939954276f.zip |
When WARNS is set in a Makefile even to 1, the flag ``-Wsystem-headers''
is added to the list of compiler's warning-flags. This triggers a
warning like:
/usr/include/c++/4.2/bits/basic_ios.h:156: warning: empty body in an if-statement
in g++42. When this compiler is used, where NO_WERROR is set, the port
fails to build, as warnings are treated as errors. This, pretty much,
means, that NO C++ code can currently be compiled with WARNS set to
anything on FreeBSD.
Work-around the deficiency for now by removing the ``-Wsystem-headers''
from CXXFLAGS after including bsd.lib.mk. This fixes graphics/libfpx on
8.x as well as allows the port to be built by gcc-4.2 on 6.x and 5.x.
Continuously reminded of by: pav
Diffstat (limited to 'graphics/libfpx')
-rw-r--r-- | graphics/libfpx/files/Makefile.bsd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/libfpx/files/Makefile.bsd b/graphics/libfpx/files/Makefile.bsd index ceb593dbb099..985f3c7a43ba 100644 --- a/graphics/libfpx/files/Makefile.bsd +++ b/graphics/libfpx/files/Makefile.bsd @@ -41,3 +41,7 @@ CXXFLAGS+= -I${.CURDIR}/$d CXXFLAGS+= -I${LOCALBASE}/include -D_UNIX .include <bsd.lib.mk> + +# Work-around the bug in g++4.2's system header: +# /usr/include/c++/4.2/bits/basic_ios.h:156: warning: empty body in an if-statement +CXXFLAGS:= ${CXXFLAGS:N-Wsystem-headers} |