From da0a9688bde8544973be58001e8c084ff983c3b7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Sun, 30 Mar 2008 00:11:36 +0000 Subject: [PATCH] configure.py: check for BibTeX programs. This makes it possible to use for example a Japanese BibTeX program. Fixes http://bugzilla.lyx.org/show_bug.cgi?id=4143 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24056 a592a061-630c-0410-9148-cb99ea01b6c8 --- RELEASE-NOTES | 6 ++++++ lib/configure.py | 2 ++ 2 files changed, 8 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 8e330ca73d..afe2eede32 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -170,6 +170,12 @@ Caveats when upgrading from earlier versions to 1.6.x The support for Japanese has been improved in LyX 1.6.x. Due to encoding reasons, Japanese documents that were edited with LyX 1.6.x cannot correctly be converted to the format of LyX 1.5.x and thus not edited with LyX 1.5.x. +To be able to use LyX 1.6 with Japanese, the latest version of the LaTeX +distribution "platex" must be installed. +platex provides a Japanese variant of BibTeX named "jbibtex". When LyX is +configured, this variant is used. In case you have problems with BibTeX-files +that include Japanese or you need to use another BibTeX program, set it in LyX +preferences under Output->LaTeX->BibTeX command. Note: There may later be an updated list of known issues online at diff --git a/lib/configure.py b/lib/configure.py index f262b9ddf5..1818bf62f0 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -558,6 +558,8 @@ def checkOtherEntries(): r'\plaintext_roff_command ""' ]) checkProg('ChkTeX', ['chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38'], rc_entry = [ r'\chktex_command "%%"' ]) + checkProg('BibTeX', ['jbibtex', 'bibtex'], + rc_entry = [ r'\bibtex_command "%%"' ]) checkProg('a spellchecker', ['ispell'], rc_entry = [ r'\spell_command "%%"' ]) ## FIXME: OCTAVE is not used anywhere -- 2.39.2