[GRASS-SVN] r34509 - grass/branches/develbranch_6/lib/nviz

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Nov 26 16:14:23 EST 2008


Author: neteler
Date: 2008-11-26 16:14:23 -0500 (Wed, 26 Nov 2008)
New Revision: 34509

Modified:
   grass/branches/develbranch_6/lib/nviz/Makefile
Log:
fix for GNU make < 3.81

Modified: grass/branches/develbranch_6/lib/nviz/Makefile
===================================================================
--- grass/branches/develbranch_6/lib/nviz/Makefile	2008-11-26 21:06:05 UTC (rev 34508)
+++ grass/branches/develbranch_6/lib/nviz/Makefile	2008-11-26 21:14:23 UTC (rev 34509)
@@ -11,12 +11,14 @@
 
 ifeq ($(OPENGL_WINDOWS),1)
 EXTRA_LIBS += $(OPENGLLIB) $(OPENGLULIB) -lgdi32
-else ifeq ($(OPENGL_X11),1)
+else
+ifeq ($(OPENGL_X11),1)
 EXTRA_LIBS += $(XLIBPATH) $(OPENGLLIB) $(OPENGLULIB)
 EXTRA_CFLAGS += $(XCFLAGS)
 else
 EXTRA_LIBS += $(OPENGLLIB) $(OPENGLULIB)
 endif
+endif
 
 EXTRA_INC = $(VECT_INC) $(OPENGLINC) $(TIFFINCPATH) $(FFMPEGINCPATH)
 



More information about the grass-commit mailing list