diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-07-18 00:17:00 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-07-18 00:17:00 +0000 |
commit | f83b2efb2605a36940548a4c210f59b2762f4ce5 (patch) | |
tree | ea5a9743bd2b575db59c2cbbc442271c65b3d039 /Build/source/texk/dvipdfm-x/epdf.c | |
parent | 28a06c6ee71f5c081d0ce6ad046799ca133ead72 (diff) |
dvipdfm-x: Try to embed a PDF image, even if the PDF version is newer than the setting.
git-svn-id: svn://tug.org/texlive/trunk@37884 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/epdf.c')
-rw-r--r-- | Build/source/texk/dvipdfm-x/epdf.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/dvipdfm-x/epdf.c b/Build/source/texk/dvipdfm-x/epdf.c index 21f8af18329..ca0999ab31e 100644 --- a/Build/source/texk/dvipdfm-x/epdf.c +++ b/Build/source/texk/dvipdfm-x/epdf.c @@ -404,8 +404,13 @@ pdf_include_page (pdf_ximage *ximage, FILE *image_file, const char *filename) if (!pf) return -1; + /* + * Try to embed the PDF, even if the PDF version is newer than the setting. + */ +#if 0 if (pdf_file_get_version(pf) > pdf_get_version()) goto too_recent; +#endif pdf_ximage_init_form_info(&info); @@ -965,4 +970,4 @@ concat_stream (pdf_obj *dst, pdf_obj *src) return -1; } -#endif
\ No newline at end of file +#endif |