From 959d2c52642f1f34e3e2e974491f167e2af8cac7 Mon Sep 17 00:00:00 2001 From: Scott Kostyshak Date: Wed, 10 Apr 2013 22:56:35 -0400 Subject: [PATCH] converter: change 'ps2pdf13' to 'ps2pdf' ps2pdf by default produces the PDF 1.4 format. The PDF 1.3 format was released in 2000. PDF 1.4 was released in 2001. LyX specified 1.3 as the output version in 2002 (c1541c22), perhaps because at the time PDF 1.4 was only a year old so some viewers did not support it. --- lib/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configure.py b/lib/configure.py index 2a6b80eecd..78983e3895 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -759,7 +759,7 @@ def checkConverterEntries(): checkProg('a RTF -> HTML converter', ['unrtf --html $$i > $$o'], rc_entry = [ r'\converter rtf html "%%" ""' ]) # Do not define a converter to pdf6, ps is a pure export format - checkProg('a PS to PDF converter', ['ps2pdf13 $$i $$o'], + checkProg('a PS to PDF converter', ['ps2pdf $$i $$o'], rc_entry = [ r'\converter ps pdf "%%" ""' ]) # checkProg('a PS to TXT converter', ['pstotext $$i > $$o'], -- 2.39.2