dimensions for &&& operator to work predictably.
(Darafei Praliaskouski, Arthur Lesuisse, Andrew Gierth, Raúl Marín)
+ - #4267, Enable Proj 6 deprecated APIs (Darafei Praliaskouski, Raúl Marín)
+
PostGIS 2.3.8
2018/11/24
AC_MSG_RESULT([Using user-specified proj directory: $PROJDIR])
dnl Add the include directory to PROJ_CPPFLAGS
- PROJ_CPPFLAGS="-I$PROJDIR/include"
+ PROJ_CPPFLAGS="-I$PROJDIR/include -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1"
PROJ_LDFLAGS="-L$PROJDIR/lib"
else
AC_MSG_ERROR([the --with-projdir directory "$PROJDIR" cannot be found])
fi
fi
-
dnl Check that we can find the proj_api.h header file
-CPPFLAGS_SAVE="$CPPFLAGS"
-CPPFLAGS="$PROJ_CPPFLAGS"
-AC_CHECK_HEADER([proj_api.h], [], [AC_MSG_ERROR([could not find proj_api.h - you may need to specify the directory of a PROJ.4 installation using --with-projdir])])
+AC_CHECK_HEADER([proj_api.h], [], [AC_MSG_ERROR([could not find proj_api.h - you may need to specify the directory of a PROJ.4 installation using --with-projdir])],
+[
+#define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H 1
+])
dnl Return the PROJ.4 version number
AC_PROJ_VERSION([POSTGIS_PROJ_VERSION])
#include <stdarg.h>
#include <stdio.h>
#include <stdint.h>
+#define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H 1
#include "proj_api.h"
#if defined(PJ_VERSION) && PJ_VERSION >= 490
#ifdef HAVE_STDINT_H
#include <stdio.h>
#endif
+ #define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H 1
#include "proj_api.h"
- ],
+ ],
[
- FILE *fp;
+ FILE *fp;
- fp = fopen("conftest.out", "w");
- fprintf(fp, "%d\n", PJ_VERSION);
+ fp = fopen("conftest.out", "w");
+ fprintf(fp, "%d\n", PJ_VERSION);
fclose(fp)])
],
[
#ifdef HAVE_STDINT_H
#include <stdio.h>
#endif
+ #define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H 1
#include "proj_api.h"
- ],
+ ],
[
- FILE *fp;
+ FILE *fp;
- fp = fopen("conftest.out", "w");
- fprintf(fp, "%d\n", PJ_VERSION);
+ fp = fopen("conftest.out", "w");
+ fprintf(fp, "%d\n", PJ_VERSION);
fclose(fp)])
],
[