Author: ok Date: Sat Feb 16 14:01:58 2008 New Revision: 2024 URL: http://svn.gnome.org/viewvc/gegl?rev=2024&view=rev
Log: * bin/node-editors/Makefile.am: link against the custom gui plug-ins of the gegl library against libgegl. Modified: trunk/ChangeLog trunk/bin/node-editors/Makefile.am Modified: trunk/bin/node-editors/Makefile.am ============================================================================== --- trunk/bin/node-editors/Makefile.am (original) +++ trunk/bin/node-editors/Makefile.am Sat Feb 16 14:01:58 2008 @@ -1,3 +1,10 @@ +if OS_WIN32 +no_undefined = -no-undefined +libgegldlla=$(top_builddir)/gegl/.libs/libgegl-$(GEGL_API_VERSION).dll.a +else +libgegldlla=$(top_builddir)/gegl/.libs/libgegl-$(GEGL_API_VERSION)$(SHREXT) +endif + CFILES = $(wildcard $(srcdir)/*.c) SOBJS = $(subst $(srcdir)/,,$(CFILES:.c=$(SHREXT))) #INSTALLED_ITEMS = $(subst $(srcdir),$(ext_dir),$(CFILES:.c=$(SHREXT))) @@ -14,9 +21,9 @@ -I$(top_srcdir)/gegl/operation \ -I$(top_srcdir)/gegl/module \ -I$(top_srcdir)/gegl/property-types -fPIC -LDFLAGS += $(DYNAMICLIB) +LDFLAGS += $(DYNAMICLIB) $(no_undefined) -LDADD = @DEP_LIBS@ @BABL_LIBS@ @GTK_LIBS@ +LDADD = @DEP_LIBS@ @BABL_LIBS@ @GTK_LIBS@ $(libgegldlla) #win32_libs = -lgw32c -liberty -lole32 -luuid -lwsock32 _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.