* require at least xargs 1.09.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23628 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Stefan Schimanski 2008-03-10 13:26:20 +00:00
parent feb96b01aa
commit 286e3a0070

View File

@ -453,8 +453,7 @@ char const * simplefeatures[] = {
"ifthen", "ifthen",
"amsthm", "amsthm",
"listings", "listings",
"bm", "bm"
"xargs"
}; };
int const nb_simplefeatures = sizeof(simplefeatures) / sizeof(char const *); int const nb_simplefeatures = sizeof(simplefeatures) / sizeof(char const *);
@ -591,6 +590,11 @@ string const LaTeXFeatures::getPackages() const
if (mustProvide("jurabib")) { if (mustProvide("jurabib")) {
packages << "\\usepackage{jurabib}[2004/01/25]\n"; packages << "\\usepackage{jurabib}[2004/01/25]\n";
} }
// xargs -- we need version 1.09 at least
if (mustProvide("xargs")) {
packages << "\\usepackage{xargs}[2008/03/08]\n";
}
// bibtopic -- the dot provides the aux file naming which // bibtopic -- the dot provides the aux file naming which
// LyX can detect. // LyX can detect.