[GRASS-SVN] r35219 - in grass/trunk/gui/wxpython: nviz vdigit

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jan 5 03:30:57 EST 2009


Author: neteler
Date: 2009-01-05 03:30:57 -0500 (Mon, 05 Jan 2009)
New Revision: 35219

Modified:
   grass/trunk/gui/wxpython/nviz/Makefile
   grass/trunk/gui/wxpython/vdigit/Makefile
Log:
fix gcc 4.3.2 issue (undefined reference to 'std::ios_base::Init::Init[in-charge]()')

Modified: grass/trunk/gui/wxpython/nviz/Makefile
===================================================================
--- grass/trunk/gui/wxpython/nviz/Makefile	2009-01-05 08:01:40 UTC (rev 35218)
+++ grass/trunk/gui/wxpython/nviz/Makefile	2009-01-05 08:30:57 UTC (rev 35219)
@@ -2,6 +2,8 @@
 
 include $(MODULE_TOPDIR)/include/Make/Lib.make
 
+SHLIB_LD = $(CXX) -shared
+
 LIB_NAME = grass7_wxnviz
 SOURCES := $(wildcard *.cpp) $(LIB_NAME)_wrap.cpp
 SHLIB_OBJS := $(patsubst %.cpp, $(OBJDIR)/%.o, $(SOURCES))

Modified: grass/trunk/gui/wxpython/vdigit/Makefile
===================================================================
--- grass/trunk/gui/wxpython/vdigit/Makefile	2009-01-05 08:01:40 UTC (rev 35218)
+++ grass/trunk/gui/wxpython/vdigit/Makefile	2009-01-05 08:30:57 UTC (rev 35219)
@@ -2,6 +2,8 @@
 
 include $(MODULE_TOPDIR)/include/Make/Lib.make
 
+SHLIB_LD = $(CXX) -shared
+
 LIB_NAME = grass7_wxvdigit
 SOURCES := $(wildcard *.cpp) $(LIB_NAME)_wrap.cpp
 SHLIB_OBJS := $(patsubst %.cpp, $(OBJDIR)/%.o, $(SOURCES))



More information about the grass-commit mailing list