--- lyx-1.5.0beta1.orig/lib/configure.py 2007-02-16 05:14:12.000000000 +0900 +++ lyx-1.5.0beta1.orig/lib/configure.py 2007-03-01 23:27:30.000000000 +0900 @@ -214,7 +214,7 @@ \\@@end ''') # run latex on chklatex.ltx and check result - if cmdOutput(LATEX + ' chklatex.ltx').find('ThisIsLaTeX2e') != -1: + if cmdOutput(LATEX + ' --no-mktex=tfm chklatex.ltx').find('ThisIsLaTeX2e') != -1: # valid latex2e return LATEX else: @@ -370,7 +370,7 @@ checkProg('a DVI to TXT converter', ['catdvi $$i > $$o'], rc_entry = [ r'\converter dvi text4 "%%" ""' ]) # - checkProg('a DVI to PS converter', ['dvips -o $$o $$i'], + checkProg('a DVI to PS converter', ['dvips -R0 -o $$o $$i'], rc_entry = [ r'\converter dvi ps "%%" ""' ]) # checkProg('a DVI to PDF converter', ['dvipdfmx -o $$o $$i', 'dvipdfm -o $$o $$i'], @@ -636,7 +636,7 @@ cl.close() # # we have chklayouts.tex, then process it - fout = os.popen(LATEX + ' wrap_chkconfig.ltx') + fout = os.popen(LATEX + ' --no-mktex=tfm wrap_chkconfig.ltx') while True: line = fout.readline() if not line: