diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-05-09 02:28:38 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-05-11 09:36:46 +0200 |
commit | 9b34cc0bcd9f223ba836882c9d08e1a3f95560bc (patch) | |
tree | 7b8ab2686ac04fe841e5bff1946c0728f7272631 /package/wvstreams | |
parent | ff24e7f040b2d2b805699bc8ead7bf82f1d4f7dc (diff) | |
download | buildroot-novena-9b34cc0bcd9f223ba836882c9d08e1a3f95560bc.tar.gz buildroot-novena-9b34cc0bcd9f223ba836882c9d08e1a3f95560bc.zip |
wvstreams: disable warnings
During the compilation of wvstreams, a number of strict aliasing
related warnings are shown, making the build quite noisy. Turn
warnings off using the --disable-warnings option.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/wvstreams')
-rw-r--r-- | package/wvstreams/wvstreams.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/wvstreams/wvstreams.mk b/package/wvstreams/wvstreams.mk index 341fc095b..837c4495b 100644 --- a/package/wvstreams/wvstreams.mk +++ b/package/wvstreams/wvstreams.mk @@ -18,7 +18,11 @@ WVSTREAMS_MAKE = $(MAKE1) # Needed to work around problem with wvassert.h WVSTREAMS_CONF_OPT += CPPFLAGS=-DNDEBUG -WVSTREAMS_CONF_OPT += --with-openssl --with-zlib --without-pam +WVSTREAMS_CONF_OPT += \ + --with-openssl \ + --with-zlib \ + --without-pam \ + --disable-warnings ifeq ($(BR2_PACKAGE_DBUS),y) WVSTREAMS_DEPENDENCIES += dbus |