From 66f228cfbcf6e47effc5771a29bfaa93b0bf5eb5 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Tue, 18 Sep 2018 14:00:48 +0200 Subject: Only allow usage of proj_api.h if explicit consent was given We want to flag that proj_api_h is now deprecated. With this commit it is now mandatory to #define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H before proj_api.h can be included. proj_api.h is used internally a bunch of places. Therefore ACCEPT_USE_OF_DEPRECATED_PROJ_API_H has been defined in projects.h and a few other necessary files to ensure that PROJ compiles. Closes #836 --- scripts/cppcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/cppcheck.sh') diff --git a/scripts/cppcheck.sh b/scripts/cppcheck.sh index f1e19f81..bac95847 100755 --- a/scripts/cppcheck.sh +++ b/scripts/cppcheck.sh @@ -23,7 +23,7 @@ for dirname in ${TOPDIR}/src; do echo "Running cppcheck on $dirname... (can be long)" if ! cppcheck --inline-suppr --template='{file}:{line},{severity},{id},{message}' \ --enable=all --inconclusive --std=posix \ - -DCPPCHECK \ + -DCPPCHECK -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H\ "$dirname" \ -j 8 >>${LOG_FILE} 2>&1 ; then echo "cppcheck failed" -- cgit v1.2.3