Skip to content

Commit

Permalink
ignore warnings older compilers don't know
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Mar 10, 2016
1 parent a1ffbe1 commit 821c4d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/travis-common.sh
Expand Up @@ -82,17 +82,17 @@ config_override () {
configure () {
if enabled ${COVERAGE}; then
./configure "$@" PGSQL2SQLITE=False SVG2PNG=False SVG_RENDERER=False \
COVERAGE=True DEBUG=True
COVERAGE=True DEBUG=True WARNING_CXXFLAGS="-Wno-unknown-warning-option"
elif enabled ${MASON_PUBLISH}; then
export MASON_NAME=mapnik
export MASON_VERSION=latest
export MASON_LIB_FILE=lib/libmapnik-wkt.a
source ./.mason/mason.sh
./configure "$@" PREFIX=${MASON_PREFIX} \
PATH_REPLACE='' MAPNIK_BUNDLED_SHARE_DIRECTORY=True \
RUNTIME_LINK='static'
RUNTIME_LINK='static' WARNING_CXXFLAGS="-Wno-unknown-warning-option"
else
./configure "$@"
./configure "$@" WARNING_CXXFLAGS="-Wno-unknown-warning-option"
fi
# print final config values, sorted and indented
sort -sk1,1 ./config.py | sed -e 's/^/ /'
Expand Down

0 comments on commit 821c4d2

Please sign in to comment.