[GRASS-SVN] r35548 - in grass/branches/releasebranch_6_4: imagery/i.ortho.photo/libes lib/arraystats lib/cdhc lib/cluster lib/driver lib/gpde lib/imagery lib/nviz lib/ogsf lib/proj lib/rst/interp_float lib/stats lib/symbol lib/vector/Vlib lib/vector/transform lib/vector/vedit raster/r.li/r.li.daemon raster/simwe/simlib

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Jan 23 06:27:43 EST 2009


Author: neteler
Date: 2009-01-23 06:27:43 -0500 (Fri, 23 Jan 2009)
New Revision: 35548

Modified:
   grass/branches/releasebranch_6_4/imagery/i.ortho.photo/libes/Makefile
   grass/branches/releasebranch_6_4/lib/arraystats/Makefile
   grass/branches/releasebranch_6_4/lib/cdhc/Makefile
   grass/branches/releasebranch_6_4/lib/cluster/Makefile
   grass/branches/releasebranch_6_4/lib/driver/Makefile
   grass/branches/releasebranch_6_4/lib/gpde/Makefile
   grass/branches/releasebranch_6_4/lib/imagery/Makefile
   grass/branches/releasebranch_6_4/lib/nviz/Makefile
   grass/branches/releasebranch_6_4/lib/ogsf/Makefile
   grass/branches/releasebranch_6_4/lib/proj/Makefile
   grass/branches/releasebranch_6_4/lib/rst/interp_float/Makefile
   grass/branches/releasebranch_6_4/lib/stats/Makefile
   grass/branches/releasebranch_6_4/lib/symbol/Makefile
   grass/branches/releasebranch_6_4/lib/vector/Vlib/Makefile
   grass/branches/releasebranch_6_4/lib/vector/transform/Makefile
   grass/branches/releasebranch_6_4/lib/vector/vedit/Makefile
   grass/branches/releasebranch_6_4/raster/r.li/r.li.daemon/Makefile
   grass/branches/releasebranch_6_4/raster/simwe/simlib/Makefile
Log:
fixed missing references (trac #456)

Modified: grass/branches/releasebranch_6_4/imagery/i.ortho.photo/libes/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/imagery/i.ortho.photo/libes/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/imagery/i.ortho.photo/libes/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,6 +1,6 @@
 MODULE_TOPDIR = ../../..
 
-EXTRA_LIBS=$(GISLIB) $(IMAGERYLIB)
+EXTRA_LIBS=$(GISLIB) $(IMAGERYLIB) $(MATHLIB)
 
 LIB_NAME = $(IORTHO_LIBNAME)
 

Modified: grass/branches/releasebranch_6_4/lib/arraystats/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/arraystats/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/arraystats/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,7 +1,7 @@
 
 MODULE_TOPDIR = ../..
 
-EXTRA_LIBS=$(GISLIB)
+EXTRA_LIBS=$(GISLIB) $(MATHLIB)
 
 LIB_NAME = $(ARRAYSTATS_LIBNAME)
 

Modified: grass/branches/releasebranch_6_4/lib/cdhc/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/cdhc/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/cdhc/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,5 +1,6 @@
 MODULE_TOPDIR = ../..
 
+EXTRA_LIBS=$(MATHLIB)
 LIB_NAME = $(CDHC_LIBNAME)
 
 LIB_OBJS = \

Modified: grass/branches/releasebranch_6_4/lib/cluster/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/cluster/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/cluster/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -4,7 +4,7 @@
 
 include $(MODULE_TOPDIR)/include/Make/Lib.make
 
-EXTRA_LIBS = $(IMAGERYLIB) $(GMATHLIB) $(GISLIB)
+EXTRA_LIBS = $(IMAGERYLIB) $(GMATHLIB) $(GISLIB) $(MATHLIB)
 
 default: lib
 

Modified: grass/branches/releasebranch_6_4/lib/driver/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/driver/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/driver/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -3,7 +3,7 @@
 include $(MODULE_TOPDIR)/include/Make/Platform.make
 
 EXTRA_CFLAGS=$(FTINC)
-EXTRA_LIBS=$(GISLIB) $(FTLIB) $(ICONVLIB)
+EXTRA_LIBS=$(GISLIB) $(FTLIB) $(ICONVLIB) $(MATHLIB)
 LIB_NAME = $(DRIVER_LIBNAME)
 
 LIB_OBJS =\

Modified: grass/branches/releasebranch_6_4/lib/gpde/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/gpde/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/gpde/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,6 +1,6 @@
 MODULE_TOPDIR = ../..
 
-EXTRA_LIBS=$(GISLIB) $(G3DLIB)
+EXTRA_LIBS=$(GISLIB) $(G3DLIB) $(MATHLIB)
 LIB_NAME = $(GPDE_LIBNAME)
 
 include $(MODULE_TOPDIR)/include/Make/Lib.make

Modified: grass/branches/releasebranch_6_4/lib/imagery/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/imagery/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/imagery/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -5,7 +5,7 @@
 include $(MODULE_TOPDIR)/include/Make/Lib.make
 include $(MODULE_TOPDIR)/include/Make/Doxygen.make
 
-EXTRA_LIBS = $(GMATHLIB) $(GISLIB)
+EXTRA_LIBS = $(GMATHLIB) $(GISLIB) $(MATHLIB)
 
 default: lib
 

Modified: grass/branches/releasebranch_6_4/lib/nviz/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/nviz/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/nviz/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -2,7 +2,7 @@
 
 LIB_NAME = $(NVIZ_LIBNAME)
 
-EXTRA_LIBS = $(GISLIB) $(BITMAPLIB) $(VECTLIB) $(TIFFLIBPATH) $(TIFFLIB) $(FFMPEGLIBPATH) $(FFMPEGLIB) $(SITESLIB) $(G3DLIB) $(OGSFLIB)
+EXTRA_LIBS = $(GISLIB) $(BITMAPLIB) $(VECTLIB) $(TIFFLIBPATH) $(TIFFLIB) $(FFMPEGLIBPATH) $(FFMPEGLIB) $(SITESLIB) $(G3DLIB) $(OGSFLIB) $(XLIB)
 
 include $(MODULE_TOPDIR)/include/Make/Lib.make
 include $(MODULE_TOPDIR)/include/Make/Doxygen.make

Modified: grass/branches/releasebranch_6_4/lib/ogsf/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/ogsf/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/ogsf/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,6 +1,6 @@
 MODULE_TOPDIR = ../..
 
-EXTRA_LIBS=$(GISLIB) $(BITMAPLIB) $(VECTLIB) $(TIFFLIBPATH) $(TIFFLIB) $(FFMPEGLIBPATH) $(FFMPEGLIB) $(SITESLIB) $(G3DLIB)
+EXTRA_LIBS=$(GISLIB) $(BITMAPLIB) $(VECTLIB) $(TIFFLIBPATH) $(TIFFLIB) $(FFMPEGLIBPATH) $(FFMPEGLIB) $(SITESLIB) $(G3DLIB)$(MATHLIB)
 
 ifeq ($(OPENGL_X11),1)
 EXTRA_LIBS += $(XLIBPATH) $(OPENGLLIB) $(OPENGLULIB)

Modified: grass/branches/releasebranch_6_4/lib/proj/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/proj/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/proj/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -5,7 +5,7 @@
 PACKAGE ="libgproj"
 DEFS=-DPACKAGE=\"$(PACKAGE)\"
 
-EXTRA_LIBS=$(GISLIB) $(PROJLIB) $(GDALLIBS)
+EXTRA_LIBS=$(GISLIB) $(PROJLIB) $(GDALLIBS) $(MATHLIB)
 EXTRA_CFLAGS = $(GETHOSTNAME) $(ZLIBINCPATH) $(PICFLAGS) $(GDALCFLAGS) $(DEFS)
 EXTRA_INC = $(PROJINC)
 

Modified: grass/branches/releasebranch_6_4/lib/rst/interp_float/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/rst/interp_float/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/rst/interp_float/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,6 +1,6 @@
 MODULE_TOPDIR = ../../..
 
-EXTRA_LIBS=$(GISLIB) $(VECTLIB) $(SITESLIB) $(BITMAPLIB) $(QTREELIB) $(INTERPDATALIB) $(DBMILIB) $(GMATHLIB)
+EXTRA_LIBS=$(GISLIB) $(VECTLIB) $(SITESLIB) $(BITMAPLIB) $(QTREELIB) $(INTERPDATALIB) $(DBMILIB) $(GMATHLIB) $(MATHLIB)
 
 LIB_NAME = $(INTERPFL_LIBNAME)
 

Modified: grass/branches/releasebranch_6_4/lib/stats/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/stats/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/stats/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,7 +1,7 @@
 
 MODULE_TOPDIR = ../..
 
-EXTRA_LIBS=$(GISLIB)
+EXTRA_LIBS=$(GISLIB) $(MATHLIB)
 
 LIB_NAME = $(STATS_LIBNAME)
 

Modified: grass/branches/releasebranch_6_4/lib/symbol/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/symbol/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/symbol/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,6 +1,6 @@
 MODULE_TOPDIR = ../..
 
-EXTRA_LIBS=$(GISLIB)
+EXTRA_LIBS=$(GISLIB) $(MATHLIB)
 
 LIB_NAME = $(SYMB_LIBNAME)
 

Modified: grass/branches/releasebranch_6_4/lib/vector/Vlib/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/vector/Vlib/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/vector/Vlib/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -5,7 +5,7 @@
 
 EXTRA_INC = $(VECT_INC)
 EXTRA_CFLAGS = $(GETHOSTNAME) $(ZLIBINCPATH) $(VECT_CFLAGS) $(DEFS)
-EXTRA_LIBS=$(GISLIB) $(DIG2LIB) $(GRAPHLIB) $(RTREELIB) $(LINKMLIB) $(DBMILIB) $(GDALLIBS)
+EXTRA_LIBS=$(GISLIB) $(DIG2LIB) $(GRAPHLIB) $(RTREELIB) $(LINKMLIB) $(DBMILIB) $(GDALLIBS) $(MATHLIB)
 
 LIB_NAME = $(VECTR_LIBNAME)
 DEPENDENCIES =  $(ARCH_INCDIR)/Vect.h $(ARCH_INCDIR)/V_.h \

Modified: grass/branches/releasebranch_6_4/lib/vector/transform/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/vector/transform/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/vector/transform/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,6 +1,7 @@
 
 MODULE_TOPDIR = ../../..
 
+EXTRA_LIBS=$(MATHLIB)
 LIB_NAME = $(TRANS_LIBNAME)
 
 include $(MODULE_TOPDIR)/include/Make/Lib.make

Modified: grass/branches/releasebranch_6_4/lib/vector/vedit/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/vector/vedit/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/lib/vector/vedit/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -6,7 +6,7 @@
 
 EXTRA_INC = $(VECT_INC)
 EXTRA_CFLAGS = $(VECT_CFLAGS)
-EXTRA_LIBS = $(VECTLIB) $(DBMILIB) $(GISLIB)
+EXTRA_LIBS = $(VECTLIB) $(DBMILIB) $(GISLIB) $(MATHLIB)
 
 include $(MODULE_TOPDIR)/include/Make/Lib.make
 include $(MODULE_TOPDIR)/include/Make/Doxygen.make

Modified: grass/branches/releasebranch_6_4/raster/r.li/r.li.daemon/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.li/r.li.daemon/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/raster/r.li/r.li.daemon/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,6 +1,6 @@
 MODULE_TOPDIR = ../../..
 
-EXTRA_LIBS=$(GISLIB) 
+EXTRA_LIBS=$(GISLIB) $(MATHLIB)
 
 LIB_NAME = grass_rli
 

Modified: grass/branches/releasebranch_6_4/raster/simwe/simlib/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/raster/simwe/simlib/Makefile	2009-01-22 22:35:42 UTC (rev 35547)
+++ grass/branches/releasebranch_6_4/raster/simwe/simlib/Makefile	2009-01-23 11:27:43 UTC (rev 35548)
@@ -1,6 +1,6 @@
 MODULE_TOPDIR = ../../..
 
-EXTRA_LIBS = $(GISLIB) $(BITMAPLIB) $(DBMILIB) $(GMATHLIB) $(LINKMLIB) $(XDRLIB) $(SITESLIB) $(VECTLIB)
+EXTRA_LIBS = $(GISLIB) $(BITMAPLIB) $(DBMILIB) $(GMATHLIB) $(LINKMLIB) $(XDRLIB) $(SITESLIB) $(VECTLIB) $(MATHLIB)
 DEPENDENCIES = $(GISDEP) $(DBMIDEP) $(GMATLIBDEP) $(LINKMDEP) $(XDRDEP) $(SITESDEP) $(VECTDEP)
 EXTRA_INC = $(VECT_INC)
 EXTRA_CFLAGS = $(VECT_CFLAGS)



More information about the grass-commit mailing list