* src/lib/Evil.h:

actually, ssize_t is defined with all mingw versions
	but not with vc++. So move it in vc++ part of Evil.h



SVN revision: 47137
This commit is contained in:
Vincent Torri 2010-03-11 18:49:11 +00:00
parent f3b42c4b05
commit 3ef3435fed
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2010-03-11 Vincent Torri <doursse at users dot sf dot net>
* src/lib/Evil.h:
actually, ssize_t is defined with all mingw versions
but not with vc++. So move it in vc++ part of Evil.h
2010-03-11 Vincent Torri <doursse at users dot sf dot net>
* configure.ac:

View File

@ -95,6 +95,7 @@ typedef unsigned int uint32_t;
typedef signed int int32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
typedef SSIZE_T ssize_t;
# define strdup(s) _strdup(s)
# define unlink(filename) _unlink(filename)
@ -161,8 +162,6 @@ typedef unsigned long gid_t;
//# define lstat(f,s) _stat((f),(s))
//# define hypot(x,y) _hypot((x),(y))
typedef SSIZE_T ssize_t;
# endif
#endif