Hi, In <https://savannah.gnu.org/bugs/?33379> it was reported that on old mingw versions, which did not have the 'mkdir' function, a trivial implementation of 'mkdir' in terms of '_mkdir' is needed in tempname.c.
This patch fixes it. 2018-10-05 Bruno Haible <[email protected]> tempname: Depend on 'mkdir'. Reported by Maarten Bosmans <[email protected]> at <https://savannah.gnu.org/bugs/?33379>. * modules/tempname (Depends-on): Add 'mkdir'. diff --git a/modules/tempname b/modules/tempname index d5218ee..fa91ed3 100644 --- a/modules/tempname +++ b/modules/tempname @@ -12,6 +12,7 @@ extensions fcntl-h gettimeofday lstat +mkdir stdint sys_stat sys_time
