summaryrefslogtreecommitdiff
path: root/src/configure
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2016-07-03 00:08:18 +0200
committerChristian Pointner <equinox@anytun.org>2016-07-03 01:31:22 +0200
commit6431129558fa9e4d1b3de8fc6439594cd01d53de (patch)
treecafb483a2ba60dc8a9452d62d837e29115820607 /src/configure
parentupdated some info after moving to GIT (diff)
std::auto_ptr is deprecated sinc C++0x use boost:scoped_ptr and boost::shared_ptr as a backwards compatiple replacement
boost::bind problem with GCC-6 is still unfixed and all resolvers are commented out at the moment...
Diffstat (limited to 'src/configure')
-rwxr-xr-xsrc/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure b/src/configure
index 18f0306..fb2fcae 100755
--- a/src/configure
+++ b/src/configure
@@ -206,8 +206,8 @@ if [ -n "$ERRORS" ] && [ $EBUILD_COMPAT -ne 1 ]; then
fi
if [ $USE_CLANG -eq 0 ]; then
- CXXFLAGS='-g -Wall -O2'
- LDFLAGS='-g -Wall -O2'
+ CXXFLAGS='-g -Wall -Werror -O2'
+ LDFLAGS='-g -Wall -Werror -O2'
COMPILER='g++'
else
CXXFLAGS='-g -O2'