summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2016-07-03 14:15:26 +0200
committerChristian Pointner <equinox@spreadspace.org>2016-07-03 14:15:26 +0200
commitef6c17f7bd2a38b9988d3e36dc50a8c993b46cc2 (patch)
treef2ef1e03b54828c46742f6c1abb602c6643c4208
parentfixed win build scripts (diff)
weakend -Werror a little
-rw-r--r--.gitignore2
-rwxr-xr-xsrc/configure2
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 7b871a2..80bc480 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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