summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2013-07-26 16:16:21 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2013-07-26 16:16:21 +0000
commit31457ca13acf31866e84720da8fd728db092128c (patch)
treead47c93cab5a3b5454851f19e490692c2cda7d7c /src
parent817a72f57f1fccf15580cac6530dd2d9c37c4510 (diff)
downloadneon-31457ca13acf31866e84720da8fd728db092128c.tar.gz
* config.hw.in, src/ne_defs.h: Add LFS support for Win32 (patch by
Diego Santa Cruz). git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@1902 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'src')
-rw-r--r--src/ne_defs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ne_defs.h b/src/ne_defs.h
index e902e3a..4283454 100644
--- a/src/ne_defs.h
+++ b/src/ne_defs.h
@@ -35,6 +35,9 @@
#include <sys/types.h>
#ifdef NE_LFS
+# ifdef _MSC_VER
+typedef __int64 off64_t;
+# endif
typedef off64_t ne_off_t;
#else
typedef off_t ne_off_t;