vcpkg/ports/libmupdf/use-if-instead-of-ifdef-in-writer.patch
simon987 6cfa934411
[libmupdf] Update to 1.19.0-rc2 (#20328)
* Update libmupdf to 1.19.0-rc2

* Add results of ./vcpkg x-add-version --all

* minimize patch

* update version

* Use 4 spaces rather than 2

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Remove vcpkg-cmake-config dependency

* Run x-add-version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-11-09 13:42:04 -08:00

40 lines
1.6 KiB
Diff

--- a/source/fitz/writer.c
+++ b/source/fitz/writer.c
@@ -169,7 +169,7 @@ fz_new_document_writer(fz_context *ctx, const char *path, const char *explicit_f
format = strrchr(path, '.');
while (format)
{
-#ifdef FZ_ENABLE_OCR_OUTPUT
+#if FZ_ENABLE_OCR_OUTPUT
if (is_extension(format, "ocr"))
return fz_new_pdfocr_writer(ctx, path, options);
#endif
@@ -219,11 +219,11 @@ fz_new_document_writer(fz_context *ctx, const char *path, const char *explicit_f
if (is_extension(format, "stext.json"))
return fz_new_text_writer(ctx, "stext.json", path, options);
-#ifdef FZ_ENABLE_ODT_OUTPUT
+#if FZ_ENABLE_ODT_OUTPUT
if (is_extension(format, "odt"))
return fz_new_odt_writer(ctx, path, options);
#endif
-#ifdef FZ_ENABLE_DOCX_OUTPUT
+#if FZ_ENABLE_DOCX_OUTPUT
if (is_extension(format, "docx"))
return fz_new_docx_writer(ctx, path, options);
#endif
@@ -267,11 +267,11 @@ fz_new_document_writer_with_output(fz_context *ctx, fz_output *out, const char *
if (is_extension(format, "stext.json"))
return fz_new_text_writer_with_output(ctx, "stext.json", out, options);
-#ifdef FZ_ENABLE_ODT_OUTPUT
+#if FZ_ENABLE_ODT_OUTPUT
if (is_extension(format, "odt"))
return fz_new_odt_writer_with_output(ctx, out, options);
#endif
-#ifdef FZ_ENABLE_DOCX_OUTPUT
+#if FZ_ENABLE_DOCX_OUTPUT
if (is_extension(format, "docx"))
return fz_new_docx_writer_with_output(ctx, out, options);
#endif