Fri Mar 8 20:23:23 2019 UTC ()
geography/gdal-lib: Explicitly request proj use

Without an explicit request, configure says that proj is "dynamic" and
I can't tell if it is used.  With the request, configure says that
proj is "static" and then the build proceeds to dynamically link proj
in the normal manner.

It is possible that gdal operations will behave differently now, if
reference system transformations were skipped before.


(gdt)
diff -r1.108 -r1.109 pkgsrc/geography/gdal-lib/Makefile

cvs diff -r1.108 -r1.109 pkgsrc/geography/gdal-lib/Makefile (expand / switch to unified diff)

--- pkgsrc/geography/gdal-lib/Makefile 2018/12/13 19:51:34 1.108
+++ pkgsrc/geography/gdal-lib/Makefile 2019/03/08 20:23:23 1.109
@@ -1,32 +1,34 @@ @@ -1,32 +1,34 @@
1# $NetBSD: Makefile,v 1.108 2018/12/13 19:51:34 adam Exp $ 1# $NetBSD: Makefile,v 1.109 2019/03/08 20:23:23 gdt Exp $
2 2
3PKGREVISION= 8 3PKGREVISION= 9
4.include "../../geography/gdal-lib/Makefile.common" 4.include "../../geography/gdal-lib/Makefile.common"
5PKGNAME= ${DISTNAME:S/gdal/gdal-lib/} 5PKGNAME= ${DISTNAME:S/gdal/gdal-lib/}
6 6
7MAINTAINER+= gdt@NetBSD.org 7MAINTAINER+= gdt@NetBSD.org
8#MAINTAINER= brook@nmsu.edu 8#MAINTAINER= brook@nmsu.edu
9HOMEPAGE= http://www.gdal.org/ 9HOMEPAGE= http://www.gdal.org/
10COMMENT= Translator library for raster geospatial data formats 10COMMENT= Translator library for raster geospatial data formats
11LICENSE= mit 11LICENSE= mit
12 12
13# This package intends to link against only libgeos_c, but ends up 13# This package intends to link against only libgeos_c, but ends up
14# also linking to the C++ library libgeos, apparently because of a 14# also linking to the C++ library libgeos, apparently because of a
15# libtool problem. 15# libtool problem.
16# Therefore this package needs revbumping on every geos update. 16# Therefore this package needs revbumping on every geos update.
17 17
18CONFIGURE_ARGS+= --without-python 18CONFIGURE_ARGS+= --without-python
19 19
 20CONFIGURE_ARGS+= --with-static-proj4
 21
20MAKE_FILE= GNUmakefile 22MAKE_FILE= GNUmakefile
21 23
22.include "options.mk" 24.include "options.mk"
23 25
24CHECK_PORTABILITY_SKIP+= mkbindist.sh 26CHECK_PORTABILITY_SKIP+= mkbindist.sh
25 27
26INSTALLATION_DIRS= bin include lib ${PKGMANDIR}/man1 share/gdal 28INSTALLATION_DIRS= bin include lib ${PKGMANDIR}/man1 share/gdal
27 29
28# jasper uses SIZE_MAX and friends in its headers. 30# jasper uses SIZE_MAX and friends in its headers.
29CPPFLAGS+= -D__STDC_LIMIT_MACROS 31CPPFLAGS+= -D__STDC_LIMIT_MACROS
30 32
31.include "../../devel/netcdf/buildlink3.mk" 33.include "../../devel/netcdf/buildlink3.mk"
32.include "../../devel/pcre/buildlink3.mk" 34.include "../../devel/pcre/buildlink3.mk"