diff options
author | Christian Pointner <equinox@spreadspace.org> | 2016-07-03 14:15:26 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2016-07-03 14:15:26 +0200 |
commit | ef6c17f7bd2a38b9988d3e36dc50a8c993b46cc2 (patch) | |
tree | f2ef1e03b54828c46742f6c1abb602c6643c4208 | |
parent | fixed win build scripts (diff) |
weakend -Werror a little
-rw-r--r-- | .gitignore | 2 | ||||
-rwxr-xr-x | src/configure | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -3,9 +3,11 @@ vendor contrib/boost-w32 contrib/openssl-w32 contrib/anytun-w32 +contrib/anytun-*-w32.zip contrib/boost-w64 contrib/openssl-w64 contrib/anytun-w64 +contrib/anytun-*-w64.zip doc/anytun.8.xml doc/anyrtpproxy.8.xml doc/anytun-config.8.xml diff --git a/src/configure b/src/configure index fb2fcae..3b6e57d 100755 --- a/src/configure +++ b/src/configure @@ -206,7 +206,7 @@ if [ -n "$ERRORS" ] && [ $EBUILD_COMPAT -ne 1 ]; then fi if [ $USE_CLANG -eq 0 ]; then - CXXFLAGS='-g -Wall -Werror -O2' + CXXFLAGS='-g -Wall -Werror -Wno-error=unused-variable -O2' LDFLAGS='-g -Wall -Werror -O2' COMPILER='g++' else |