diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-05-16 07:44:41 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-05-16 07:44:41 +0000 |
commit | 6d4bec0e385c830d33134c540b04adf42b57aebc (patch) | |
tree | a7aa87445eb71eb42d96f1fb993a7822f5decf59 /Build/source/texk/kpathsea/cnf.h | |
parent | b4de05961b642a8957b4c3f668fcaabbebc9722b (diff) |
kpathsea: reexport kpathsea_cnf_get() and install <kpathsea/cnf.h>
git-svn-id: svn://tug.org/texlive/trunk@26437 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/cnf.h')
-rw-r--r-- | Build/source/texk/kpathsea/cnf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/kpathsea/cnf.h b/Build/source/texk/kpathsea/cnf.h index 45f95f9aebf..4d653f4197e 100644 --- a/Build/source/texk/kpathsea/cnf.h +++ b/Build/source/texk/kpathsea/cnf.h @@ -19,8 +19,6 @@ #ifndef KPATHSEA_CNF_H #define KPATHSEA_CNF_H -#ifdef MAKE_KPSE_DLL /* libkpathsea internal only */ - #include <kpathsea/c-proto.h> #include <kpathsea/types.h> @@ -28,8 +26,10 @@ On the first call, also read all the `texmf.cnf' files in the path for kpse_cnf_format (and initialize the path). */ -extern string kpathsea_cnf_get (kpathsea kpse, const_string name); +extern KPSEDLL string kpathsea_cnf_get (kpathsea kpse, const_string name); -#endif /* MAKE_KPSE_DLL */ +#if defined(KPSE_COMPAT_API) +extern KPSEDLL string kpse_cnf_get (const_string var); +#endif #endif /* not KPATHSEA_CNF_H */ |