Reverse all occurrances of WITHOUT_IMAGEMAGICK_SVG to WITH_IMAGEMAGICK_SVG

This commit is contained in:
Michael Nottebrock 2006-05-27 00:44:42 +00:00
parent 36c043b020
commit a636a7eabd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=163566

View File

@ -198,7 +198,7 @@ CONFIGURE_ARGS+= --without-wmf
# SVG (Scalable Vector Graphics) images and MSL (Magick Scripting Language)
# both require XML
.if !defined(WITHOUT_IMAGEMAGICK_SVG) || !defined(WITHOUT_IMAGEMAGICK_MSL)
.if defined(WITH_IMAGEMAGICK_SVG) || !defined(WITHOUT_IMAGEMAGICK_MSL)
USE_GNOME+= libxml2
CONFIGURE_ARGS+= --with-xml
.else