[GRASS-SVN] r59984 - grass/branches/develbranch_6/vector
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Apr 30 07:27:55 PDT 2014
Author: neteler
Date: 2014-04-30 07:27:55 -0700 (Wed, 30 Apr 2014)
New Revision: 59984
Modified:
grass/branches/develbranch_6/vector/Makefile
Log:
v.buffer: compile only if GEOS present
Modified: grass/branches/develbranch_6/vector/Makefile
===================================================================
--- grass/branches/develbranch_6/vector/Makefile 2014-04-30 14:27:51 UTC (rev 59983)
+++ grass/branches/develbranch_6/vector/Makefile 2014-04-30 14:27:55 UTC (rev 59984)
@@ -2,7 +2,6 @@
MODULE_TOPDIR = ..
SUBDIRS = \
- v.buffer2 \
v.build \
v.build.polylines \
v.category \
@@ -80,12 +79,20 @@
v.vect.stats \
v.voronoi \
v.what \
- v.what.rast\
+ v.what.rast \
v.vol.rst \
lidar
include $(MODULE_TOPDIR)/include/Make/Platform.make
+GEOSBASED=v.buffer2
+
+#compile if GEOS present:
+
+ifneq ($(USE_GEOS),)
+ SUBDIRS += $(GEOSBASED)
+endif
+
OGRBASED = v.out.ogr v.in.ogr v.external
#compile if OGR present:
More information about the grass-commit
mailing list