[GRASS-SVN] r69098 - grass/trunk/lib/python/ctypes
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Aug 6 10:35:59 PDT 2016
Author: neteler
Date: 2016-08-06 10:35:59 -0700 (Sat, 06 Aug 2016)
New Revision: 69098
Modified:
grass/trunk/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)
Modified: grass/trunk/lib/python/ctypes/Makefile
===================================================================
--- grass/trunk/lib/python/ctypes/Makefile 2016-08-06 16:35:16 UTC (rev 69097)
+++ grass/trunk/lib/python/ctypes/Makefile 2016-08-06 17:35:59 UTC (rev 69098)
@@ -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