diff options
Diffstat (limited to 'Master/tlpkg/tlpostcode')
-rw-r--r-- | Master/tlpkg/tlpostcode/xetex.pl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/tlpkg/tlpostcode/xetex.pl b/Master/tlpkg/tlpostcode/xetex.pl index 7e9bd27f57f..e996e39fb49 100644 --- a/Master/tlpkg/tlpostcode/xetex.pl +++ b/Master/tlpkg/tlpostcode/xetex.pl @@ -68,6 +68,15 @@ if (win32()) { info("Running fc-cache -v -r\n"); log(`fc-cache -v -r 2>&1`); #system("fc-cache","-v", "-r"); +} else { + # cygwin specific warning + # we don't have platform available ... + chomp(my $un = `uname`); + if ($un =~ m/cygwin/) { + if (! -r "/usr/bin/cygfontconfig-1.dll") { + printf STDERR "\nXeTeX on Cygwin requires fontconfig.\nPlease run cygwin's setup program and install the fontconfig package.\n"; + } + } } ### Local Variables: |