[GRASS-SVN] r69267 - grass/branches/releasebranch_7_0/lib/python/ctypes

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Aug 27 03:56:36 PDT 2016


Author: neteler
Date: 2016-08-27 03:56:36 -0700 (Sat, 27 Aug 2016)
New Revision: 69267

Modified:
   grass/branches/releasebranch_7_0/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_0/lib/python/ctypes/Makefile
===================================================================
--- grass/branches/releasebranch_7_0/lib/python/ctypes/Makefile	2016-08-27 10:55:42 UTC (rev 69266)
+++ grass/branches/releasebranch_7_0/lib/python/ctypes/Makefile	2016-08-27 10:56:36 UTC (rev 69267)
@@ -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