aboutsummaryrefslogtreecommitdiff
path: root/src/emess.c
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-09-18 14:00:48 +0200
committerKristian Evers <kristianevers@gmail.com>2018-09-18 19:43:10 +0200
commit66f228cfbcf6e47effc5771a29bfaa93b0bf5eb5 (patch)
treea81f6fccec261d1b25c69e844ca067ed7870b70f /src/emess.c
parenteed0f16e8f85fff7fc8a190594fb39bc95cada74 (diff)
downloadPROJ-66f228cfbcf6e47effc5771a29bfaa93b0bf5eb5.tar.gz
PROJ-66f228cfbcf6e47effc5771a29bfaa93b0bf5eb5.zip
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
Diffstat (limited to 'src/emess.c')
-rw-r--r--src/emess.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emess.c b/src/emess.c
index 330b8412..eb2ac9d6 100644
--- a/src/emess.c
+++ b/src/emess.c
@@ -9,6 +9,10 @@
# endif
#endif
+#ifndef ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
+#define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
+#endif
+
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>