[GRASS-SVN] r35676 - in grass/branches/develbranch_6/gui/wxpython:
nviz vdigit
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jan 30 13:34:42 EST 2009
Author: kyngchaos
Date: 2009-01-30 13:34:42 -0500 (Fri, 30 Jan 2009)
New Revision: 35676
Modified:
grass/branches/develbranch_6/gui/wxpython/nviz/Makefile
grass/branches/develbranch_6/gui/wxpython/vdigit/Makefile
Log:
don't link WXWIDGETSLIB on OSX - dynamic_lookup handles it
Modified: grass/branches/develbranch_6/gui/wxpython/nviz/Makefile
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/nviz/Makefile 2009-01-30 09:25:04 UTC (rev 35675)
+++ grass/branches/develbranch_6/gui/wxpython/nviz/Makefile 2009-01-30 18:34:42 UTC (rev 35676)
@@ -9,11 +9,11 @@
SHLIB_OBJS := $(patsubst %.cpp, $(OBJDIR)/%.o, $(SOURCES))
EXTRA_CFLAGS = $(SHLIB_CFLAGS) $(GDALCFLAGS) $(PYTHONCFLAGS) $(WXWIDGETSCXXFLAGS) $(XCFLAGS) $(XMINC)
-EXTRA_LIBS = $(GISLIB) $(WXWIDGETSLIB) $(OGSFLIB) $(NVIZLIB) $(OPENGLLIB) $(OPENGLULIB)
+EXTRA_LIBS = $(GISLIB) $(OGSFLIB) $(NVIZLIB) $(OPENGLLIB) $(OPENGLULIB)
ifeq ($(findstring darwin,$(ARCH)),darwin)
EXTRA_LIBS := -bundle -undefined dynamic_lookup $(EXTRA_LIBS)
else
-EXTRA_LIBS := $(PYTHONLDFLAGS) $(EXTRA_LIBS)
+EXTRA_LIBS := $(PYTHONLDFLAGS) $(WXWIDGETSLIB) $(EXTRA_LIBS)
endif
LOCAL_HEADERS = nviz.h
Modified: grass/branches/develbranch_6/gui/wxpython/vdigit/Makefile
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/vdigit/Makefile 2009-01-30 09:25:04 UTC (rev 35675)
+++ grass/branches/develbranch_6/gui/wxpython/vdigit/Makefile 2009-01-30 18:34:42 UTC (rev 35676)
@@ -9,11 +9,11 @@
SHLIB_OBJS := $(patsubst %.cpp, $(OBJDIR)/%.o, $(SOURCES))
EXTRA_CFLAGS = $(SHLIB_CFLAGS) $(GDALCFLAGS) $(PYTHONCFLAGS) $(WXWIDGETSCXXFLAGS)
-EXTRA_LIBS = $(VECTLIB) $(GISLIB) $(GDALLIBS) $(VEDITLIB) $(WXWIDGETSLIB)
+EXTRA_LIBS = $(VECTLIB) $(GISLIB) $(GDALLIBS) $(VEDITLIB)
ifeq ($(findstring darwin,$(ARCH)),darwin)
EXTRA_LIBS := -bundle -undefined dynamic_lookup $(EXTRA_LIBS)
else
-EXTRA_LIBS := $(PYTHONLDFLAGS) $(EXTRA_LIBS)
+EXTRA_LIBS := $(PYTHONLDFLAGS) $(WXWIDGETSLIB) $(EXTRA_LIBS)
endif
LOCAL_HEADERS = digit.h driver.h pseudodc.h
More information about the grass-commit
mailing list