Add Enchant build scripts

This commit is contained in:
Berke Viktor
2012-10-02 14:35:59 +02:00
parent 149dc70821
commit 47193043a7
5 changed files with 724 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include <sys/types.h>
#ifndef SSIZE_T_DEFINED
#ifdef ssize_t
#undef ssize_t
#endif
#ifdef _WIN64
typedef __int64 ssize_t;
#else
typedef _W64 int ssize_t;
#endif
#define SSIZE_T_DEFINED
#endif
#define ENCHANT_VERSION_STRING "1.6.0"