Fri Apr 20 15:22:38 2012 UTC ()
Changes 6.7.6.6:
* Always unlock the semaphore before returning from the png codec, either
  by a "return" or png_error(); changed all Magick*Exception() calls
  after setjmp() to png_error() to ensure proper cleanup (reference
  http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=16883).
* Fixed log known alpha*kernel normalization bug in morphology convolve.
* Pixel allocation for Pango is stride*rows not stride*columns.
* Set the image resolution for Postscript files with an embedded Photoshop
  profile.
More...


(adam)
diff -r1.179 -r1.180 pkgsrc/graphics/ImageMagick/Makefile
diff -r1.94 -r1.95 pkgsrc/graphics/ImageMagick/Makefile.common
diff -r1.72 -r1.73 pkgsrc/graphics/ImageMagick/PLIST
diff -r1.111 -r1.112 pkgsrc/graphics/ImageMagick/distinfo
diff -r1.1 -r0 pkgsrc/graphics/ImageMagick/patches/patch-coders_jpeg.c
diff -r1.1 -r0 pkgsrc/graphics/ImageMagick/patches/patch-coders_tiff.c
diff -r1.1 -r0 pkgsrc/graphics/ImageMagick/patches/patch-magick_profile.c
diff -r1.2 -r0 pkgsrc/graphics/ImageMagick/patches/patch-magick_property.c

cvs diff -r1.179 -r1.180 pkgsrc/graphics/ImageMagick/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/ImageMagick/Makefile 2012/04/09 15:56:21 1.179
+++ pkgsrc/graphics/ImageMagick/Makefile 2012/04/20 15:22:37 1.180
@@ -1,38 +1,41 @@ @@ -1,38 +1,41 @@
1# $NetBSD: Makefile,v 1.179 2012/04/09 15:56:21 tez Exp $ 1# $NetBSD: Makefile,v 1.180 2012/04/20 15:22:37 adam Exp $
2 2
3.include "Makefile.common" 3.include "Makefile.common"
4 4
5PKGNAME= ImageMagick-${DISTVERSION} 5PKGNAME= ImageMagick-${DISTVERSION}
6PKGREVISION= 2 
7 6
8MAINTAINER= adam@NetBSD.org 7MAINTAINER= adam@NetBSD.org
9COMMENT= Package for display and interactive manipulation of images 8COMMENT= Package for display and interactive manipulation of images
10 9
11CONFLICTS= geomview<1.8.1nb2 # used to have a program named 'animate' 10CONFLICTS= geomview<1.8.1nb2 # used to have a program named 'animate'
12 11
13PKG_DESTDIR_SUPPORT= user-destdir 12PKG_DESTDIR_SUPPORT= user-destdir
14PKG_INSTALLATION_TYPES= overwrite pkgviews 13PKG_INSTALLATION_TYPES= overwrite pkgviews
15 14
16USE_LANGUAGES= c c++ c99 15USE_LANGUAGES= c c++ c99
17USE_TOOLS+= gmake pkg-config 16USE_TOOLS+= gmake pkg-config
18CONFIGURE_ARGS+= --disable-assert 17CONFIGURE_ARGS+= --disable-assert
19CONFIGURE_ARGS+= --with-fontconfig 18CONFIGURE_ARGS+= --with-fontconfig
20CONFIGURE_ARGS+= --with-ltdl-include=${BUILDLINK_PREFIX.libltdl}/include 19CONFIGURE_ARGS+= --with-ltdl-include=${BUILDLINK_PREFIX.libltdl}/include
21CONFIGURE_ARGS+= --with-ltdl-lib=${BUILDLINK_PREFIX.libltdl}/lib 20CONFIGURE_ARGS+= --with-ltdl-lib=${BUILDLINK_PREFIX.libltdl}/lib
22CONFIGURE_ARGS+= --with-xml=yes 21CONFIGURE_ARGS+= --with-xml=yes
23CONFIGURE_ARGS+= --without-perl 22CONFIGURE_ARGS+= --without-perl
24PKGCONFIG_OVERRIDE= Magick++/lib/ImageMagick++.pc.in 23PKGCONFIG_OVERRIDE= Magick++/lib/ImageMagick++.pc.in
 24PKGCONFIG_OVERRIDE+= Magick++/lib/Magick++.pc.in
25PKGCONFIG_OVERRIDE+= magick/ImageMagick.pc.in 25PKGCONFIG_OVERRIDE+= magick/ImageMagick.pc.in
 26PKGCONFIG_OVERRIDE+= magick/MagickCore.pc.in
 27PKGCONFIG_OVERRIDE+= wand/MagickWand.pc.in
 28PKGCONFIG_OVERRIDE+= wand/Wand.pc.in
26 29
27GCC_REQD+= 2.95.3 30GCC_REQD+= 2.95.3
28 31
29PLIST_SUBST+= IM_MAJOR_VER=${IM_MAJOR_VER:Q} 32PLIST_SUBST+= IM_MAJOR_VER=${IM_MAJOR_VER:Q}
30PLIST_SUBST+= IM_MAJOR_LIB_VER=${IM_MAJOR_LIB_VER:Q} 33PLIST_SUBST+= IM_MAJOR_LIB_VER=${IM_MAJOR_LIB_VER:Q}
31 34
32TEST_TARGET= check 35TEST_TARGET= check
33 36
34.include "options.mk" 37.include "options.mk"
35 38
36.if !empty(MACHINE_PLATFORM:MNetBSD-*-sparc64) 39.if !empty(MACHINE_PLATFORM:MNetBSD-*-sparc64)
37GCC_REQD+= 3.0 40GCC_REQD+= 3.0
38.endif 41.endif

cvs diff -r1.94 -r1.95 pkgsrc/graphics/ImageMagick/Makefile.common (expand / switch to unified diff)

--- pkgsrc/graphics/ImageMagick/Makefile.common 2012/03/21 18:12:42 1.94
+++ pkgsrc/graphics/ImageMagick/Makefile.common 2012/04/20 15:22:37 1.95
@@ -1,41 +1,42 @@ @@ -1,41 +1,42 @@
1# $NetBSD: Makefile.common,v 1.94 2012/03/21 18:12:42 drochner Exp $ 1# $NetBSD: Makefile.common,v 1.95 2012/04/20 15:22:37 adam Exp $
2# 2#
3# used by graphics/p5-PerlMagick/Makefile 3# used by graphics/p5-PerlMagick/Makefile
4 4
5IM_MAJOR_VER= 6.7.5 5IM_MAJOR_VER= 6.7.6
6IM_MINOR_VER= 10 6IM_MINOR_VER= 6
7IM_MAJOR_LIB_VER= ${IM_MAJOR_VER} 7IM_MAJOR_LIB_VER= ${IM_MAJOR_VER}
8 8
9.if (${IM_MINOR_VER} != NONE) 9.if (${IM_MINOR_VER} != NONE)
10DISTSUFFIX= ${IM_MAJOR_VER}-${IM_MINOR_VER} 10DISTSUFFIX= ${IM_MAJOR_VER}-${IM_MINOR_VER}
11.else 11.else
12DISTSUFFIX= ${IM_MAJOR_VER} 12DISTSUFFIX= ${IM_MAJOR_VER}
13.endif 13.endif
14 14
15DISTNAME= ImageMagick-${DISTSUFFIX} 15DISTNAME= ImageMagick-${DISTSUFFIX}
16DISTVERSION= ${DISTSUFFIX:S/-/./} 16DISTVERSION= ${DISTSUFFIX:S/-/./}
17 17
18CATEGORIES= graphics 18CATEGORIES= graphics
19MASTER_SITES= ftp://ftp.imagemagick.org/pub/ImageMagick/ \ 19MASTER_SITES= ftp://ftp.imagemagick.org/pub/ImageMagick/ \
20 ftp://ftp.nluug.nl/pub/ImageMagick/ \ 20 ftp://ftp.nluug.nl/pub/ImageMagick/ \
21 http://image_magick.veidrodis.com/image_magick/ \ 21 http://image_magick.veidrodis.com/image_magick/ \
22 ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ \ 22 ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ \
23 http://mirror.is.co.za/pub/imagemagick/ \ 23 http://mirror.is.co.za/pub/imagemagick/ \
24 ftp://ftp.kddlabs.co.jp/graphics/ImageMagick/ \ 24 ftp://ftp.kddlabs.co.jp/graphics/ImageMagick/ \
25 http://www.imagemagick.org/download/ 25 http://www.imagemagick.org/download/
26EXTRACT_SUFX= .tar.bz2 26EXTRACT_SUFX= .tar.bz2
27 27
28HOMEPAGE= http://www.imagemagick.org/ 28HOMEPAGE= http://www.imagemagick.org/
 29LICENSE= gnu-gpl-v3
29 30
30WRKSRC= ${WRKDIR}/ImageMagick-${DISTSUFFIX} 31WRKSRC= ${WRKDIR}/ImageMagick-${DISTSUFFIX}
31 32
32USE_LIBTOOL= yes 33USE_LIBTOOL= yes
33GNU_CONFIGURE= yes 34GNU_CONFIGURE= yes
34# For things for which we do not specify an explicit dependency above, disable 35# For things for which we do not specify an explicit dependency above, disable
35# so that we don't cause implicit "hidden" dependencies. 36# so that we don't cause implicit "hidden" dependencies.
36CONFIGURE_ARGS+= --without-dps 37CONFIGURE_ARGS+= --without-dps
37CONFIGURE_ARGS+= --without-fpx 38CONFIGURE_ARGS+= --without-fpx
38CONFIGURE_ARGS+= --without-gvc 39CONFIGURE_ARGS+= --without-gvc
39CONFIGURE_ARGS+= --without-jbig 40CONFIGURE_ARGS+= --without-jbig
40CONFIGURE_ARGS+= --without-lqr 41CONFIGURE_ARGS+= --without-lqr
41CONFIGURE_ARGS+= --without-modules 42CONFIGURE_ARGS+= --without-modules

cvs diff -r1.72 -r1.73 pkgsrc/graphics/ImageMagick/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/ImageMagick/PLIST 2012/03/21 18:12:42 1.72
+++ pkgsrc/graphics/ImageMagick/PLIST 2012/04/20 15:22:37 1.73
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.72 2012/03/21 18:12:42 drochner Exp $ 1@comment $NetBSD: PLIST,v 1.73 2012/04/20 15:22:37 adam Exp $
2bin/Magick++-config 2bin/Magick++-config
3bin/Magick-config 3bin/Magick-config
4bin/MagickCore-config 4bin/MagickCore-config
5bin/MagickWand-config 5bin/MagickWand-config
6bin/Wand-config 6bin/Wand-config
7bin/animate 7bin/animate
8bin/compare 8bin/compare
9bin/composite 9bin/composite
10bin/conjure 10bin/conjure
11bin/convert 11bin/convert
12bin/display 12bin/display
13bin/identify 13bin/identify
14bin/import 14bin/import
@@ -161,1026 +161,1026 @@ man/man1/animate.1 @@ -161,1026 +161,1026 @@ man/man1/animate.1
161man/man1/compare.1 161man/man1/compare.1
162man/man1/composite.1 162man/man1/composite.1
163man/man1/conjure.1 163man/man1/conjure.1
164man/man1/convert.1 164man/man1/convert.1
165man/man1/display.1 165man/man1/display.1
166man/man1/identify.1 166man/man1/identify.1
167man/man1/import.1 167man/man1/import.1
168man/man1/mogrify.1 168man/man1/mogrify.1
169man/man1/montage.1 169man/man1/montage.1
170man/man1/stream.1 170man/man1/stream.1
171share/ImageMagick-${IM_MAJOR_VER}/english.xml 171share/ImageMagick-${IM_MAJOR_VER}/english.xml
172share/ImageMagick-${IM_MAJOR_VER}/francais.xml 172share/ImageMagick-${IM_MAJOR_VER}/francais.xml
173share/ImageMagick-${IM_MAJOR_VER}/locale.xml 173share/ImageMagick-${IM_MAJOR_VER}/locale.xml
174share/doc/ImageMagick/ChangeLog 174share/doc/ImageMagick-${IM_MAJOR_VER}/ChangeLog
175share/doc/ImageMagick/LICENSE 175share/doc/ImageMagick-${IM_MAJOR_VER}/LICENSE
176share/doc/ImageMagick/NEWS.txt 176share/doc/ImageMagick-${IM_MAJOR_VER}/NEWS.txt
177share/doc/ImageMagick/images/affine.png 177share/doc/ImageMagick-${IM_MAJOR_VER}/images/affine.png
178share/doc/ImageMagick/images/arc.png 178share/doc/ImageMagick-${IM_MAJOR_VER}/images/arc.png
179share/doc/ImageMagick/images/background.jpg 179share/doc/ImageMagick-${IM_MAJOR_VER}/images/background.jpg
180share/doc/ImageMagick/images/black.png 180share/doc/ImageMagick-${IM_MAJOR_VER}/images/black.png
181share/doc/ImageMagick/images/bluebells_clipped.jpg 181share/doc/ImageMagick-${IM_MAJOR_VER}/images/bluebells_clipped.jpg
182share/doc/ImageMagick/images/bluebells_darker.jpg 182share/doc/ImageMagick-${IM_MAJOR_VER}/images/bluebells_darker.jpg
183share/doc/ImageMagick/images/bluebells_lin.jpg 183share/doc/ImageMagick-${IM_MAJOR_VER}/images/bluebells_lin.jpg
184share/doc/ImageMagick/images/bluebells_log.jpg 184share/doc/ImageMagick-${IM_MAJOR_VER}/images/bluebells_log.jpg
185share/doc/ImageMagick/images/button.gif 185share/doc/ImageMagick-${IM_MAJOR_VER}/images/button.gif
186share/doc/ImageMagick/images/configure.jpg 186share/doc/ImageMagick-${IM_MAJOR_VER}/images/configure.jpg
187share/doc/ImageMagick/images/cylinder_shaded.png 187share/doc/ImageMagick-${IM_MAJOR_VER}/images/cylinder_shaded.png
188share/doc/ImageMagick/images/definitive-guide.png 188share/doc/ImageMagick-${IM_MAJOR_VER}/images/definitive-guide.png
189share/doc/ImageMagick/images/difference.png 189share/doc/ImageMagick-${IM_MAJOR_VER}/images/difference.png
190share/doc/ImageMagick/images/donate.png 190share/doc/ImageMagick-${IM_MAJOR_VER}/images/donate.png
191share/doc/ImageMagick/images/examples.jpg 191share/doc/ImageMagick-${IM_MAJOR_VER}/images/examples.jpg
192share/doc/ImageMagick/images/frame.jpg 192share/doc/ImageMagick-${IM_MAJOR_VER}/images/frame.jpg
193share/doc/ImageMagick/images/fuzzy-magick.png 193share/doc/ImageMagick-${IM_MAJOR_VER}/images/fuzzy-magick.png
194share/doc/ImageMagick/images/gaussian-blur.png 194share/doc/ImageMagick-${IM_MAJOR_VER}/images/gaussian-blur.png
195share/doc/ImageMagick/images/granite.png 195share/doc/ImageMagick-${IM_MAJOR_VER}/images/granite.png
196share/doc/ImageMagick/images/imade_art2.jpg 196share/doc/ImageMagick-${IM_MAJOR_VER}/images/imade_art2.jpg
197share/doc/ImageMagick/images/label.gif 197share/doc/ImageMagick-${IM_MAJOR_VER}/images/label.gif
198share/doc/ImageMagick/images/logo-sm-flop.png 198share/doc/ImageMagick-${IM_MAJOR_VER}/images/logo-sm-flop.png
199share/doc/ImageMagick/images/logo-sm-fx.png 199share/doc/ImageMagick-${IM_MAJOR_VER}/images/logo-sm-fx.png
200share/doc/ImageMagick/images/logo-sm.png 200share/doc/ImageMagick-${IM_MAJOR_VER}/images/logo-sm.png
201share/doc/ImageMagick/images/logo.jpg 201share/doc/ImageMagick-${IM_MAJOR_VER}/images/logo.jpg
202share/doc/ImageMagick/images/logo.png 202share/doc/ImageMagick-${IM_MAJOR_VER}/images/logo.png
203share/doc/ImageMagick/images/montage.jpg 203share/doc/ImageMagick-${IM_MAJOR_VER}/images/montage.jpg
204share/doc/ImageMagick/images/navy.png 204share/doc/ImageMagick-${IM_MAJOR_VER}/images/navy.png
205share/doc/ImageMagick/images/networkredux.png 205share/doc/ImageMagick-${IM_MAJOR_VER}/images/networkredux.png
206share/doc/ImageMagick/images/patterns/bricks.png 206share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/bricks.png
207share/doc/ImageMagick/images/patterns/checkerboard.png 207share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/checkerboard.png
208share/doc/ImageMagick/images/patterns/circles.png 208share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/circles.png
209share/doc/ImageMagick/images/patterns/crosshatch.png 209share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/crosshatch.png
210share/doc/ImageMagick/images/patterns/crosshatch30.png 210share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/crosshatch30.png
211share/doc/ImageMagick/images/patterns/crosshatch45.png 211share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/crosshatch45.png
212share/doc/ImageMagick/images/patterns/fishscales.png 212share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/fishscales.png
213share/doc/ImageMagick/images/patterns/gray0.png 213share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray0.png
214share/doc/ImageMagick/images/patterns/gray10.png 214share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray10.png
215share/doc/ImageMagick/images/patterns/gray100.png 215share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray100.png
216share/doc/ImageMagick/images/patterns/gray15.png 216share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray15.png
217share/doc/ImageMagick/images/patterns/gray20.png 217share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray20.png
218share/doc/ImageMagick/images/patterns/gray25.png 218share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray25.png
219share/doc/ImageMagick/images/patterns/gray30.png 219share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray30.png
220share/doc/ImageMagick/images/patterns/gray35.png 220share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray35.png
221share/doc/ImageMagick/images/patterns/gray40.png 221share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray40.png
222share/doc/ImageMagick/images/patterns/gray45.png 222share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray45.png
223share/doc/ImageMagick/images/patterns/gray5.png 223share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray5.png
224share/doc/ImageMagick/images/patterns/gray50.png 224share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray50.png
225share/doc/ImageMagick/images/patterns/gray55.png 225share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray55.png
226share/doc/ImageMagick/images/patterns/gray60.png 226share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray60.png
227share/doc/ImageMagick/images/patterns/gray65.png 227share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray65.png
228share/doc/ImageMagick/images/patterns/gray70.png 228share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray70.png
229share/doc/ImageMagick/images/patterns/gray75.png 229share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray75.png
230share/doc/ImageMagick/images/patterns/gray80.png 230share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray80.png
231share/doc/ImageMagick/images/patterns/gray85.png 231share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray85.png
232share/doc/ImageMagick/images/patterns/gray90.png 232share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray90.png
233share/doc/ImageMagick/images/patterns/gray95.png 233share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/gray95.png
234share/doc/ImageMagick/images/patterns/hexagons.png 234share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/hexagons.png
235share/doc/ImageMagick/images/patterns/horizontal.png 235share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/horizontal.png
236share/doc/ImageMagick/images/patterns/horizontal2.png 236share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/horizontal2.png
237share/doc/ImageMagick/images/patterns/horizontal3.png 237share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/horizontal3.png
238share/doc/ImageMagick/images/patterns/horizontalsaw.png 238share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/horizontalsaw.png
239share/doc/ImageMagick/images/patterns/hs_bdiagonal.png 239share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/hs_bdiagonal.png
240share/doc/ImageMagick/images/patterns/hs_cross.png 240share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/hs_cross.png
241share/doc/ImageMagick/images/patterns/hs_diagcross.png 241share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/hs_diagcross.png
242share/doc/ImageMagick/images/patterns/hs_fdiagonal.png 242share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/hs_fdiagonal.png
243share/doc/ImageMagick/images/patterns/hs_horizontal.png 243share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/hs_horizontal.png
244share/doc/ImageMagick/images/patterns/hs_vertical.png 244share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/hs_vertical.png
245share/doc/ImageMagick/images/patterns/left30.png 245share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/left30.png
246share/doc/ImageMagick/images/patterns/left45.png 246share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/left45.png
247share/doc/ImageMagick/images/patterns/leftshingle.png 247share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/leftshingle.png
248share/doc/ImageMagick/images/patterns/octagons.png 248share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/octagons.png
249share/doc/ImageMagick/images/patterns/right30.png 249share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/right30.png
250share/doc/ImageMagick/images/patterns/right45.png 250share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/right45.png
251share/doc/ImageMagick/images/patterns/rightshingle.png 251share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/rightshingle.png
252share/doc/ImageMagick/images/patterns/smallfishscales.png 252share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/smallfishscales.png
253share/doc/ImageMagick/images/patterns/vertical.png 253share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/vertical.png
254share/doc/ImageMagick/images/patterns/vertical2.png 254share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/vertical2.png
255share/doc/ImageMagick/images/patterns/vertical3.png 255share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/vertical3.png
256share/doc/ImageMagick/images/patterns/verticalbricks.png 256share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/verticalbricks.png
257share/doc/ImageMagick/images/patterns/verticalleftshingle.png 257share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/verticalleftshingle.png
258share/doc/ImageMagick/images/patterns/verticalrightshingle.png 258share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/verticalrightshingle.png
259share/doc/ImageMagick/images/patterns/verticalsaw.png 259share/doc/ImageMagick-${IM_MAJOR_VER}/images/patterns/verticalsaw.png
260share/doc/ImageMagick/images/piechart.png 260share/doc/ImageMagick-${IM_MAJOR_VER}/images/piechart.png
261share/doc/ImageMagick/images/project-support.jpg 261share/doc/ImageMagick-${IM_MAJOR_VER}/images/project-support.jpg
262share/doc/ImageMagick/images/radial-gradient.png 262share/doc/ImageMagick-${IM_MAJOR_VER}/images/radial-gradient.png
263share/doc/ImageMagick/images/reconstruct.jpg 263share/doc/ImageMagick-${IM_MAJOR_VER}/images/reconstruct.jpg
264share/doc/ImageMagick/images/red-ball.png 264share/doc/ImageMagick-${IM_MAJOR_VER}/images/red-ball.png
265share/doc/ImageMagick/images/red-circle.png 265share/doc/ImageMagick-${IM_MAJOR_VER}/images/red-circle.png
266share/doc/ImageMagick/images/right.gif 266share/doc/ImageMagick-${IM_MAJOR_VER}/images/right.gif
267share/doc/ImageMagick/images/rose-over.png 267share/doc/ImageMagick-${IM_MAJOR_VER}/images/rose-over.png
268share/doc/ImageMagick/images/rose-sigmoidal.png 268share/doc/ImageMagick-${IM_MAJOR_VER}/images/rose-sigmoidal.png
269share/doc/ImageMagick/images/rose.jpg 269share/doc/ImageMagick-${IM_MAJOR_VER}/images/rose.jpg
270share/doc/ImageMagick/images/rose.png 270share/doc/ImageMagick-${IM_MAJOR_VER}/images/rose.png
271share/doc/ImageMagick/images/rose.pnm 271share/doc/ImageMagick-${IM_MAJOR_VER}/images/rose.pnm
272share/doc/ImageMagick/images/script.png 272share/doc/ImageMagick-${IM_MAJOR_VER}/images/script.png
273share/doc/ImageMagick/images/smile.gif 273share/doc/ImageMagick-${IM_MAJOR_VER}/images/smile.gif
274share/doc/ImageMagick/images/sponsor.jpg 274share/doc/ImageMagick-${IM_MAJOR_VER}/images/sponsor.jpg
275share/doc/ImageMagick/images/sprite.jpg 275share/doc/ImageMagick-${IM_MAJOR_VER}/images/sprite.jpg
276share/doc/ImageMagick/images/t-shirt.png 276share/doc/ImageMagick-${IM_MAJOR_VER}/images/t-shirt.png
277share/doc/ImageMagick/images/tricks.png 277share/doc/ImageMagick-${IM_MAJOR_VER}/images/tricks.png
278share/doc/ImageMagick/images/wand.ico 278share/doc/ImageMagick-${IM_MAJOR_VER}/images/wand.ico
279share/doc/ImageMagick/images/wand.png 279share/doc/ImageMagick-${IM_MAJOR_VER}/images/wand.png
280share/doc/ImageMagick/images/white-highlight.png 280share/doc/ImageMagick-${IM_MAJOR_VER}/images/white-highlight.png
281share/doc/ImageMagick/images/wizard.jpg 281share/doc/ImageMagick-${IM_MAJOR_VER}/images/wizard.jpg
282share/doc/ImageMagick/images/wizard.png 282share/doc/ImageMagick-${IM_MAJOR_VER}/images/wizard.png
283share/doc/ImageMagick/index.html 283share/doc/ImageMagick-${IM_MAJOR_VER}/index.html
284share/doc/ImageMagick/www/ImageMagickObject.html 284share/doc/ImageMagick-${IM_MAJOR_VER}/www/ImageMagickObject.html
285share/doc/ImageMagick/www/Magick++/Blob.html 285share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Blob.html
286share/doc/ImageMagick/www/Magick++/Cache.fig 286share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Cache.fig
287share/doc/ImageMagick/www/Magick++/Cache.png 287share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Cache.png
288share/doc/ImageMagick/www/Magick++/Cache.svg 288share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Cache.svg
289share/doc/ImageMagick/www/Magick++/ChangeLog.html 289share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/ChangeLog.html
290share/doc/ImageMagick/www/Magick++/CoderInfo.html 290share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/CoderInfo.html
291share/doc/ImageMagick/www/Magick++/Color.html 291share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Color.html
292share/doc/ImageMagick/www/Magick++/Documentation.html 292share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Documentation.html
293share/doc/ImageMagick/www/Magick++/Drawable.html 293share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Drawable.html
294share/doc/ImageMagick/www/Magick++/Drawable_example_1.png 294share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Drawable_example_1.png
295share/doc/ImageMagick/www/Magick++/Enumerations.html 295share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Enumerations.html
296share/doc/ImageMagick/www/Magick++/Exception.html 296share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Exception.html
297share/doc/ImageMagick/www/Magick++/FormatCharacters.html 297share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/FormatCharacters.html
298share/doc/ImageMagick/www/Magick++/Future.html 298share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Future.html
299share/doc/ImageMagick/www/Magick++/Geometry.html 299share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Geometry.html
300share/doc/ImageMagick/www/Magick++/Image.fig 300share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Image.fig
301share/doc/ImageMagick/www/Magick++/Image.html 301share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Image.html
302share/doc/ImageMagick/www/Magick++/Image.png 302share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Image.png
303share/doc/ImageMagick/www/Magick++/ImageDesign.html 303share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/ImageDesign.html
304share/doc/ImageMagick/www/Magick++/ImageMagick.png 304share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/ImageMagick.png
305share/doc/ImageMagick/www/Magick++/Install.html 305share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Install.html
306share/doc/ImageMagick/www/Magick++/Magick++.png 306share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Magick++.png
307share/doc/ImageMagick/www/Magick++/Montage.html 307share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Montage.html
308share/doc/ImageMagick/www/Magick++/NEWS.html 308share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/NEWS.html
309share/doc/ImageMagick/www/Magick++/PixelPacket.html 309share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/PixelPacket.html
310share/doc/ImageMagick/www/Magick++/Pixels.html 310share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/Pixels.html
311share/doc/ImageMagick/www/Magick++/README.txt 311share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/README.txt
312share/doc/ImageMagick/www/Magick++/STL.html 312share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/STL.html
313share/doc/ImageMagick/www/Magick++/TypeMetric.html 313share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/TypeMetric.html
314share/doc/ImageMagick/www/Magick++/index.html 314share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/index.html
315share/doc/ImageMagick/www/Magick++/magick.css 315share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/magick.css
316share/doc/ImageMagick/www/Magick++/montage-sample-framed.jpg 316share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/montage-sample-framed.jpg
317share/doc/ImageMagick/www/Magick++/right_triangle.png 317share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/right_triangle.png
318share/doc/ImageMagick/www/Magick++/thumbnail-anatomy-framed.fig 318share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/thumbnail-anatomy-framed.fig
319share/doc/ImageMagick/www/Magick++/thumbnail-anatomy-framed.jpg 319share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/thumbnail-anatomy-framed.jpg
320share/doc/ImageMagick/www/Magick++/thumbnail-anatomy-plain.fig 320share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/thumbnail-anatomy-plain.fig
321share/doc/ImageMagick/www/Magick++/thumbnail-anatomy-plain.jpg 321share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/thumbnail-anatomy-plain.jpg
322share/doc/ImageMagick/www/Magick++/thumbnail-sample-framed.jpg 322share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/thumbnail-sample-framed.jpg
323share/doc/ImageMagick/www/Magick++/thumbnail-sample-plain.jpg 323share/doc/ImageMagick-${IM_MAJOR_VER}/www/Magick++/thumbnail-sample-plain.jpg
324share/doc/ImageMagick/www/advanced-unix-installation.html 324share/doc/ImageMagick-${IM_MAJOR_VER}/www/advanced-unix-installation.html
325share/doc/ImageMagick/www/advanced-windows-installation.html 325share/doc/ImageMagick-${IM_MAJOR_VER}/www/advanced-windows-installation.html
326share/doc/ImageMagick/www/animate.html 326share/doc/ImageMagick-${IM_MAJOR_VER}/www/animate.html
327share/doc/ImageMagick/www/api.html 327share/doc/ImageMagick-${IM_MAJOR_VER}/www/api.html
328share/doc/ImageMagick/www/api/MagickCore/ImageMagick_8h-source.html 328share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ImageMagick_8h-source.html
329share/doc/ImageMagick/www/api/MagickCore/ImageMagick_8h.html 329share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ImageMagick_8h.html
330share/doc/ImageMagick/www/api/MagickCore/MagickCore_8h-source.html 330share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/MagickCore_8h-source.html
331share/doc/ImageMagick/www/api/MagickCore/MagickCore_8h.html 331share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/MagickCore_8h.html
332share/doc/ImageMagick/www/api/MagickCore/PreRvIcccm_8c.html 332share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/PreRvIcccm_8c.html
333share/doc/ImageMagick/www/api/MagickCore/PreRvIcccm_8h-source.html 333share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/PreRvIcccm_8h-source.html
334share/doc/ImageMagick/www/api/MagickCore/PreRvIcccm_8h.html 334share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/PreRvIcccm_8h.html
335share/doc/ImageMagick/www/api/MagickCore/animate-private_8h-source.html 335share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/animate-private_8h-source.html
336share/doc/ImageMagick/www/api/MagickCore/animate-private_8h.html 336share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/animate-private_8h.html
337share/doc/ImageMagick/www/api/MagickCore/animate_8c.html 337share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/animate_8c.html
338share/doc/ImageMagick/www/api/MagickCore/animate_8h-source.html 338share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/animate_8h-source.html
339share/doc/ImageMagick/www/api/MagickCore/animate_8h.html 339share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/animate_8h.html
340share/doc/ImageMagick/www/api/MagickCore/annotate_8c.html 340share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/annotate_8c.html
341share/doc/ImageMagick/www/api/MagickCore/annotate_8h-source.html 341share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/annotate_8h-source.html
342share/doc/ImageMagick/www/api/MagickCore/annotate_8h.html 342share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/annotate_8h.html
343share/doc/ImageMagick/www/api/MagickCore/annotated.html 343share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/annotated.html
344share/doc/ImageMagick/www/api/MagickCore/api_8h-source.html 344share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/api_8h-source.html
345share/doc/ImageMagick/www/api/MagickCore/api_8h.html 345share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/api_8h.html
346share/doc/ImageMagick/www/api/MagickCore/artifact_8c.html 346share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/artifact_8c.html
347share/doc/ImageMagick/www/api/MagickCore/artifact_8h-source.html 347share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/artifact_8h-source.html
348share/doc/ImageMagick/www/api/MagickCore/artifact_8h.html 348share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/artifact_8h.html
349share/doc/ImageMagick/www/api/MagickCore/blob-private_8h-source.html 349share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/blob-private_8h-source.html
350share/doc/ImageMagick/www/api/MagickCore/blob-private_8h.html 350share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/blob-private_8h.html
351share/doc/ImageMagick/www/api/MagickCore/blob_8c.html 351share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/blob_8c.html
352share/doc/ImageMagick/www/api/MagickCore/blob_8h-source.html 352share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/blob_8h-source.html
353share/doc/ImageMagick/www/api/MagickCore/blob_8h.html 353share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/blob_8h.html
354share/doc/ImageMagick/www/api/MagickCore/cache-private_8h-source.html 354share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/cache-private_8h-source.html
355share/doc/ImageMagick/www/api/MagickCore/cache-private_8h.html 355share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/cache-private_8h.html
356share/doc/ImageMagick/www/api/MagickCore/cache-view_8c.html 356share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/cache-view_8c.html
357share/doc/ImageMagick/www/api/MagickCore/cache-view_8h-source.html 357share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/cache-view_8h-source.html
358share/doc/ImageMagick/www/api/MagickCore/cache-view_8h.html 358share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/cache-view_8h.html
359share/doc/ImageMagick/www/api/MagickCore/cache_8c.html 359share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/cache_8c.html
360share/doc/ImageMagick/www/api/MagickCore/cache_8h-source.html 360share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/cache_8h-source.html
361share/doc/ImageMagick/www/api/MagickCore/cache_8h.html 361share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/cache_8h.html
362share/doc/ImageMagick/www/api/MagickCore/classes.html 362share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/classes.html
363share/doc/ImageMagick/www/api/MagickCore/client_8c.html 363share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/client_8c.html
364share/doc/ImageMagick/www/api/MagickCore/client_8h-source.html 364share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/client_8h-source.html
365share/doc/ImageMagick/www/api/MagickCore/client_8h.html 365share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/client_8h.html
366share/doc/ImageMagick/www/api/MagickCore/coder_8c.html 366share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/coder_8c.html
367share/doc/ImageMagick/www/api/MagickCore/coder_8h-source.html 367share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/coder_8h-source.html
368share/doc/ImageMagick/www/api/MagickCore/coder_8h.html 368share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/coder_8h.html
369share/doc/ImageMagick/www/api/MagickCore/color-private_8h-source.html 369share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/color-private_8h-source.html
370share/doc/ImageMagick/www/api/MagickCore/color-private_8h.html 370share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/color-private_8h.html
371share/doc/ImageMagick/www/api/MagickCore/color_8c.html 371share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/color_8c.html
372share/doc/ImageMagick/www/api/MagickCore/color_8h-source.html 372share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/color_8h-source.html
373share/doc/ImageMagick/www/api/MagickCore/color_8h.html 373share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/color_8h.html
374share/doc/ImageMagick/www/api/MagickCore/colorspace-private_8h-source.html 374share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/colorspace-private_8h-source.html
375share/doc/ImageMagick/www/api/MagickCore/colorspace-private_8h.html 375share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/colorspace-private_8h.html
376share/doc/ImageMagick/www/api/MagickCore/colorspace_8c.html 376share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/colorspace_8c.html
377share/doc/ImageMagick/www/api/MagickCore/colorspace_8h-source.html 377share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/colorspace_8h-source.html
378share/doc/ImageMagick/www/api/MagickCore/colorspace_8h.html 378share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/colorspace_8h.html
379share/doc/ImageMagick/www/api/MagickCore/compare_8c.html 379share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/compare_8c.html
380share/doc/ImageMagick/www/api/MagickCore/compare_8h-source.html 380share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/compare_8h-source.html
381share/doc/ImageMagick/www/api/MagickCore/compare_8h.html 381share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/compare_8h.html
382share/doc/ImageMagick/www/api/MagickCore/composite-private_8h-source.html 382share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/composite-private_8h-source.html
383share/doc/ImageMagick/www/api/MagickCore/composite-private_8h.html 383share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/composite-private_8h.html
384share/doc/ImageMagick/www/api/MagickCore/composite_8c.html 384share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/composite_8c.html
385share/doc/ImageMagick/www/api/MagickCore/composite_8h-source.html 385share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/composite_8h-source.html
386share/doc/ImageMagick/www/api/MagickCore/composite_8h.html 386share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/composite_8h.html
387share/doc/ImageMagick/www/api/MagickCore/compress_8c.html 387share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/compress_8c.html
388share/doc/ImageMagick/www/api/MagickCore/compress_8h-source.html 388share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/compress_8h-source.html
389share/doc/ImageMagick/www/api/MagickCore/compress_8h.html 389share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/compress_8h.html
390share/doc/ImageMagick/www/api/MagickCore/configure_8c.html 390share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/configure_8c.html
391share/doc/ImageMagick/www/api/MagickCore/configure_8h-source.html 391share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/configure_8h-source.html
392share/doc/ImageMagick/www/api/MagickCore/configure_8h.html 392share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/configure_8h.html
393share/doc/ImageMagick/www/api/MagickCore/constitute_8c.html 393share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/constitute_8c.html
394share/doc/ImageMagick/www/api/MagickCore/constitute_8h-source.html 394share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/constitute_8h-source.html
395share/doc/ImageMagick/www/api/MagickCore/constitute_8h.html 395share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/constitute_8h.html
396share/doc/ImageMagick/www/api/MagickCore/decorate_8c.html 396share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/decorate_8c.html
397share/doc/ImageMagick/www/api/MagickCore/decorate_8h-source.html 397share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/decorate_8h-source.html
398share/doc/ImageMagick/www/api/MagickCore/decorate_8h.html 398share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/decorate_8h.html
399share/doc/ImageMagick/www/api/MagickCore/delegate_8c.html 399share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/delegate_8c.html
400share/doc/ImageMagick/www/api/MagickCore/delegate_8h-source.html 400share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/delegate_8h-source.html
401share/doc/ImageMagick/www/api/MagickCore/delegate_8h.html 401share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/delegate_8h.html
402share/doc/ImageMagick/www/api/MagickCore/deprecate_8c.html 402share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/deprecate_8c.html
403share/doc/ImageMagick/www/api/MagickCore/deprecate_8h-source.html 403share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/deprecate_8h-source.html
404share/doc/ImageMagick/www/api/MagickCore/deprecate_8h.html 404share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/deprecate_8h.html
405share/doc/ImageMagick/www/api/MagickCore/dir_b44b349db36f8365f5234e57d3038770.html 405share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/dir_b44b349db36f8365f5234e57d3038770.html
406share/doc/ImageMagick/www/api/MagickCore/dirs.html 406share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/dirs.html
407share/doc/ImageMagick/www/api/MagickCore/display-private_8h-source.html 407share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/display-private_8h-source.html
408share/doc/ImageMagick/www/api/MagickCore/display-private_8h.html 408share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/display-private_8h.html
409share/doc/ImageMagick/www/api/MagickCore/display_8c.html 409share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/display_8c.html
410share/doc/ImageMagick/www/api/MagickCore/display_8h-source.html 410share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/display_8h-source.html
411share/doc/ImageMagick/www/api/MagickCore/display_8h.html 411share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/display_8h.html
412share/doc/ImageMagick/www/api/MagickCore/distort_8c.html 412share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/distort_8c.html
413share/doc/ImageMagick/www/api/MagickCore/distort_8h-source.html 413share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/distort_8h-source.html
414share/doc/ImageMagick/www/api/MagickCore/distort_8h.html 414share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/distort_8h.html
415share/doc/ImageMagick/www/api/MagickCore/doxygen.css 415share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/doxygen.css
416share/doc/ImageMagick/www/api/MagickCore/doxygen.png 416share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/doxygen.png
417share/doc/ImageMagick/www/api/MagickCore/draw-private_8h-source.html 417share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/draw-private_8h-source.html
418share/doc/ImageMagick/www/api/MagickCore/draw-private_8h.html 418share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/draw-private_8h.html
419share/doc/ImageMagick/www/api/MagickCore/draw_8c.html 419share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/draw_8c.html
420share/doc/ImageMagick/www/api/MagickCore/draw_8h-source.html 420share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/draw_8h-source.html
421share/doc/ImageMagick/www/api/MagickCore/draw_8h.html 421share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/draw_8h.html
422share/doc/ImageMagick/www/api/MagickCore/effect_8c.html 422share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/effect_8c.html
423share/doc/ImageMagick/www/api/MagickCore/effect_8h-source.html 423share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/effect_8h-source.html
424share/doc/ImageMagick/www/api/MagickCore/effect_8h.html 424share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/effect_8h.html
425share/doc/ImageMagick/www/api/MagickCore/enhance_8c.html 425share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/enhance_8c.html
426share/doc/ImageMagick/www/api/MagickCore/enhance_8h-source.html 426share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/enhance_8h-source.html
427share/doc/ImageMagick/www/api/MagickCore/enhance_8h.html 427share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/enhance_8h.html
428share/doc/ImageMagick/www/api/MagickCore/exception-private_8h-source.html 428share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/exception-private_8h-source.html
429share/doc/ImageMagick/www/api/MagickCore/exception-private_8h.html 429share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/exception-private_8h.html
430share/doc/ImageMagick/www/api/MagickCore/exception_8c.html 430share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/exception_8c.html
431share/doc/ImageMagick/www/api/MagickCore/exception_8h-source.html 431share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/exception_8h-source.html
432share/doc/ImageMagick/www/api/MagickCore/exception_8h.html 432share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/exception_8h.html
433share/doc/ImageMagick/www/api/MagickCore/files.html 433share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/files.html
434share/doc/ImageMagick/www/api/MagickCore/ftv2blank.png 434share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2blank.png
435share/doc/ImageMagick/www/api/MagickCore/ftv2doc.png 435share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2doc.png
436share/doc/ImageMagick/www/api/MagickCore/ftv2folderclosed.png 436share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2folderclosed.png
437share/doc/ImageMagick/www/api/MagickCore/ftv2folderopen.png 437share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2folderopen.png
438share/doc/ImageMagick/www/api/MagickCore/ftv2lastnode.png 438share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2lastnode.png
439share/doc/ImageMagick/www/api/MagickCore/ftv2link.png 439share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2link.png
440share/doc/ImageMagick/www/api/MagickCore/ftv2mlastnode.png 440share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2mlastnode.png
441share/doc/ImageMagick/www/api/MagickCore/ftv2mnode.png 441share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2mnode.png
442share/doc/ImageMagick/www/api/MagickCore/ftv2node.png 442share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2node.png
443share/doc/ImageMagick/www/api/MagickCore/ftv2plastnode.png 443share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2plastnode.png
444share/doc/ImageMagick/www/api/MagickCore/ftv2pnode.png 444share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2pnode.png
445share/doc/ImageMagick/www/api/MagickCore/ftv2vertline.png 445share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/ftv2vertline.png
446share/doc/ImageMagick/www/api/MagickCore/functions.html 446share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions.html
447share/doc/ImageMagick/www/api/MagickCore/functions_0x61.html 447share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x61.html
448share/doc/ImageMagick/www/api/MagickCore/functions_0x62.html 448share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x62.html
449share/doc/ImageMagick/www/api/MagickCore/functions_0x63.html 449share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x63.html
450share/doc/ImageMagick/www/api/MagickCore/functions_0x64.html 450share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x64.html
451share/doc/ImageMagick/www/api/MagickCore/functions_0x65.html 451share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x65.html
452share/doc/ImageMagick/www/api/MagickCore/functions_0x66.html 452share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x66.html
453share/doc/ImageMagick/www/api/MagickCore/functions_0x67.html 453share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x67.html
454share/doc/ImageMagick/www/api/MagickCore/functions_0x68.html 454share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x68.html
455share/doc/ImageMagick/www/api/MagickCore/functions_0x69.html 455share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x69.html
456share/doc/ImageMagick/www/api/MagickCore/functions_0x6b.html 456share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x6b.html
457share/doc/ImageMagick/www/api/MagickCore/functions_0x6c.html 457share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x6c.html
458share/doc/ImageMagick/www/api/MagickCore/functions_0x6d.html 458share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x6d.html
459share/doc/ImageMagick/www/api/MagickCore/functions_0x6e.html 459share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x6e.html
460share/doc/ImageMagick/www/api/MagickCore/functions_0x6f.html 460share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x6f.html
461share/doc/ImageMagick/www/api/MagickCore/functions_0x70.html 461share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x70.html
462share/doc/ImageMagick/www/api/MagickCore/functions_0x71.html 462share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x71.html
463share/doc/ImageMagick/www/api/MagickCore/functions_0x72.html 463share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x72.html
464share/doc/ImageMagick/www/api/MagickCore/functions_0x73.html 464share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x73.html
465share/doc/ImageMagick/www/api/MagickCore/functions_0x74.html 465share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x74.html
466share/doc/ImageMagick/www/api/MagickCore/functions_0x75.html 466share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x75.html
467share/doc/ImageMagick/www/api/MagickCore/functions_0x76.html 467share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x76.html
468share/doc/ImageMagick/www/api/MagickCore/functions_0x77.html 468share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x77.html
469share/doc/ImageMagick/www/api/MagickCore/functions_0x78.html 469share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x78.html
470share/doc/ImageMagick/www/api/MagickCore/functions_0x79.html 470share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x79.html
471share/doc/ImageMagick/www/api/MagickCore/functions_0x7a.html 471share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_0x7a.html
472share/doc/ImageMagick/www/api/MagickCore/functions_func.html 472share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_func.html
473share/doc/ImageMagick/www/api/MagickCore/functions_vars.html 473share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars.html
474share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x61.html 474share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x61.html
475share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x62.html 475share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x62.html
476share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x63.html 476share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x63.html
477share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x64.html 477share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x64.html
478share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x65.html 478share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x65.html
479share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x66.html 479share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x66.html
480share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x67.html 480share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x67.html
481share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x68.html 481share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x68.html
482share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x69.html 482share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x69.html
483share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6b.html 483share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x6b.html
484share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6c.html 484share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x6c.html
485share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6d.html 485share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x6d.html
486share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6e.html 486share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x6e.html
487share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6f.html 487share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x6f.html
488share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x70.html 488share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x70.html
489share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x71.html 489share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x71.html
490share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x72.html 490share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x72.html
491share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x73.html 491share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x73.html
492share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x74.html 492share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x74.html
493share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x75.html 493share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x75.html
494share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x76.html 494share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x76.html
495share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x77.html 495share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x77.html
496share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x78.html 496share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x78.html
497share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x79.html 497share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x79.html
498share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x7a.html 498share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/functions_vars_0x7a.html
499share/doc/ImageMagick/www/api/MagickCore/fx-private_8h-source.html 499share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/fx-private_8h-source.html
500share/doc/ImageMagick/www/api/MagickCore/fx-private_8h.html 500share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/fx-private_8h.html
501share/doc/ImageMagick/www/api/MagickCore/fx_8c.html 501share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/fx_8c.html
502share/doc/ImageMagick/www/api/MagickCore/fx_8h-source.html 502share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/fx_8h-source.html
503share/doc/ImageMagick/www/api/MagickCore/fx_8h.html 503share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/fx_8h.html
504share/doc/ImageMagick/www/api/MagickCore/gem_8c.html 504share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/gem_8c.html
505share/doc/ImageMagick/www/api/MagickCore/gem_8h-source.html 505share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/gem_8h-source.html
506share/doc/ImageMagick/www/api/MagickCore/gem_8h.html 506share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/gem_8h.html
507share/doc/ImageMagick/www/api/MagickCore/geometry_8c.html 507share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/geometry_8c.html
508share/doc/ImageMagick/www/api/MagickCore/geometry_8h-source.html 508share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/geometry_8h-source.html
509share/doc/ImageMagick/www/api/MagickCore/geometry_8h.html 509share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/geometry_8h.html
510share/doc/ImageMagick/www/api/MagickCore/globals.html 510share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals.html
511share/doc/ImageMagick/www/api/MagickCore/globals_0x61.html 511share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x61.html
512share/doc/ImageMagick/www/api/MagickCore/globals_0x62.html 512share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x62.html
513share/doc/ImageMagick/www/api/MagickCore/globals_0x63.html 513share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x63.html
514share/doc/ImageMagick/www/api/MagickCore/globals_0x64.html 514share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x64.html
515share/doc/ImageMagick/www/api/MagickCore/globals_0x65.html 515share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x65.html
516share/doc/ImageMagick/www/api/MagickCore/globals_0x66.html 516share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x66.html
517share/doc/ImageMagick/www/api/MagickCore/globals_0x67.html 517share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x67.html
518share/doc/ImageMagick/www/api/MagickCore/globals_0x68.html 518share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x68.html
519share/doc/ImageMagick/www/api/MagickCore/globals_0x69.html 519share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x69.html
520share/doc/ImageMagick/www/api/MagickCore/globals_0x6a.html 520share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x6a.html
521share/doc/ImageMagick/www/api/MagickCore/globals_0x6b.html 521share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x6b.html
522share/doc/ImageMagick/www/api/MagickCore/globals_0x6c.html 522share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x6c.html
523share/doc/ImageMagick/www/api/MagickCore/globals_0x6d.html 523share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x6d.html
524share/doc/ImageMagick/www/api/MagickCore/globals_0x6e.html 524share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x6e.html
525share/doc/ImageMagick/www/api/MagickCore/globals_0x6f.html 525share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x6f.html
526share/doc/ImageMagick/www/api/MagickCore/globals_0x70.html 526share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x70.html
527share/doc/ImageMagick/www/api/MagickCore/globals_0x71.html 527share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x71.html
528share/doc/ImageMagick/www/api/MagickCore/globals_0x72.html 528share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x72.html
529share/doc/ImageMagick/www/api/MagickCore/globals_0x73.html 529share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x73.html
530share/doc/ImageMagick/www/api/MagickCore/globals_0x74.html 530share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x74.html
531share/doc/ImageMagick/www/api/MagickCore/globals_0x75.html 531share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x75.html
532share/doc/ImageMagick/www/api/MagickCore/globals_0x76.html 532share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x76.html
533share/doc/ImageMagick/www/api/MagickCore/globals_0x77.html 533share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x77.html
534share/doc/ImageMagick/www/api/MagickCore/globals_0x78.html 534share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x78.html
535share/doc/ImageMagick/www/api/MagickCore/globals_0x79.html 535share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x79.html
536share/doc/ImageMagick/www/api/MagickCore/globals_0x7a.html 536share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_0x7a.html
537share/doc/ImageMagick/www/api/MagickCore/globals_defs.html 537share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs.html
538share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x61.html 538share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x61.html
539share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x62.html 539share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x62.html
540share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x63.html 540share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x63.html
541share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x64.html 541share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x64.html
542share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x65.html 542share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x65.html
543share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x66.html 543share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x66.html
544share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x67.html 544share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x67.html
545share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x68.html 545share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x68.html
546share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x69.html 546share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x69.html
547share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6b.html 547share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x6b.html
548share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6c.html 548share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x6c.html
549share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6d.html 549share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x6d.html
550share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6e.html 550share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x6e.html
551share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6f.html 551share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x6f.html
552share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x70.html 552share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x70.html
553share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x71.html 553share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x71.html
554share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x72.html 554share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x72.html
555share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x73.html 555share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x73.html
556share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x74.html 556share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x74.html
557share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x75.html 557share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x75.html
558share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x76.html 558share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x76.html
559share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x77.html 559share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x77.html
560share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x78.html 560share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x78.html
561share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x79.html 561share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_defs_0x79.html
562share/doc/ImageMagick/www/api/MagickCore/globals_enum.html 562share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_enum.html
563share/doc/ImageMagick/www/api/MagickCore/globals_eval.html 563share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval.html
564share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x62.html 564share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x62.html
565share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x63.html 565share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x63.html
566share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x64.html 566share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x64.html
567share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x65.html 567share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x65.html
568share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x66.html 568share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x66.html
569share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x67.html 569share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x67.html
570share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x68.html 570share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x68.html
571share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x69.html 571share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x69.html
572share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6a.html 572share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x6a.html
573share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6b.html 573share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x6b.html
574share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6c.html 574share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x6c.html
575share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6d.html 575share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x6d.html
576share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6e.html 576share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x6e.html
577share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6f.html 577share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x6f.html
578share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x70.html 578share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x70.html
579share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x71.html 579share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x71.html
580share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x72.html 580share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x72.html
581share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x73.html 581share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x73.html
582share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x74.html 582share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x74.html
583share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x75.html 583share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x75.html
584share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x76.html 584share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x76.html
585share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x77.html 585share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x77.html
586share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x78.html 586share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x78.html
587share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x79.html 587share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x79.html
588share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x7a.html 588share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_eval_0x7a.html
589share/doc/ImageMagick/www/api/MagickCore/globals_func.html 589share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func.html
590share/doc/ImageMagick/www/api/MagickCore/globals_func_0x62.html 590share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x62.html
591share/doc/ImageMagick/www/api/MagickCore/globals_func_0x63.html 591share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x63.html
592share/doc/ImageMagick/www/api/MagickCore/globals_func_0x64.html 592share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x64.html
593share/doc/ImageMagick/www/api/MagickCore/globals_func_0x65.html 593share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x65.html
594share/doc/ImageMagick/www/api/MagickCore/globals_func_0x66.html 594share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x66.html
595share/doc/ImageMagick/www/api/MagickCore/globals_func_0x67.html 595share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x67.html
596share/doc/ImageMagick/www/api/MagickCore/globals_func_0x68.html 596share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x68.html
597share/doc/ImageMagick/www/api/MagickCore/globals_func_0x69.html 597share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x69.html
598share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6a.html 598share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x6a.html
599share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6b.html 599share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x6b.html
600share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6c.html 600share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x6c.html
601share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6d.html 601share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x6d.html
602share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6e.html 602share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x6e.html
603share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6f.html 603share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x6f.html
604share/doc/ImageMagick/www/api/MagickCore/globals_func_0x70.html 604share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x70.html
605share/doc/ImageMagick/www/api/MagickCore/globals_func_0x71.html 605share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x71.html
606share/doc/ImageMagick/www/api/MagickCore/globals_func_0x72.html 606share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x72.html
607share/doc/ImageMagick/www/api/MagickCore/globals_func_0x73.html 607share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x73.html
608share/doc/ImageMagick/www/api/MagickCore/globals_func_0x74.html 608share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x74.html
609share/doc/ImageMagick/www/api/MagickCore/globals_func_0x75.html 609share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x75.html
610share/doc/ImageMagick/www/api/MagickCore/globals_func_0x76.html 610share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x76.html
611share/doc/ImageMagick/www/api/MagickCore/globals_func_0x77.html 611share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x77.html
612share/doc/ImageMagick/www/api/MagickCore/globals_func_0x78.html 612share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x78.html
613share/doc/ImageMagick/www/api/MagickCore/globals_func_0x79.html 613share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x79.html
614share/doc/ImageMagick/www/api/MagickCore/globals_func_0x7a.html 614share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_func_0x7a.html
615share/doc/ImageMagick/www/api/MagickCore/globals_type.html 615share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_type.html
616share/doc/ImageMagick/www/api/MagickCore/globals_vars.html 616share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/globals_vars.html
617share/doc/ImageMagick/www/api/MagickCore/hashmap_8c.html 617share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/hashmap_8c.html
618share/doc/ImageMagick/www/api/MagickCore/hashmap_8h-source.html 618share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/hashmap_8h-source.html
619share/doc/ImageMagick/www/api/MagickCore/hashmap_8h.html 619share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/hashmap_8h.html
620share/doc/ImageMagick/www/api/MagickCore/identify_8c.html 620share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/identify_8c.html
621share/doc/ImageMagick/www/api/MagickCore/identify_8h-source.html 621share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/identify_8h-source.html
622share/doc/ImageMagick/www/api/MagickCore/identify_8h.html 622share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/identify_8h.html
623share/doc/ImageMagick/www/api/MagickCore/image-private_8h-source.html 623share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/image-private_8h-source.html
624share/doc/ImageMagick/www/api/MagickCore/image-private_8h.html 624share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/image-private_8h.html
625share/doc/ImageMagick/www/api/MagickCore/image_8c.html 625share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/image_8c.html
626share/doc/ImageMagick/www/api/MagickCore/image_8h-source.html 626share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/image_8h-source.html
627share/doc/ImageMagick/www/api/MagickCore/image_8h.html 627share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/image_8h.html
628share/doc/ImageMagick/www/api/MagickCore/index.html 628share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/index.html
629share/doc/ImageMagick/www/api/MagickCore/layer_8c.html 629share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/layer_8c.html
630share/doc/ImageMagick/www/api/MagickCore/layer_8h-source.html 630share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/layer_8h-source.html
631share/doc/ImageMagick/www/api/MagickCore/layer_8h.html 631share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/layer_8h.html
632share/doc/ImageMagick/www/api/MagickCore/list_8c.html 632share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/list_8c.html
633share/doc/ImageMagick/www/api/MagickCore/list_8h-source.html 633share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/list_8h-source.html
634share/doc/ImageMagick/www/api/MagickCore/list_8h.html 634share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/list_8h.html
635share/doc/ImageMagick/www/api/MagickCore/locale_8c.html 635share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/locale_8c.html
636share/doc/ImageMagick/www/api/MagickCore/locale___8h-source.html 636share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/locale___8h-source.html
637share/doc/ImageMagick/www/api/MagickCore/locale___8h.html 637share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/locale___8h.html
638share/doc/ImageMagick/www/api/MagickCore/log_8c.html 638share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/log_8c.html
639share/doc/ImageMagick/www/api/MagickCore/log_8h-source.html 639share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/log_8h-source.html
640share/doc/ImageMagick/www/api/MagickCore/log_8h.html 640share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/log_8h.html
641share/doc/ImageMagick/www/api/MagickCore/mac_8c.html 641share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/mac_8c.html
642share/doc/ImageMagick/www/api/MagickCore/mac_8h-source.html 642share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/mac_8h-source.html
643share/doc/ImageMagick/www/api/MagickCore/mac_8h.html 643share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/mac_8h.html
644share/doc/ImageMagick/www/api/MagickCore/magic_8c.html 644share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magic_8c.html
645share/doc/ImageMagick/www/api/MagickCore/magic_8h-source.html 645share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magic_8h-source.html
646share/doc/ImageMagick/www/api/MagickCore/magic_8h.html 646share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magic_8h.html
647share/doc/ImageMagick/www/api/MagickCore/magick-config_8h-source.html 647share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magick-config_8h-source.html
648share/doc/ImageMagick/www/api/MagickCore/magick-config_8h.html 648share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magick-config_8h.html
649share/doc/ImageMagick/www/api/MagickCore/magick-type_8h-source.html 649share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magick-type_8h-source.html
650share/doc/ImageMagick/www/api/MagickCore/magick-type_8h.html 650share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magick-type_8h.html
651share/doc/ImageMagick/www/api/MagickCore/magick_8c.html 651share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magick_8c.html
652share/doc/ImageMagick/www/api/MagickCore/magick_8h-source.html 652share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magick_8h-source.html
653share/doc/ImageMagick/www/api/MagickCore/magick_8h.html 653share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/magick_8h.html
654share/doc/ImageMagick/www/api/MagickCore/main.html 654share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/main.html
655share/doc/ImageMagick/www/api/MagickCore/matrix_8c.html 655share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/matrix_8c.html
656share/doc/ImageMagick/www/api/MagickCore/matrix_8h-source.html 656share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/matrix_8h-source.html
657share/doc/ImageMagick/www/api/MagickCore/matrix_8h.html 657share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/matrix_8h.html
658share/doc/ImageMagick/www/api/MagickCore/memory_8c.html 658share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/memory_8c.html
659share/doc/ImageMagick/www/api/MagickCore/memory___8h-source.html 659share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/memory___8h-source.html
660share/doc/ImageMagick/www/api/MagickCore/memory___8h.html 660share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/memory___8h.html
661share/doc/ImageMagick/www/api/MagickCore/methods_8h-source.html 661share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/methods_8h-source.html
662share/doc/ImageMagick/www/api/MagickCore/methods_8h.html 662share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/methods_8h.html
663share/doc/ImageMagick/www/api/MagickCore/mime-private_8h-source.html 663share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/mime-private_8h-source.html
664share/doc/ImageMagick/www/api/MagickCore/mime-private_8h.html 664share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/mime-private_8h.html
665share/doc/ImageMagick/www/api/MagickCore/mime_8c.html 665share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/mime_8c.html
666share/doc/ImageMagick/www/api/MagickCore/mime_8h-source.html 666share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/mime_8h-source.html
667share/doc/ImageMagick/www/api/MagickCore/mime_8h.html 667share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/mime_8h.html
668share/doc/ImageMagick/www/api/MagickCore/module_8c.html 668share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/module_8c.html
669share/doc/ImageMagick/www/api/MagickCore/module_8h-source.html 669share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/module_8h-source.html
670share/doc/ImageMagick/www/api/MagickCore/module_8h.html 670share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/module_8h.html
671share/doc/ImageMagick/www/api/MagickCore/monitor_8c.html 671share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/monitor_8c.html
672share/doc/ImageMagick/www/api/MagickCore/monitor_8h-source.html 672share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/monitor_8h-source.html
673share/doc/ImageMagick/www/api/MagickCore/monitor_8h.html 673share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/monitor_8h.html
674share/doc/ImageMagick/www/api/MagickCore/montage_8c.html 674share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/montage_8c.html
675share/doc/ImageMagick/www/api/MagickCore/montage_8h-source.html 675share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/montage_8h-source.html
676share/doc/ImageMagick/www/api/MagickCore/montage_8h.html 676share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/montage_8h.html
677share/doc/ImageMagick/www/api/MagickCore/nt-base_8c.html 677share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/nt-base_8c.html
678share/doc/ImageMagick/www/api/MagickCore/nt-base_8h-source.html 678share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/nt-base_8h-source.html
679share/doc/ImageMagick/www/api/MagickCore/nt-base_8h.html 679share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/nt-base_8h.html
680share/doc/ImageMagick/www/api/MagickCore/nt-feature_8c.html 680share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/nt-feature_8c.html
681share/doc/ImageMagick/www/api/MagickCore/nt-feature_8h-source.html 681share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/nt-feature_8h-source.html
682share/doc/ImageMagick/www/api/MagickCore/nt-feature_8h.html 682share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/nt-feature_8h.html
683share/doc/ImageMagick/www/api/MagickCore/option_8c.html 683share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/option_8c.html
684share/doc/ImageMagick/www/api/MagickCore/option_8h-source.html 684share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/option_8h-source.html
685share/doc/ImageMagick/www/api/MagickCore/option_8h.html 685share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/option_8h.html
686share/doc/ImageMagick/www/api/MagickCore/paint_8c.html 686share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/paint_8c.html
687share/doc/ImageMagick/www/api/MagickCore/paint_8h-source.html 687share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/paint_8h-source.html
688share/doc/ImageMagick/www/api/MagickCore/paint_8h.html 688share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/paint_8h.html
689share/doc/ImageMagick/www/api/MagickCore/pixel-private_8h-source.html 689share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/pixel-private_8h-source.html
690share/doc/ImageMagick/www/api/MagickCore/pixel-private_8h.html 690share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/pixel-private_8h.html
691share/doc/ImageMagick/www/api/MagickCore/pixel_8c.html 691share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/pixel_8c.html
692share/doc/ImageMagick/www/api/MagickCore/pixel_8h-source.html 692share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/pixel_8h-source.html
693share/doc/ImageMagick/www/api/MagickCore/pixel_8h.html 693share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/pixel_8h.html
694share/doc/ImageMagick/www/api/MagickCore/prepress_8c.html 694share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/prepress_8c.html
695share/doc/ImageMagick/www/api/MagickCore/prepress_8h-source.html 695share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/prepress_8h-source.html
696share/doc/ImageMagick/www/api/MagickCore/prepress_8h.html 696share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/prepress_8h.html
697share/doc/ImageMagick/www/api/MagickCore/profile_8c.html 697share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/profile_8c.html
698share/doc/ImageMagick/www/api/MagickCore/profile_8h-source.html 698share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/profile_8h-source.html
699share/doc/ImageMagick/www/api/MagickCore/profile_8h.html 699share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/profile_8h.html
700share/doc/ImageMagick/www/api/MagickCore/property_8c.html 700share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/property_8c.html
701share/doc/ImageMagick/www/api/MagickCore/property_8h-source.html 701share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/property_8h-source.html
702share/doc/ImageMagick/www/api/MagickCore/property_8h.html 702share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/property_8h.html
703share/doc/ImageMagick/www/api/MagickCore/quantize_8c.html 703share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/quantize_8c.html
704share/doc/ImageMagick/www/api/MagickCore/quantize_8h-source.html 704share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/quantize_8h-source.html
705share/doc/ImageMagick/www/api/MagickCore/quantize_8h.html 705share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/quantize_8h.html
706share/doc/ImageMagick/www/api/MagickCore/quantum-private_8h-source.html 706share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/quantum-private_8h-source.html
707share/doc/ImageMagick/www/api/MagickCore/quantum-private_8h.html 707share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/quantum-private_8h.html
708share/doc/ImageMagick/www/api/MagickCore/quantum_8c.html 708share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/quantum_8c.html
709share/doc/ImageMagick/www/api/MagickCore/quantum_8h-source.html 709share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/quantum_8h-source.html
710share/doc/ImageMagick/www/api/MagickCore/quantum_8h.html 710share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/quantum_8h.html
711share/doc/ImageMagick/www/api/MagickCore/random_8c.html 711share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/random_8c.html
712share/doc/ImageMagick/www/api/MagickCore/random___8h-source.html 712share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/random___8h-source.html
713share/doc/ImageMagick/www/api/MagickCore/random___8h.html 713share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/random___8h.html
714share/doc/ImageMagick/www/api/MagickCore/registry_8c.html 714share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/registry_8c.html
715share/doc/ImageMagick/www/api/MagickCore/registry_8h-source.html 715share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/registry_8h-source.html
716share/doc/ImageMagick/www/api/MagickCore/registry_8h.html 716share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/registry_8h.html
717share/doc/ImageMagick/www/api/MagickCore/resample_8c.html 717share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resample_8c.html
718share/doc/ImageMagick/www/api/MagickCore/resample_8h-source.html 718share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resample_8h-source.html
719share/doc/ImageMagick/www/api/MagickCore/resample_8h.html 719share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resample_8h.html
720share/doc/ImageMagick/www/api/MagickCore/resize-private_8h-source.html 720share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resize-private_8h-source.html
721share/doc/ImageMagick/www/api/MagickCore/resize-private_8h.html 721share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resize-private_8h.html
722share/doc/ImageMagick/www/api/MagickCore/resize_8c.html 722share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resize_8c.html
723share/doc/ImageMagick/www/api/MagickCore/resize_8h-source.html 723share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resize_8h-source.html
724share/doc/ImageMagick/www/api/MagickCore/resize_8h.html 724share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resize_8h.html
725share/doc/ImageMagick/www/api/MagickCore/resource_8c.html 725share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resource_8c.html
726share/doc/ImageMagick/www/api/MagickCore/resource___8h-source.html 726share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resource___8h-source.html
727share/doc/ImageMagick/www/api/MagickCore/resource___8h.html 727share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/resource___8h.html
728share/doc/ImageMagick/www/api/MagickCore/segment_8c.html 728share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/segment_8c.html
729share/doc/ImageMagick/www/api/MagickCore/segment_8h-source.html 729share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/segment_8h-source.html
730share/doc/ImageMagick/www/api/MagickCore/segment_8h.html 730share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/segment_8h.html
731share/doc/ImageMagick/www/api/MagickCore/semaphore_8c.html 731share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/semaphore_8c.html
732share/doc/ImageMagick/www/api/MagickCore/semaphore_8h-source.html 732share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/semaphore_8h-source.html
733share/doc/ImageMagick/www/api/MagickCore/semaphore_8h.html 733share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/semaphore_8h.html
734share/doc/ImageMagick/www/api/MagickCore/shear_8c.html 734share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/shear_8c.html
735share/doc/ImageMagick/www/api/MagickCore/shear_8h-source.html 735share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/shear_8h-source.html
736share/doc/ImageMagick/www/api/MagickCore/shear_8h.html 736share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/shear_8h.html
737share/doc/ImageMagick/www/api/MagickCore/signature_8c.html 737share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/signature_8c.html
738share/doc/ImageMagick/www/api/MagickCore/signature_8h-source.html 738share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/signature_8h-source.html
739share/doc/ImageMagick/www/api/MagickCore/signature_8h.html 739share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/signature_8h.html
740share/doc/ImageMagick/www/api/MagickCore/splay-tree_8c.html 740share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/splay-tree_8c.html
741share/doc/ImageMagick/www/api/MagickCore/splay-tree_8h-source.html 741share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/splay-tree_8h-source.html
742share/doc/ImageMagick/www/api/MagickCore/splay-tree_8h.html 742share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/splay-tree_8h.html
743share/doc/ImageMagick/www/api/MagickCore/static_8c.html 743share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/static_8c.html
744share/doc/ImageMagick/www/api/MagickCore/static_8h-source.html 744share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/static_8h-source.html
745share/doc/ImageMagick/www/api/MagickCore/static_8h.html 745share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/static_8h.html
746share/doc/ImageMagick/www/api/MagickCore/statistic_8c.html 746share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/statistic_8c.html
747share/doc/ImageMagick/www/api/MagickCore/statistic_8h-source.html 747share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/statistic_8h-source.html
748share/doc/ImageMagick/www/api/MagickCore/statistic_8h.html 748share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/statistic_8h.html
749share/doc/ImageMagick/www/api/MagickCore/stream-private_8h-source.html 749share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/stream-private_8h-source.html
750share/doc/ImageMagick/www/api/MagickCore/stream-private_8h.html 750share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/stream-private_8h.html
751share/doc/ImageMagick/www/api/MagickCore/stream_8c.html 751share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/stream_8c.html
752share/doc/ImageMagick/www/api/MagickCore/stream_8h-source.html 752share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/stream_8h-source.html
753share/doc/ImageMagick/www/api/MagickCore/stream_8h.html 753share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/stream_8h.html
754share/doc/ImageMagick/www/api/MagickCore/string_8c.html 754share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/string_8c.html
755share/doc/ImageMagick/www/api/MagickCore/string___8h-source.html 755share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/string___8h-source.html
756share/doc/ImageMagick/www/api/MagickCore/string___8h.html 756share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/string___8h.html
757share/doc/ImageMagick/www/api/MagickCore/structHuffmanTable.html 757share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/structHuffmanTable.html
758share/doc/ImageMagick/www/api/MagickCore/structSemaphoreInfo.html 758share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/structSemaphoreInfo.html
759share/doc/ImageMagick/www/api/MagickCore/struct__AffineMatrix.html 759share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__AffineMatrix.html
760share/doc/ImageMagick/www/api/MagickCore/struct__Ascii85Info.html 760share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__Ascii85Info.html
761share/doc/ImageMagick/www/api/MagickCore/struct__BlobInfo.html 761share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__BlobInfo.html
762share/doc/ImageMagick/www/api/MagickCore/struct__CacheInfo.html 762share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__CacheInfo.html
763share/doc/ImageMagick/www/api/MagickCore/struct__CacheMethods.html 763share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__CacheMethods.html
764share/doc/ImageMagick/www/api/MagickCore/struct__CacheView.html 764share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__CacheView.html
765share/doc/ImageMagick/www/api/MagickCore/struct__ChannelStatistics.html 765share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ChannelStatistics.html
766share/doc/ImageMagick/www/api/MagickCore/struct__ChromaticityInfo.html 766share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ChromaticityInfo.html
767share/doc/ImageMagick/www/api/MagickCore/struct__Cluster.html 767share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__Cluster.html
768share/doc/ImageMagick/www/api/MagickCore/struct__CoderInfo.html 768share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__CoderInfo.html
769share/doc/ImageMagick/www/api/MagickCore/struct__ColorInfo.html 769share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ColorInfo.html
770share/doc/ImageMagick/www/api/MagickCore/struct__ColorPacket.html 770share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ColorPacket.html
771share/doc/ImageMagick/www/api/MagickCore/struct__ConfigureInfo.html 771share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ConfigureInfo.html
772share/doc/ImageMagick/www/api/MagickCore/struct__ContributionInfo.html 772share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ContributionInfo.html
773share/doc/ImageMagick/www/api/MagickCore/struct__CubeInfo.html 773share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__CubeInfo.html
774share/doc/ImageMagick/www/api/MagickCore/struct__DIR.html 774share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__DIR.html
775share/doc/ImageMagick/www/api/MagickCore/struct__DataSegmentInfo.html 775share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__DataSegmentInfo.html
776share/doc/ImageMagick/www/api/MagickCore/struct__DelegateInfo.html 776share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__DelegateInfo.html
777share/doc/ImageMagick/www/api/MagickCore/struct__DiversityPacket.html 777share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__DiversityPacket.html
778share/doc/ImageMagick/www/api/MagickCore/struct__DoublePixelPacket.html 778share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__DoublePixelPacket.html
779share/doc/ImageMagick/www/api/MagickCore/struct__DrawInfo.html 779share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__DrawInfo.html
780share/doc/ImageMagick/www/api/MagickCore/struct__EdgeInfo.html 780share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__EdgeInfo.html
781share/doc/ImageMagick/www/api/MagickCore/struct__ElementInfo.html 781share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ElementInfo.html
782share/doc/ImageMagick/www/api/MagickCore/struct__ElementReference.html 782share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ElementReference.html
783share/doc/ImageMagick/www/api/MagickCore/struct__EntryInfo.html 783share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__EntryInfo.html
784share/doc/ImageMagick/www/api/MagickCore/struct__ErrorInfo.html 784share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ErrorInfo.html
785share/doc/ImageMagick/www/api/MagickCore/struct__EventInfo.html 785share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__EventInfo.html
786share/doc/ImageMagick/www/api/MagickCore/struct__ExceptionInfo.html 786share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ExceptionInfo.html
787share/doc/ImageMagick/www/api/MagickCore/struct__ExtentPacket.html 787share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ExtentPacket.html
788share/doc/ImageMagick/www/api/MagickCore/struct__FrameInfo.html 788share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__FrameInfo.html
789share/doc/ImageMagick/www/api/MagickCore/struct__FxInfo.html 789share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__FxInfo.html
790share/doc/ImageMagick/www/api/MagickCore/struct__GeometryInfo.html 790share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__GeometryInfo.html
791share/doc/ImageMagick/www/api/MagickCore/struct__GhostscriptVectors.html 791share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__GhostscriptVectors.html
792share/doc/ImageMagick/www/api/MagickCore/struct__GradientInfo.html 792share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__GradientInfo.html
793share/doc/ImageMagick/www/api/MagickCore/struct__HandlerInfo.html 793share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__HandlerInfo.html
794share/doc/ImageMagick/www/api/MagickCore/struct__HashmapInfo.html 794share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__HashmapInfo.html
795share/doc/ImageMagick/www/api/MagickCore/struct__Image.html 795share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__Image.html
796share/doc/ImageMagick/www/api/MagickCore/struct__ImageAttribute.html 796share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ImageAttribute.html
797share/doc/ImageMagick/www/api/MagickCore/struct__ImageInfo.html 797share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ImageInfo.html
798share/doc/ImageMagick/www/api/MagickCore/struct__IntervalTree.html 798share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__IntervalTree.html
799share/doc/ImageMagick/www/api/MagickCore/struct__LinkedListInfo.html 799share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__LinkedListInfo.html
800share/doc/ImageMagick/www/api/MagickCore/struct__LocaleInfo.html 800share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__LocaleInfo.html
801share/doc/ImageMagick/www/api/MagickCore/struct__LogInfo.html 801share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__LogInfo.html
802share/doc/ImageMagick/www/api/MagickCore/struct__LongPixelPacket.html 802share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__LongPixelPacket.html
803share/doc/ImageMagick/www/api/MagickCore/struct__MagicInfo.html 803share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MagicInfo.html
804share/doc/ImageMagick/www/api/MagickCore/struct__MagickInfo.html 804share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MagickInfo.html
805share/doc/ImageMagick/www/api/MagickCore/struct__MagickPixelPacket.html 805share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MagickPixelPacket.html
806share/doc/ImageMagick/www/api/MagickCore/struct__MedianListNode.html 806share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MedianListNode.html
807share/doc/ImageMagick/www/api/MagickCore/struct__MedianPixelList.html 807share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MedianPixelList.html
808share/doc/ImageMagick/www/api/MagickCore/struct__MedianSkipList.html 808share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MedianSkipList.html
809share/doc/ImageMagick/www/api/MagickCore/struct__MemoryInfo.html 809share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MemoryInfo.html
810share/doc/ImageMagick/www/api/MagickCore/struct__MimeInfo.html 810share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MimeInfo.html
811share/doc/ImageMagick/www/api/MagickCore/struct__ModuleInfo.html 811share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ModuleInfo.html
812share/doc/ImageMagick/www/api/MagickCore/struct__MontageInfo.html 812share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__MontageInfo.html
813share/doc/ImageMagick/www/api/MagickCore/struct__NTMEMORYSTATUSEX.html 813share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__NTMEMORYSTATUSEX.html
814share/doc/ImageMagick/www/api/MagickCore/struct__NexusInfo.html 814share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__NexusInfo.html
815share/doc/ImageMagick/www/api/MagickCore/struct__NodeInfo.html 815share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__NodeInfo.html
816share/doc/ImageMagick/www/api/MagickCore/struct__Nodes.html 816share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__Nodes.html
817share/doc/ImageMagick/www/api/MagickCore/struct__OptionInfo.html 817share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__OptionInfo.html
818share/doc/ImageMagick/www/api/MagickCore/struct__PathInfo.html 818share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__PathInfo.html
819share/doc/ImageMagick/www/api/MagickCore/struct__PixelPacket.html 819share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__PixelPacket.html
820share/doc/ImageMagick/www/api/MagickCore/struct__PointInfo.html 820share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__PointInfo.html
821share/doc/ImageMagick/www/api/MagickCore/struct__PolygonInfo.html 821share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__PolygonInfo.html
822share/doc/ImageMagick/www/api/MagickCore/struct__PrimaryInfo.html 822share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__PrimaryInfo.html
823share/doc/ImageMagick/www/api/MagickCore/struct__PrimitiveInfo.html 823share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__PrimitiveInfo.html
824share/doc/ImageMagick/www/api/MagickCore/struct__ProfileInfo.html 824share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ProfileInfo.html
825share/doc/ImageMagick/www/api/MagickCore/struct__QuantizeInfo.html 825share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__QuantizeInfo.html
826share/doc/ImageMagick/www/api/MagickCore/struct__QuantumInfo.html 826share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__QuantumInfo.html
827share/doc/ImageMagick/www/api/MagickCore/struct__QuantumState.html 827share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__QuantumState.html
828share/doc/ImageMagick/www/api/MagickCore/struct__RandomInfo.html 828share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__RandomInfo.html
829share/doc/ImageMagick/www/api/MagickCore/struct__RealPixelPacket.html 829share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__RealPixelPacket.html
830share/doc/ImageMagick/www/api/MagickCore/struct__RectangleInfo.html 830share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__RectangleInfo.html
831share/doc/ImageMagick/www/api/MagickCore/struct__RegistryInfo.html 831share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__RegistryInfo.html
832share/doc/ImageMagick/www/api/MagickCore/struct__ResampleFilter.html 832share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ResampleFilter.html
833share/doc/ImageMagick/www/api/MagickCore/struct__ResizeFilter.html 833share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ResizeFilter.html
834share/doc/ImageMagick/www/api/MagickCore/struct__ResourceInfo.html 834share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ResourceInfo.html
835share/doc/ImageMagick/www/api/MagickCore/struct__SegmentInfo.html 835share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__SegmentInfo.html
836share/doc/ImageMagick/www/api/MagickCore/struct__SignatureInfo.html 836share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__SignatureInfo.html
837share/doc/ImageMagick/www/api/MagickCore/struct__SplayTreeInfo.html 837share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__SplayTreeInfo.html
838share/doc/ImageMagick/www/api/MagickCore/struct__StopInfo.html 838share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__StopInfo.html
839share/doc/ImageMagick/www/api/MagickCore/struct__StreamInfo.html 839share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__StreamInfo.html
840share/doc/ImageMagick/www/api/MagickCore/struct__StringInfo.html 840share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__StringInfo.html
841share/doc/ImageMagick/www/api/MagickCore/struct__ThresholdMap.html 841share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ThresholdMap.html
842share/doc/ImageMagick/www/api/MagickCore/struct__Timer.html 842share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__Timer.html
843share/doc/ImageMagick/www/api/MagickCore/struct__TimerInfo.html 843share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__TimerInfo.html
844share/doc/ImageMagick/www/api/MagickCore/struct__TokenInfo.html 844share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__TokenInfo.html
845share/doc/ImageMagick/www/api/MagickCore/struct__TypeInfo.html 845share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__TypeInfo.html
846share/doc/ImageMagick/www/api/MagickCore/struct__TypeMetric.html 846share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__TypeMetric.html
847share/doc/ImageMagick/www/api/MagickCore/struct__ViewInfo.html 847share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ViewInfo.html
848share/doc/ImageMagick/www/api/MagickCore/struct__XImportInfo.html 848share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__XImportInfo.html
849share/doc/ImageMagick/www/api/MagickCore/struct__XMLTreeInfo.html 849share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__XMLTreeInfo.html
850share/doc/ImageMagick/www/api/MagickCore/struct__XMLTreeRoot.html 850share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__XMLTreeRoot.html
851share/doc/ImageMagick/www/api/MagickCore/struct__XWidgetInfo.html 851share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__XWidgetInfo.html
852share/doc/ImageMagick/www/api/MagickCore/struct__ZeroCrossing.html 852share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ZeroCrossing.html
853share/doc/ImageMagick/www/api/MagickCore/struct__dirdesc.html 853share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__dirdesc.html
854share/doc/ImageMagick/www/api/MagickCore/struct__ile3.html 854share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/struct__ile3.html
855share/doc/ImageMagick/www/api/MagickCore/structdirent.html 855share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/structdirent.html
856share/doc/ImageMagick/www/api/MagickCore/studio_8h-source.html 856share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/studio_8h-source.html
857share/doc/ImageMagick/www/api/MagickCore/studio_8h.html 857share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/studio_8h.html
858share/doc/ImageMagick/www/api/MagickCore/tab_b.gif 858share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/tab_b.gif
859share/doc/ImageMagick/www/api/MagickCore/tab_l.gif 859share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/tab_l.gif
860share/doc/ImageMagick/www/api/MagickCore/tab_r.gif 860share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/tab_r.gif
861share/doc/ImageMagick/www/api/MagickCore/tabs.css 861share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/tabs.css
862share/doc/ImageMagick/www/api/MagickCore/threshold_8c.html 862share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/threshold_8c.html
863share/doc/ImageMagick/www/api/MagickCore/threshold_8h-source.html 863share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/threshold_8h-source.html
864share/doc/ImageMagick/www/api/MagickCore/threshold_8h.html 864share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/threshold_8h.html
865share/doc/ImageMagick/www/api/MagickCore/timer_8c.html 865share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/timer_8c.html
866share/doc/ImageMagick/www/api/MagickCore/timer_8h-source.html 866share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/timer_8h-source.html
867share/doc/ImageMagick/www/api/MagickCore/timer_8h.html 867share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/timer_8h.html
868share/doc/ImageMagick/www/api/MagickCore/token_8c.html 868share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/token_8c.html
869share/doc/ImageMagick/www/api/MagickCore/token_8h-source.html 869share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/token_8h-source.html
870share/doc/ImageMagick/www/api/MagickCore/token_8h.html 870share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/token_8h.html
871share/doc/ImageMagick/www/api/MagickCore/transform_8c.html 871share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/transform_8c.html
872share/doc/ImageMagick/www/api/MagickCore/transform_8h-source.html 872share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/transform_8h-source.html
873share/doc/ImageMagick/www/api/MagickCore/transform_8h.html 873share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/transform_8h.html
874share/doc/ImageMagick/www/api/MagickCore/tree.html 874share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/tree.html
875share/doc/ImageMagick/www/api/MagickCore/type_8c.html 875share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/type_8c.html
876share/doc/ImageMagick/www/api/MagickCore/type_8h-source.html 876share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/type_8h-source.html
877share/doc/ImageMagick/www/api/MagickCore/type_8h.html 877share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/type_8h.html
878share/doc/ImageMagick/www/api/MagickCore/utility_8c.html 878share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/utility_8c.html
879share/doc/ImageMagick/www/api/MagickCore/utility_8h-source.html 879share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/utility_8h-source.html
880share/doc/ImageMagick/www/api/MagickCore/utility_8h.html 880share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/utility_8h.html
881share/doc/ImageMagick/www/api/MagickCore/version_8c.html 881share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/version_8c.html
882share/doc/ImageMagick/www/api/MagickCore/version_8h-source.html 882share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/version_8h-source.html
883share/doc/ImageMagick/www/api/MagickCore/version_8h.html 883share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/version_8h.html
884share/doc/ImageMagick/www/api/MagickCore/vms_8c.html 884share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/vms_8c.html
885share/doc/ImageMagick/www/api/MagickCore/vms_8h-source.html 885share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/vms_8h-source.html
886share/doc/ImageMagick/www/api/MagickCore/vms_8h.html 886share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/vms_8h.html
887share/doc/ImageMagick/www/api/MagickCore/widget_8c.html 887share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/widget_8c.html
888share/doc/ImageMagick/www/api/MagickCore/widget_8h-source.html 888share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/widget_8h-source.html
889share/doc/ImageMagick/www/api/MagickCore/widget_8h.html 889share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/widget_8h.html
890share/doc/ImageMagick/www/api/MagickCore/xml-tree_8c.html 890share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/xml-tree_8c.html
891share/doc/ImageMagick/www/api/MagickCore/xml-tree_8h-source.html 891share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/xml-tree_8h-source.html
892share/doc/ImageMagick/www/api/MagickCore/xml-tree_8h.html 892share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/xml-tree_8h.html
893share/doc/ImageMagick/www/api/MagickCore/xwindow-private_8h-source.html 893share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/xwindow-private_8h-source.html
894share/doc/ImageMagick/www/api/MagickCore/xwindow-private_8h.html 894share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/xwindow-private_8h.html
895share/doc/ImageMagick/www/api/MagickCore/xwindow_8c.html 895share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/xwindow_8c.html
896share/doc/ImageMagick/www/api/MagickCore/xwindow_8h-source.html 896share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/xwindow_8h-source.html
897share/doc/ImageMagick/www/api/MagickCore/xwindow_8h.html 897share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickCore/xwindow_8h.html
898share/doc/ImageMagick/www/api/MagickWand/MagickWand_8h-source.html 898share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/MagickWand_8h-source.html
899share/doc/ImageMagick/www/api/MagickWand/MagickWand_8h.html 899share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/MagickWand_8h.html
900share/doc/ImageMagick/www/api/MagickWand/animate_8c.html 900share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/animate_8c.html
901share/doc/ImageMagick/www/api/MagickWand/animate_8h-source.html 901share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/animate_8h-source.html
902share/doc/ImageMagick/www/api/MagickWand/animate_8h.html 902share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/animate_8h.html
903share/doc/ImageMagick/www/api/MagickWand/annotated.html 903share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/annotated.html
904share/doc/ImageMagick/www/api/MagickWand/classes.html 904share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/classes.html
905share/doc/ImageMagick/www/api/MagickWand/compare_8c.html 905share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/compare_8c.html
906share/doc/ImageMagick/www/api/MagickWand/compare_8h-source.html 906share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/compare_8h-source.html
907share/doc/ImageMagick/www/api/MagickWand/compare_8h.html 907share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/compare_8h.html
908share/doc/ImageMagick/www/api/MagickWand/composite_8c.html 908share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/composite_8c.html
909share/doc/ImageMagick/www/api/MagickWand/composite_8h-source.html 909share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/composite_8h-source.html
910share/doc/ImageMagick/www/api/MagickWand/composite_8h.html 910share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/composite_8h.html
911share/doc/ImageMagick/www/api/MagickWand/conjure_8c.html 911share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/conjure_8c.html
912share/doc/ImageMagick/www/api/MagickWand/conjure_8h-source.html 912share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/conjure_8h-source.html
913share/doc/ImageMagick/www/api/MagickWand/conjure_8h.html 913share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/conjure_8h.html
914share/doc/ImageMagick/www/api/MagickWand/convert_8c.html 914share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/convert_8c.html
915share/doc/ImageMagick/www/api/MagickWand/convert_8h-source.html 915share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/convert_8h-source.html
916share/doc/ImageMagick/www/api/MagickWand/convert_8h.html 916share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/convert_8h.html
917share/doc/ImageMagick/www/api/MagickWand/deprecate_8c.html 917share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/deprecate_8c.html
918share/doc/ImageMagick/www/api/MagickWand/deprecate_8h-source.html 918share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/deprecate_8h-source.html
919share/doc/ImageMagick/www/api/MagickWand/deprecate_8h.html 919share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/deprecate_8h.html
920share/doc/ImageMagick/www/api/MagickWand/dir_101f7ac0a894e32543a314e85b2e1524.html 920share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/dir_101f7ac0a894e32543a314e85b2e1524.html
921share/doc/ImageMagick/www/api/MagickWand/dirs.html 921share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/dirs.html
922share/doc/ImageMagick/www/api/MagickWand/display_8c.html 922share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/display_8c.html
923share/doc/ImageMagick/www/api/MagickWand/display_8h-source.html 923share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/display_8h-source.html
924share/doc/ImageMagick/www/api/MagickWand/display_8h.html 924share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/display_8h.html
925share/doc/ImageMagick/www/api/MagickWand/doxygen.css 925share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/doxygen.css
926share/doc/ImageMagick/www/api/MagickWand/doxygen.png 926share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/doxygen.png
927share/doc/ImageMagick/www/api/MagickWand/drawing-wand_8c.html 927share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/drawing-wand_8c.html
928share/doc/ImageMagick/www/api/MagickWand/drawing-wand_8h-source.html 928share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/drawing-wand_8h-source.html
929share/doc/ImageMagick/www/api/MagickWand/drawing-wand_8h.html 929share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/drawing-wand_8h.html
930share/doc/ImageMagick/www/api/MagickWand/drawtest_8c.html 930share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/drawtest_8c.html
931share/doc/ImageMagick/www/api/MagickWand/files.html 931share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/files.html
932share/doc/ImageMagick/www/api/MagickWand/ftv2blank.png 932share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2blank.png
933share/doc/ImageMagick/www/api/MagickWand/ftv2doc.png 933share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2doc.png
934share/doc/ImageMagick/www/api/MagickWand/ftv2folderclosed.png 934share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2folderclosed.png
935share/doc/ImageMagick/www/api/MagickWand/ftv2folderopen.png 935share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2folderopen.png
936share/doc/ImageMagick/www/api/MagickWand/ftv2lastnode.png 936share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2lastnode.png
937share/doc/ImageMagick/www/api/MagickWand/ftv2link.png 937share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2link.png
938share/doc/ImageMagick/www/api/MagickWand/ftv2mlastnode.png 938share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2mlastnode.png
939share/doc/ImageMagick/www/api/MagickWand/ftv2mnode.png 939share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2mnode.png
940share/doc/ImageMagick/www/api/MagickWand/ftv2node.png 940share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2node.png
941share/doc/ImageMagick/www/api/MagickWand/ftv2plastnode.png 941share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2plastnode.png
942share/doc/ImageMagick/www/api/MagickWand/ftv2pnode.png 942share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2pnode.png
943share/doc/ImageMagick/www/api/MagickWand/ftv2vertline.png 943share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/ftv2vertline.png
944share/doc/ImageMagick/www/api/MagickWand/functions.html 944share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/functions.html
945share/doc/ImageMagick/www/api/MagickWand/functions_vars.html 945share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/functions_vars.html
946share/doc/ImageMagick/www/api/MagickWand/globals.html 946share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals.html
947share/doc/ImageMagick/www/api/MagickWand/globals_0x61.html 947share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x61.html
948share/doc/ImageMagick/www/api/MagickWand/globals_0x62.html 948share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x62.html
949share/doc/ImageMagick/www/api/MagickWand/globals_0x63.html 949share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x63.html
950share/doc/ImageMagick/www/api/MagickWand/globals_0x64.html 950share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x64.html
951share/doc/ImageMagick/www/api/MagickWand/globals_0x65.html 951share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x65.html
952share/doc/ImageMagick/www/api/MagickWand/globals_0x67.html 952share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x67.html
953share/doc/ImageMagick/www/api/MagickWand/globals_0x69.html 953share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x69.html
954share/doc/ImageMagick/www/api/MagickWand/globals_0x6d.html 954share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x6d.html
955share/doc/ImageMagick/www/api/MagickWand/globals_0x6e.html 955share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x6e.html
956share/doc/ImageMagick/www/api/MagickWand/globals_0x6f.html 956share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x6f.html
957share/doc/ImageMagick/www/api/MagickWand/globals_0x70.html 957share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x70.html
958share/doc/ImageMagick/www/api/MagickWand/globals_0x71.html 958share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x71.html
959share/doc/ImageMagick/www/api/MagickWand/globals_0x72.html 959share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x72.html
960share/doc/ImageMagick/www/api/MagickWand/globals_0x73.html 960share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x73.html
961share/doc/ImageMagick/www/api/MagickWand/globals_0x74.html 961share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x74.html
962share/doc/ImageMagick/www/api/MagickWand/globals_0x75.html 962share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x75.html
963share/doc/ImageMagick/www/api/MagickWand/globals_0x77.html 963share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x77.html
964share/doc/ImageMagick/www/api/MagickWand/globals_0x78.html 964share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_0x78.html
965share/doc/ImageMagick/www/api/MagickWand/globals_defs.html 965share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_defs.html
966share/doc/ImageMagick/www/api/MagickWand/globals_enum.html 966share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_enum.html
967share/doc/ImageMagick/www/api/MagickWand/globals_eval.html 967share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_eval.html
968share/doc/ImageMagick/www/api/MagickWand/globals_func.html 968share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func.html
969share/doc/ImageMagick/www/api/MagickWand/globals_func_0x63.html 969share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x63.html
970share/doc/ImageMagick/www/api/MagickWand/globals_func_0x64.html 970share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x64.html
971share/doc/ImageMagick/www/api/MagickWand/globals_func_0x67.html 971share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x67.html
972share/doc/ImageMagick/www/api/MagickWand/globals_func_0x69.html 972share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x69.html
973share/doc/ImageMagick/www/api/MagickWand/globals_func_0x6d.html 973share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x6d.html
974share/doc/ImageMagick/www/api/MagickWand/globals_func_0x6e.html 974share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x6e.html
975share/doc/ImageMagick/www/api/MagickWand/globals_func_0x70.html 975share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x70.html
976share/doc/ImageMagick/www/api/MagickWand/globals_func_0x72.html 976share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x72.html
977share/doc/ImageMagick/www/api/MagickWand/globals_func_0x73.html 977share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_func_0x73.html
978share/doc/ImageMagick/www/api/MagickWand/globals_type.html 978share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_type.html
979share/doc/ImageMagick/www/api/MagickWand/globals_vars.html 979share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/globals_vars.html
980share/doc/ImageMagick/www/api/MagickWand/identify_8c.html 980share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/identify_8c.html
981share/doc/ImageMagick/www/api/MagickWand/identify_8h-source.html 981share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/identify_8h-source.html
982share/doc/ImageMagick/www/api/MagickWand/identify_8h.html 982share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/identify_8h.html
983share/doc/ImageMagick/www/api/MagickWand/import_8c.html 983share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/import_8c.html
984share/doc/ImageMagick/www/api/MagickWand/import_8h-source.html 984share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/import_8h-source.html
985share/doc/ImageMagick/www/api/MagickWand/import_8h.html 985share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/import_8h.html
986share/doc/ImageMagick/www/api/MagickWand/index.html 986share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/index.html
987share/doc/ImageMagick/www/api/MagickWand/magick-image_8c.html 987share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-image_8c.html
988share/doc/ImageMagick/www/api/MagickWand/magick-image_8h-source.html 988share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-image_8h-source.html
989share/doc/ImageMagick/www/api/MagickWand/magick-image_8h.html 989share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-image_8h.html
990share/doc/ImageMagick/www/api/MagickWand/magick-property_8c.html 990share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-property_8c.html
991share/doc/ImageMagick/www/api/MagickWand/magick-property_8h-source.html 991share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-property_8h-source.html
992share/doc/ImageMagick/www/api/MagickWand/magick-property_8h.html 992share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-property_8h.html
993share/doc/ImageMagick/www/api/MagickWand/magick-wand-private_8h-source.html 993share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-wand-private_8h-source.html
994share/doc/ImageMagick/www/api/MagickWand/magick-wand-private_8h.html 994share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-wand-private_8h.html
995share/doc/ImageMagick/www/api/MagickWand/magick-wand_8c.html 995share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-wand_8c.html
996share/doc/ImageMagick/www/api/MagickWand/magick-wand_8h-source.html 996share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-wand_8h-source.html
997share/doc/ImageMagick/www/api/MagickWand/magick-wand_8h.html 997share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick-wand_8h.html
998share/doc/ImageMagick/www/api/MagickWand/magick__wand_8h-source.html 998share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick__wand_8h-source.html
999share/doc/ImageMagick/www/api/MagickWand/magick__wand_8h.html 999share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/magick__wand_8h.html
1000share/doc/ImageMagick/www/api/MagickWand/main.html 1000share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/main.html
1001share/doc/ImageMagick/www/api/MagickWand/mogrify-private_8h-source.html 1001share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/mogrify-private_8h-source.html
1002share/doc/ImageMagick/www/api/MagickWand/mogrify-private_8h.html 1002share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/mogrify-private_8h.html
1003share/doc/ImageMagick/www/api/MagickWand/mogrify_8c.html 1003share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/mogrify_8c.html
1004share/doc/ImageMagick/www/api/MagickWand/mogrify_8h-source.html 1004share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/mogrify_8h-source.html
1005share/doc/ImageMagick/www/api/MagickWand/mogrify_8h.html 1005share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/mogrify_8h.html
1006share/doc/ImageMagick/www/api/MagickWand/montage_8c.html 1006share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/montage_8c.html
1007share/doc/ImageMagick/www/api/MagickWand/montage_8h-source.html 1007share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/montage_8h-source.html
1008share/doc/ImageMagick/www/api/MagickWand/montage_8h.html 1008share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/montage_8h.html
1009share/doc/ImageMagick/www/api/MagickWand/pixel-iterator_8c.html 1009share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/pixel-iterator_8c.html
1010share/doc/ImageMagick/www/api/MagickWand/pixel-iterator_8h-source.html 1010share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/pixel-iterator_8h-source.html
1011share/doc/ImageMagick/www/api/MagickWand/pixel-iterator_8h.html 1011share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/pixel-iterator_8h.html
1012share/doc/ImageMagick/www/api/MagickWand/pixel-wand-private_8h-source.html 1012share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/pixel-wand-private_8h-source.html
1013share/doc/ImageMagick/www/api/MagickWand/pixel-wand-private_8h.html 1013share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/pixel-wand-private_8h.html
1014share/doc/ImageMagick/www/api/MagickWand/pixel-wand_8c.html 1014share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/pixel-wand_8c.html
1015share/doc/ImageMagick/www/api/MagickWand/pixel-wand_8h-source.html 1015share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/pixel-wand_8h-source.html
1016share/doc/ImageMagick/www/api/MagickWand/pixel-wand_8h.html 1016share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/pixel-wand_8h.html
1017share/doc/ImageMagick/www/api/MagickWand/stream_8c.html 1017share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/stream_8c.html
1018share/doc/ImageMagick/www/api/MagickWand/stream_8h-source.html 1018share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/stream_8h-source.html
1019share/doc/ImageMagick/www/api/MagickWand/stream_8h.html 1019share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/stream_8h.html
1020share/doc/ImageMagick/www/api/MagickWand/struct__CompositeOptions.html 1020share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/struct__CompositeOptions.html
1021share/doc/ImageMagick/www/api/MagickWand/struct__DrawVTable.html 1021share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/struct__DrawVTable.html
1022share/doc/ImageMagick/www/api/MagickWand/struct__DrawingWand.html 1022share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/struct__DrawingWand.html
1023share/doc/ImageMagick/www/api/MagickWand/struct__MagickWand.html 1023share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/struct__MagickWand.html
1024share/doc/ImageMagick/www/api/MagickWand/struct__PixelIterator.html 1024share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/struct__PixelIterator.html
1025share/doc/ImageMagick/www/api/MagickWand/struct__PixelWand.html 1025share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/struct__PixelWand.html
1026share/doc/ImageMagick/www/api/MagickWand/studio_8h-source.html 1026share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/studio_8h-source.html
1027share/doc/ImageMagick/www/api/MagickWand/studio_8h.html 1027share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/studio_8h.html
1028share/doc/ImageMagick/www/api/MagickWand/tab_b.gif 1028share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/tab_b.gif
1029share/doc/ImageMagick/www/api/MagickWand/tab_l.gif 1029share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/tab_l.gif
1030share/doc/ImageMagick/www/api/MagickWand/tab_r.gif 1030share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/tab_r.gif
1031share/doc/ImageMagick/www/api/MagickWand/tabs.css 1031share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/tabs.css
1032share/doc/ImageMagick/www/api/MagickWand/tree.html 1032share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/tree.html
1033share/doc/ImageMagick/www/api/MagickWand/wand_8c.html 1033share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/wand_8c.html
1034share/doc/ImageMagick/www/api/MagickWand/wand_8h-source.html 1034share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/wand_8h-source.html
1035share/doc/ImageMagick/www/api/MagickWand/wand_8h.html 1035share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/wand_8h.html
1036share/doc/ImageMagick/www/api/MagickWand/wandtest_8c.html 1036share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/MagickWand/wandtest_8c.html
1037share/doc/ImageMagick/www/api/animate.html 1037share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/animate.html
1038share/doc/ImageMagick/www/api/annotate.html 1038share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/annotate.html
1039share/doc/ImageMagick/www/api/attribute.html 1039share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/attribute.html
1040share/doc/ImageMagick/www/api/blob.html 1040share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/blob.html
1041share/doc/ImageMagick/www/api/cache-view.html 1041share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/cache-view.html
1042share/doc/ImageMagick/www/api/cache.html 1042share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/cache.html
1043share/doc/ImageMagick/www/api/cipher.html 1043share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/cipher.html
1044share/doc/ImageMagick/www/api/color.html 1044share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/color.html
1045share/doc/ImageMagick/www/api/colormap.html 1045share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/colormap.html
1046share/doc/ImageMagick/www/api/colorspace.html 1046share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/colorspace.html
1047share/doc/ImageMagick/www/api/compare.html 1047share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/compare.html
1048share/doc/ImageMagick/www/api/composite.html 1048share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/composite.html
1049share/doc/ImageMagick/www/api/constitute.html 1049share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/constitute.html
1050share/doc/ImageMagick/www/api/decorate.html 1050share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/decorate.html
1051share/doc/ImageMagick/www/api/deprecate.html 1051share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/deprecate.html
1052share/doc/ImageMagick/www/api/display.html 1052share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/display.html
1053share/doc/ImageMagick/www/api/distort.html 1053share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/distort.html
1054share/doc/ImageMagick/www/api/draw.html 1054share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/draw.html
1055share/doc/ImageMagick/www/api/drawing-wand.html 1055share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/drawing-wand.html
1056share/doc/ImageMagick/www/api/effect.html 1056share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/effect.html
1057share/doc/ImageMagick/www/api/enhance.html 1057share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/enhance.html
1058share/doc/ImageMagick/www/api/exception.html 1058share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/exception.html
1059share/doc/ImageMagick/www/api/feature.html 1059share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/feature.html
1060share/doc/ImageMagick/www/api/fourier.html 1060share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/fourier.html
1061share/doc/ImageMagick/www/api/fx.html 1061share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/fx.html
1062share/doc/ImageMagick/www/api/histogram.html 1062share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/histogram.html
1063share/doc/ImageMagick/www/api/image-view.html 1063share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/image-view.html
1064share/doc/ImageMagick/www/api/image.html 1064share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/image.html
1065share/doc/ImageMagick/www/api/layer.html 1065share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/layer.html
1066share/doc/ImageMagick/www/api/list.html 1066share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/list.html
1067share/doc/ImageMagick/www/api/magick-deprecate.html 1067share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/magick-deprecate.html
1068share/doc/ImageMagick/www/api/magick-image.html 1068share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/magick-image.html
1069share/doc/ImageMagick/www/api/magick-property.html 1069share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/magick-property.html
1070share/doc/ImageMagick/www/api/magick-wand.html 1070share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/magick-wand.html
1071share/doc/ImageMagick/www/api/magick.html 1071share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/magick.html
1072share/doc/ImageMagick/www/api/memory.html 1072share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/memory.html
1073share/doc/ImageMagick/www/api/module.html 1073share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/module.html
1074share/doc/ImageMagick/www/api/mogrify.html 1074share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/mogrify.html
1075share/doc/ImageMagick/www/api/monitor.html 1075share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/monitor.html
1076share/doc/ImageMagick/www/api/montage.html 1076share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/montage.html
1077share/doc/ImageMagick/www/api/morphology.html 1077share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/morphology.html
1078share/doc/ImageMagick/www/api/paint.html 1078share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/paint.html
1079share/doc/ImageMagick/www/api/pixel-iterator.html 1079share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/pixel-iterator.html
1080share/doc/ImageMagick/www/api/pixel-view.html 1080share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/pixel-view.html
1081share/doc/ImageMagick/www/api/pixel-wand.html 1081share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/pixel-wand.html
1082share/doc/ImageMagick/www/api/profile.html 1082share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/profile.html
1083share/doc/ImageMagick/www/api/property.html 1083share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/property.html
1084share/doc/ImageMagick/www/api/quantize.html 1084share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/quantize.html
1085share/doc/ImageMagick/www/api/registry.html 1085share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/registry.html
1086share/doc/ImageMagick/www/api/resize.html 1086share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/resize.html
1087share/doc/ImageMagick/www/api/resource.html 1087share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/resource.html
1088share/doc/ImageMagick/www/api/segment.html 1088share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/segment.html
1089share/doc/ImageMagick/www/api/shear.html 1089share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/shear.html
1090share/doc/ImageMagick/www/api/signature.html 1090share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/signature.html
1091share/doc/ImageMagick/www/api/statistic.html 1091share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/statistic.html
1092share/doc/ImageMagick/www/api/stream.html 1092share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/stream.html
1093share/doc/ImageMagick/www/api/transform.html 1093share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/transform.html
1094share/doc/ImageMagick/www/api/version.html 1094share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/version.html
1095share/doc/ImageMagick/www/api/wand-view.html 1095share/doc/ImageMagick-${IM_MAJOR_VER}/www/api/wand-view.html
1096share/doc/ImageMagick/www/architecture.html 1096share/doc/ImageMagick-${IM_MAJOR_VER}/www/architecture.html
1097share/doc/ImageMagick/www/binary-releases.html 1097share/doc/ImageMagick-${IM_MAJOR_VER}/www/binary-releases.html
1098share/doc/ImageMagick/www/changelog.html 1098share/doc/ImageMagick-${IM_MAJOR_VER}/www/changelog.html
1099share/doc/ImageMagick/www/cipher.html 1099share/doc/ImageMagick-${IM_MAJOR_VER}/www/cipher.html
1100share/doc/ImageMagick/www/color.html 1100share/doc/ImageMagick-${IM_MAJOR_VER}/www/color.html
1101share/doc/ImageMagick/www/command-line-options.html 1101share/doc/ImageMagick-${IM_MAJOR_VER}/www/command-line-options.html
1102share/doc/ImageMagick/www/command-line-processing.html 1102share/doc/ImageMagick-${IM_MAJOR_VER}/www/command-line-processing.html
1103share/doc/ImageMagick/www/command-line-tools.html 1103share/doc/ImageMagick-${IM_MAJOR_VER}/www/command-line-tools.html
1104share/doc/ImageMagick/www/compare.html 1104share/doc/ImageMagick-${IM_MAJOR_VER}/www/compare.html
1105share/doc/ImageMagick/www/compose.html 1105share/doc/ImageMagick-${IM_MAJOR_VER}/www/compose.html
1106share/doc/ImageMagick/www/composite.html 1106share/doc/ImageMagick-${IM_MAJOR_VER}/www/composite.html
1107share/doc/ImageMagick/www/conjure.html 1107share/doc/ImageMagick-${IM_MAJOR_VER}/www/conjure.html
1108share/doc/ImageMagick/www/contact.html 1108share/doc/ImageMagick-${IM_MAJOR_VER}/www/contact.html
1109share/doc/ImageMagick/www/convert.html 1109share/doc/ImageMagick-${IM_MAJOR_VER}/www/convert.html
1110share/doc/ImageMagick/www/display.html 1110share/doc/ImageMagick-${IM_MAJOR_VER}/www/display.html
1111share/doc/ImageMagick/www/download.html 1111share/doc/ImageMagick-${IM_MAJOR_VER}/www/download.html
1112share/doc/ImageMagick/www/escape.html 1112share/doc/ImageMagick-${IM_MAJOR_VER}/www/escape.html
1113share/doc/ImageMagick/www/examples.html 1113share/doc/ImageMagick-${IM_MAJOR_VER}/www/examples.html
1114share/doc/ImageMagick/www/exception.html 1114share/doc/ImageMagick-${IM_MAJOR_VER}/www/exception.html
1115share/doc/ImageMagick/www/export.html 1115share/doc/ImageMagick-${IM_MAJOR_VER}/www/export.html
1116share/doc/ImageMagick/www/favicon.ico 1116share/doc/ImageMagick-${IM_MAJOR_VER}/www/favicon.ico
1117share/doc/ImageMagick/www/formats.html 1117share/doc/ImageMagick-${IM_MAJOR_VER}/www/formats.html
1118share/doc/ImageMagick/www/fx.html 1118share/doc/ImageMagick-${IM_MAJOR_VER}/www/fx.html
1119share/doc/ImageMagick/www/high-dynamic-range.html 1119share/doc/ImageMagick-${IM_MAJOR_VER}/www/high-dynamic-range.html
1120share/doc/ImageMagick/www/history.html 1120share/doc/ImageMagick-${IM_MAJOR_VER}/www/history.html
1121share/doc/ImageMagick/www/identify.html 1121share/doc/ImageMagick-${IM_MAJOR_VER}/www/identify.html
1122share/doc/ImageMagick/www/import.html 1122share/doc/ImageMagick-${IM_MAJOR_VER}/www/import.html
1123share/doc/ImageMagick/www/index.html 1123share/doc/ImageMagick-${IM_MAJOR_VER}/www/index.html
1124share/doc/ImageMagick/www/install-source.html 1124share/doc/ImageMagick-${IM_MAJOR_VER}/www/install-source.html
1125share/doc/ImageMagick/www/jp2.html 1125share/doc/ImageMagick-${IM_MAJOR_VER}/www/jp2.html
1126share/doc/ImageMagick/www/license.html 1126share/doc/ImageMagick-${IM_MAJOR_VER}/www/license.html
1127share/doc/ImageMagick/www/links.html 1127share/doc/ImageMagick-${IM_MAJOR_VER}/www/links.html
1128share/doc/ImageMagick/www/magick++.html 1128share/doc/ImageMagick-${IM_MAJOR_VER}/www/magick++.html
1129share/doc/ImageMagick/www/magick-core.html 1129share/doc/ImageMagick-${IM_MAJOR_VER}/www/magick-core.html
1130share/doc/ImageMagick/www/magick-vector-graphics.html 1130share/doc/ImageMagick-${IM_MAJOR_VER}/www/magick-vector-graphics.html
1131share/doc/ImageMagick/www/magick-wand.html 1131share/doc/ImageMagick-${IM_MAJOR_VER}/www/magick-wand.html
1132share/doc/ImageMagick/www/magick.css 1132share/doc/ImageMagick-${IM_MAJOR_VER}/www/magick.css
1133share/doc/ImageMagick/www/miff.html 1133share/doc/ImageMagick-${IM_MAJOR_VER}/www/miff.html
1134share/doc/ImageMagick/www/mirrors.html 1134share/doc/ImageMagick-${IM_MAJOR_VER}/www/mirrors.html
1135share/doc/ImageMagick/www/mogrify.html 1135share/doc/ImageMagick-${IM_MAJOR_VER}/www/mogrify.html
1136share/doc/ImageMagick/www/montage.html 1136share/doc/ImageMagick-${IM_MAJOR_VER}/www/montage.html
1137share/doc/ImageMagick/www/motion-picture.html 1137share/doc/ImageMagick-${IM_MAJOR_VER}/www/motion-picture.html
1138share/doc/ImageMagick/www/parallel.html 1138share/doc/ImageMagick-${IM_MAJOR_VER}/www/parallel.html
1139share/doc/ImageMagick/www/perl-magick.html 1139share/doc/ImageMagick-${IM_MAJOR_VER}/www/perl-magick.html
1140share/doc/ImageMagick/www/porting.html 1140share/doc/ImageMagick-${IM_MAJOR_VER}/www/porting.html
1141share/doc/ImageMagick/www/quantize.html 1141share/doc/ImageMagick-${IM_MAJOR_VER}/www/quantize.html
1142share/doc/ImageMagick/www/resources.html 1142share/doc/ImageMagick-${IM_MAJOR_VER}/www/resources.html
1143share/doc/ImageMagick/www/search.html 1143share/doc/ImageMagick-${IM_MAJOR_VER}/www/search.html
1144share/doc/ImageMagick/www/sitemap.html 1144share/doc/ImageMagick-${IM_MAJOR_VER}/www/sitemap.html
1145share/doc/ImageMagick/www/source/analyze.c 1145share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/analyze.c
1146share/doc/ImageMagick/www/source/coder.xml 1146share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/coder.xml
1147share/doc/ImageMagick/www/source/colors.xml 1147share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/colors.xml
1148share/doc/ImageMagick/www/source/configure.xml 1148share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/configure.xml
1149share/doc/ImageMagick/www/source/contrast.c 1149share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/contrast.c
1150share/doc/ImageMagick/www/source/core.c 1150share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/core.c
1151share/doc/ImageMagick/www/source/delegates.xml 1151share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/delegates.xml
1152share/doc/ImageMagick/www/source/english.xml 1152share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/english.xml
1153share/doc/ImageMagick/www/source/examples.pl 1153share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/examples.pl
1154share/doc/ImageMagick/www/source/francais.xml 1154share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/francais.xml
1155share/doc/ImageMagick/www/source/incantation.msl 1155share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/incantation.msl
1156share/doc/ImageMagick/www/source/locale.xml 1156share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/locale.xml
1157share/doc/ImageMagick/www/source/log.xml 1157share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/log.xml
1158share/doc/ImageMagick/www/source/magic.xml 1158share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/magic.xml
1159share/doc/ImageMagick/www/source/mgk.c 1159share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/mgk.c
1160share/doc/ImageMagick/www/source/mime.xml 1160share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/mime.xml
1161share/doc/ImageMagick/www/source/piechart.mvg 1161share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/piechart.mvg
1162share/doc/ImageMagick/www/source/piechart.svg 1162share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/piechart.svg
1163share/doc/ImageMagick/www/source/policy.xml 1163share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/policy.xml
1164share/doc/ImageMagick/www/source/thresholds.xml 1164share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/thresholds.xml
1165share/doc/ImageMagick/www/source/type-ghostscript.xml 1165share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/type-ghostscript.xml
1166share/doc/ImageMagick/www/source/type-windows.xml 1166share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/type-windows.xml
1167share/doc/ImageMagick/www/source/type.xml 1167share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/type.xml
1168share/doc/ImageMagick/www/source/wand.c 1168share/doc/ImageMagick-${IM_MAJOR_VER}/www/source/wand.c
1169share/doc/ImageMagick/www/sponsors.html 1169share/doc/ImageMagick-${IM_MAJOR_VER}/www/sponsors.html
1170share/doc/ImageMagick/www/stream.html 1170share/doc/ImageMagick-${IM_MAJOR_VER}/www/stream.html
1171share/doc/ImageMagick/www/subversion.html 1171share/doc/ImageMagick-${IM_MAJOR_VER}/www/subversion.html
1172share/doc/ImageMagick/www/t-shirt.html 1172share/doc/ImageMagick-${IM_MAJOR_VER}/www/t-shirt.html
1173share/doc/ImageMagick/www/wand.png 1173share/doc/ImageMagick-${IM_MAJOR_VER}/www/wand.png
1174share/examples/ImageMagick/coder.xml 1174share/examples/ImageMagick/coder.xml
1175share/examples/ImageMagick/colors.xml 1175share/examples/ImageMagick/colors.xml
1176share/examples/ImageMagick/delegates.xml 1176share/examples/ImageMagick/delegates.xml
1177share/examples/ImageMagick/log.xml 1177share/examples/ImageMagick/log.xml
1178share/examples/ImageMagick/magic.xml 1178share/examples/ImageMagick/magic.xml
1179share/examples/ImageMagick/mime.xml 1179share/examples/ImageMagick/mime.xml
1180share/examples/ImageMagick/policy.xml 1180share/examples/ImageMagick/policy.xml
1181share/examples/ImageMagick/quantization-table.xml 1181share/examples/ImageMagick/quantization-table.xml
1182share/examples/ImageMagick/sRGB.icc 1182share/examples/ImageMagick/sRGB.icc
1183share/examples/ImageMagick/thresholds.xml 1183share/examples/ImageMagick/thresholds.xml
1184share/examples/ImageMagick/type-dejavu.xml 1184share/examples/ImageMagick/type-dejavu.xml
1185share/examples/ImageMagick/type-ghostscript.xml 1185share/examples/ImageMagick/type-ghostscript.xml
1186share/examples/ImageMagick/type-windows.xml 1186share/examples/ImageMagick/type-windows.xml

cvs diff -r1.111 -r1.112 pkgsrc/graphics/ImageMagick/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/ImageMagick/distinfo 2012/04/09 15:56:21 1.111
+++ pkgsrc/graphics/ImageMagick/distinfo 2012/04/20 15:22:37 1.112
@@ -1,9 +1,9 @@ @@ -1,9 +1,9 @@
1$NetBSD: distinfo,v 1.111 2012/04/09 15:56:21 tez Exp $ 1$NetBSD: distinfo,v 1.112 2012/04/20 15:22:37 adam Exp $
2 2
3SHA1 (ImageMagick-6.7.5-10.tar.bz2) = e19d7d5148de58d56a02d68049bb5d3ba470f53c 3SHA1 (ImageMagick-6.7.6-6.tar.bz2) = 7456efb55d2eb37fe7c5a8c131d0247041ce0100
4RMD160 (ImageMagick-6.7.5-10.tar.bz2) = 5ff5b7ddc773beb048773cc252c5d306eaf28e50 4RMD160 (ImageMagick-6.7.6-6.tar.bz2) = 714fa4a68049df810581fe5e8d791812c6a4b255
5Size (ImageMagick-6.7.5-10.tar.bz2) = 10416791 bytes 5Size (ImageMagick-6.7.6-6.tar.bz2) = 10484245 bytes
6SHA1 (patch-coders_jpeg.c) = 77e47f58ee3c46888f2edeafa1964e5145b65c25 6SHA1 (patch-coders_jpeg.c) = 77e47f58ee3c46888f2edeafa1964e5145b65c25
7SHA1 (patch-coders_tiff.c) = ff11a7fe6f47cd3fb7afeab986851ac417366722 7SHA1 (patch-coders_tiff.c) = ff11a7fe6f47cd3fb7afeab986851ac417366722
8SHA1 (patch-magick_profile.c) = e991adc22b072a967fc3459d68cd6ab1e91610c6 8SHA1 (patch-magick_profile.c) = e991adc22b072a967fc3459d68cd6ab1e91610c6
9SHA1 (patch-magick_property.c) = 105e9f3cfa3aa098296513c594e24759b1713c5b 9SHA1 (patch-magick_property.c) = 105e9f3cfa3aa098296513c594e24759b1713c5b

File Deleted: pkgsrc/graphics/ImageMagick/patches/Attic/patch-coders_jpeg.c

File Deleted: pkgsrc/graphics/ImageMagick/patches/Attic/patch-coders_tiff.c

File Deleted: pkgsrc/graphics/ImageMagick/patches/Attic/patch-magick_profile.c

File Deleted: pkgsrc/graphics/ImageMagick/patches/Attic/patch-magick_property.c