summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-01-08 15:01:51 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-01-08 15:01:51 +0000
commita17ac4e834bdda29ee580bb9f77f23cd086ba109 (patch)
treeadcc6de512d22d307bfed07b45519552c45419d4
parent34b32ef8e282da7acb98e98ac7c0af0f04d876f4 (diff)
define alt_suffixes for C version of opl2opm and ovp2ovf
git-svn-id: svn://tug.org/texlive/trunk@16638 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Build/source/texk/kpathsea/ChangeLog5
-rw-r--r--Build/source/texk/kpathsea/tex-file.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog
index edaa0139d43..324f5b01c7b 100644
--- a/Build/source/texk/kpathsea/ChangeLog
+++ b/Build/source/texk/kpathsea/ChangeLog
@@ -1,3 +1,8 @@
+2010-01-05 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * tex-file.c: Add alt_suffix ".pl" for kpse_opl_format and
+ ".vpl" for kpse_ovp_format (for C version of opl2ofm/ovp2ovf).
+
2009-12-24 Karl Berry <karl@tug.org>
* HIER, INSTALL, README.CONFIGURE: remove, stale.
diff --git a/Build/source/texk/kpathsea/tex-file.c b/Build/source/texk/kpathsea/tex-file.c
index 7be030a671a..d0d0edd8901 100644
--- a/Build/source/texk/kpathsea/tex-file.c
+++ b/Build/source/texk/kpathsea/tex-file.c
@@ -598,6 +598,7 @@ kpathsea_init_format (kpathsea kpse, kpse_file_format_type format)
case kpse_opl_format:
INIT_FORMAT ("opl", DEFAULT_OPLFONTS, OPL_ENVS);
SUFFIXES (".opl");
+ ALT_SUFFIXES (".pl");
FMT_INFO.suffix_search_only = true;
break;
case kpse_otp_format:
@@ -615,6 +616,7 @@ kpathsea_init_format (kpathsea kpse, kpse_file_format_type format)
case kpse_ovp_format:
INIT_FORMAT ("ovp", DEFAULT_OVPFONTS, OVP_ENVS);
SUFFIXES (".ovp");
+ ALT_SUFFIXES (".vpl");
FMT_INFO.suffix_search_only = true;
break;
case kpse_pict_format: