diff options
Diffstat (limited to 'Build/source/texk/tex4htk/tex4ht.c')
-rw-r--r-- | Build/source/texk/tex4htk/tex4ht.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/tex4htk/tex4ht.c b/Build/source/texk/tex4htk/tex4ht.c index e058c32eae8..45762597e69 100644 --- a/Build/source/texk/tex4htk/tex4ht.c +++ b/Build/source/texk/tex4htk/tex4ht.c @@ -6889,7 +6889,10 @@ struct visited_file_rec * visited_file = (struct visited_file_rec *) 0; -struct env_var_rec *tfm_dirs, *htf_dirs; +#ifndef KPATHSEA +struct env_var_rec *tfm_dirs; +#endif +struct env_var_rec *htf_dirs; @@ -6948,7 +6951,9 @@ cur_cache_font = (struct cache_font_rec *) 0; missing_fonts = FALSE; +#ifndef KPATHSEA tfm_dirs = get_env_var("TEX4HTTFM"); +#endif htf_dirs = get_env_var("TEX4HTHTF"); |