stdinc.h: fix build with mingw (#122)

Fixes this build error with mingw:
...
| compilation terminated.
| In file included from ../pkgconf-1.3.7/libpkgconf/libpkgconf.h:19:0,
| from ../pkgconf-1.3.7/libpkgconf/audit.c:16:
| ../pkgconf-1.3.7/libpkgconf/stdinc.h:36:12: fatal error: BaseTsd.h: No
such file or directory
| # include <BaseTsd.h>

Signed-off-by: Maxin B. John <maxin.john@intel.com>
pull/144/head
Maxin B. John 2017-07-16 21:21:45 +03:00 committed by William Pitcock
parent 38cda5e584
commit 74666bff38
1 changed files with 9 additions and 1 deletions

View File

@ -33,10 +33,18 @@
# include <malloc.h>
# define PATH_DEV_NULL "nul"
# ifndef ssize_t
# ifndef __MINGW32__
# include <BaseTsd.h>
# else
# include <basetsd.h>
# endif
# define ssize_t SSIZE_T
# endif
# include "win-dirent.h"
# ifndef __MINGW32__
# include "win-dirent.h"
# else
# include <dirent.h>
# endif
#else
# define PATH_DEV_NULL "/dev/null"
# include <dirent.h>