summary refs log tree commit diff stats
path: root/win32/deps/enchant/src/config.h
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-02 14:35:59 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-10-02 14:35:59 +0200
commit47193043a7c8feeeb81611cce86061bd0e5f7cb4 (patch)
tree07c651a12b0573a09b3703be0f48c29dfc47d47d /win32/deps/enchant/src/config.h
parent149dc7082162ad6a4951ace52b338826a9e19619 (diff)
Add Enchant build scripts
Diffstat (limited to 'win32/deps/enchant/src/config.h')
-rw-r--r--win32/deps/enchant/src/config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/win32/deps/enchant/src/config.h b/win32/deps/enchant/src/config.h
new file mode 100644
index 00000000..d91c69c6
--- /dev/null
+++ b/win32/deps/enchant/src/config.h
@@ -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"