ImageMagick-6.8.8-10 configure.ac has useless mupdf check
Posted: 2014-04-06T05:09:59-07:00
The configure.ac checks for mupdf libraries and headers, but nothing in ImageMagick is actually using them
No mupdf libraries used, no #include's either
Basically you can trick the build system by:
export ac_cv_lib_mupdf_fz_new_context=yes
export ac_cv_header_mupdf_fitz_h=yes
./configure --with-mupdf
and the result is exactly same as with --without-mupdf
It looks like if someone pushed changes to only configure.ac, and forgot to commit rest of the patch that actually adds anykind of mupdf support
No mupdf libraries used, no #include's either
Basically you can trick the build system by:
export ac_cv_lib_mupdf_fz_new_context=yes
export ac_cv_header_mupdf_fitz_h=yes
./configure --with-mupdf
and the result is exactly same as with --without-mupdf
It looks like if someone pushed changes to only configure.ac, and forgot to commit rest of the patch that actually adds anykind of mupdf support