Remove FPX from the default configuration. The unmaintained library is

too buggy for general use :(

Initiate the lists of options whose presence (or absence) break
self-tests, and set IGNORE, if any such conflict is found.

Reported by:	numerous
This commit is contained in:
Mikhail Teterin 2007-09-28 02:23:16 +00:00
parent 34bbe66dd2
commit c2595f452c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=200248

View file

@ -61,7 +61,7 @@ OPTIONS= X11 "X11 support" on \
IMAGEMAGICK_JPEG "JPG format support" on \ IMAGEMAGICK_JPEG "JPG format support" on \
IMAGEMAGICK_PNG "PNG format support" on \ IMAGEMAGICK_PNG "PNG format support" on \
IMAGEMAGICK_TIFF "TIFF format support" on \ IMAGEMAGICK_TIFF "TIFF format support" on \
IMAGEMAGICK_FPX "FPX format support" on \ IMAGEMAGICK_FPX "FPX format support" off \
IMAGEMAGICK_JBIG "JBIG format support" on \ IMAGEMAGICK_JBIG "JBIG format support" on \
IMAGEMAGICK_JPEG2000 "JPEG2000 format support" on \ IMAGEMAGICK_JPEG2000 "JPEG2000 format support" on \
IMAGEMAGICK_DOT "GraphViz dot graphs support" off \ IMAGEMAGICK_DOT "GraphViz dot graphs support" off \
@ -322,6 +322,16 @@ test check:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check
.if !defined(WITHOUT_IMAGEMAGICK_TESTS) .if !defined(WITHOUT_IMAGEMAGICK_TESTS)
. for m in TTF
. if defined(WITHOUT_IMAGEMAGICK_$m)
IGNORE+= Absence of $m breaks self-tests. Enable $m or disable automatic tests.
. endif
. endfor
. for m in FPX
. if defined(WITH_IMAGEMAGICK_$m)
IGNORE+= Presence of $m breaks self-tests. Disable $m or disable automatic tests.
. endif
. endfor
post-build: test post-build: test
.endif .endif