diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-08-02 15:41:52 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-08-02 15:41:52 +0000 |
commit | 49f47e772fcf8d5b6148eba21ffb438fa35c8c00 (patch) | |
tree | c13a5f8aaad9d4c8328e898a08a1160a72da74e0 /Build/source/texk/kpathsea/c-pathch.h | |
parent | 6c2467cbb8e21577155060c598661d71024c1893 (diff) |
kpathsea: unexport library internal functions, remove unused ones
git-svn-id: svn://tug.org/texlive/trunk@23317 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/c-pathch.h')
-rw-r--r-- | Build/source/texk/kpathsea/c-pathch.h | 34 |
1 files changed, 14 insertions, 20 deletions
diff --git a/Build/source/texk/kpathsea/c-pathch.h b/Build/source/texk/kpathsea/c-pathch.h index cc8b936abf8..76352f82a6d 100644 --- a/Build/source/texk/kpathsea/c-pathch.h +++ b/Build/source/texk/kpathsea/c-pathch.h @@ -76,27 +76,21 @@ /* What separates elements in environment variable path lists? */ #ifndef ENV_SEP #ifdef VMS -#define ENV_SEP ',' -#define ENV_SEP_STRING "," +# define ENV_SEP ',' +# define ENV_SEP_STRING "," +#elif defined (DOSISH) +# define ENV_SEP ';' +# define ENV_SEP_STRING ";" +#elif defined (AMIGA) +# define ENV_SEP ';' +# define ENV_SEP_STRING ";" +#elif defined (VMCMS) +# define ENV_SEP ' ' +# define ENV_SEP_STRING " " #else -#ifdef DOSISH -#define ENV_SEP ';' -#define ENV_SEP_STRING ";" -#else -#ifdef AMIGA -#define ENV_SEP ';' -#define ENV_SEP_STRING ";" -#else -#ifdef VMCMS -#define ENV_SEP ' ' -#define ENV_SEP_STRING " " -#else -#define ENV_SEP ':' -#define ENV_SEP_STRING ":" -#endif /* not VM/CMS */ -#endif /* not AMIGA */ -#endif /* not DOS */ -#endif /* not VMS */ +# define ENV_SEP ':' +# define ENV_SEP_STRING ":" +#endif #endif /* not ENV_SEP */ #ifndef IS_ENV_SEP |