Commit 0dc6f5aa authored by Olivier Bertrand's avatar Olivier Bertrand

- Miscelleanous fix for compiling on Linux

modified:
  storage/connect/xindex.cpp
parent 35ee485b
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
//#include <windows.h> //#include <windows.h>
#else // !WIN32 #else // !WIN32
#if defined(UNIX) #if defined(UNIX)
#define _LARGEFILE64_SOURCE
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <errno.h> #include <errno.h>
...@@ -2390,7 +2389,6 @@ void *XFILE::FileView(PGLOBAL g, char *fn, int loff, int hoff, int size) ...@@ -2390,7 +2389,6 @@ void *XFILE::FileView(PGLOBAL g, char *fn, int loff, int hoff, int size)
/***********************************************************************/ /***********************************************************************/
bool XHUGE::Open(PGLOBAL g, char *filename, int id, MODE mode) bool XHUGE::Open(PGLOBAL g, char *filename, int id, MODE mode)
{ {
LONG high = 0;
DWORD drc, rc; DWORD drc, rc;
IOFF noff[MAX_INDX]; IOFF noff[MAX_INDX];
...@@ -2404,6 +2402,7 @@ bool XHUGE::Open(PGLOBAL g, char *filename, int id, MODE mode) ...@@ -2404,6 +2402,7 @@ bool XHUGE::Open(PGLOBAL g, char *filename, int id, MODE mode)
#endif // TRACE #endif // TRACE
#if defined(WIN32) #if defined(WIN32)
LONG high = 0;
DWORD access, share, creation; DWORD access, share, creation;
/*********************************************************************/ /*********************************************************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment