parallel make problem with svg-coder

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
_maekke_

parallel make problem with svg-coder

Post by _maekke_ »

hi

there's a new parallel-make issue with the svg coder (as far as I can say...) reported at https://bugs.gentoo.org/show_bug.cgi?id=236643

my proposed patch adds $(MAGICKWAND_LIBS) to svg dependencies:

Code: Select all

diff -ru ImageMagick-6.4.3.orig/Makefile.in ImageMagick-6.4.3/Makefile.in
--- ImageMagick-6.4.3.orig/Makefile.in	2008-09-21 13:29:23.000000000 +0200
+++ ImageMagick-6.4.3/Makefile.in	2008-09-21 13:30:39.000000000 +0200
@@ -980,8 +980,8 @@
 	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 	$(coders_sun_la_LDFLAGS) $(LDFLAGS) -o $@
 @WITH_MODULES_TRUE@am_coders_sun_la_rpath = -rpath $(codersdir)
-coders_svg_la_DEPENDENCIES = $(MAGICKCORE_LIBS) $(am__DEPENDENCIES_1) \
-	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+coders_svg_la_DEPENDENCIES = $(MAGICKCORE_LIBS) $(MAGICKWAND_LIBS) \
+	$(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
 am_coders_svg_la_OBJECTS = coders/coders_svg_la-svg.lo
 coders_svg_la_OBJECTS = $(am_coders_svg_la_OBJECTS)
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: parallel make problem with svg-coder

Post by magick »

Thanks for the problem report and patch. Your patch will be available in the Subversion trunk by tomorrow and in the next point release, 6.4.3-7.
Post Reply