diff options
Diffstat (limited to 'Build/source/texk/kpathsea')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/win32lib.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index eafb0c196c4..5bfdf89feb8 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,7 @@ +2011-08-03 Akirar Kakuto <kakuto@fuk.kindai.ac.jp> + + * win32lib.h: #include <direct.h> for _getcwd. + 2011-08-02 Peter Breitenlohner <peb@mppmu.mpg.de> Unexport kpathsea internal functions, remove unused ones. diff --git a/Build/source/texk/kpathsea/win32lib.h b/Build/source/texk/kpathsea/win32lib.h index bb1edad7d15..a613339712d 100644 --- a/Build/source/texk/kpathsea/win32lib.h +++ b/Build/source/texk/kpathsea/win32lib.h @@ -238,6 +238,9 @@ #include <stdio.h> #include <process.h> +/* For _getcwd. */ +#include <direct.h> + /* Web2C takes care of ensuring that these are defined. */ #ifdef max #undef max |