[GRASS-SVN] r69266 - grass/branches/releasebranch_7_2/lib/python/ctypes
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Aug 27 03:55:43 PDT 2016
Author: neteler
Date: 2016-08-27 03:55:42 -0700 (Sat, 27 Aug 2016)
New Revision: 69266
Modified:
grass/branches/releasebranch_7_2/lib/python/ctypes/Makefile
Log:
ctypes: only build the Python ctypes wrappers for the OGSF and NVIZ libraries when USE_OPENGL is set (https://lists.osgeo.org/pipermail/grass-user/2016-July/074539.html) (trunk, r69098)
Modified: grass/branches/releasebranch_7_2/lib/python/ctypes/Makefile
===================================================================
--- grass/branches/releasebranch_7_2/lib/python/ctypes/Makefile 2016-08-27 10:54:05 UTC (rev 69265)
+++ grass/branches/releasebranch_7_2/lib/python/ctypes/Makefile 2016-08-27 10:55:42 UTC (rev 69266)
@@ -5,7 +5,10 @@
include $(MODULE_TOPDIR)/include/Make/Other.make
MODULES = date gis raster gmath proj imagery vector rtree display stats \
- dbmi raster3d arraystats cluster vedit ogsf nviz segment rowio temporal
+ dbmi raster3d arraystats cluster vedit segment rowio temporal
+ifneq ($(USE_OPENGL),)
+MODULES += ogsf nviz
+endif
date_LIBS = $(DATETIMELIB)
gis_LIBS = $(GISLIB)
More information about the grass-commit
mailing list