source: main/trunk/greenstone2/common-src/src/lib/gsdlsysfuncs.h@ 26653

Last change on this file since 26653 was 26653, checked in by davidb, 11 years ago

Code changed from using WIN32 use to _MSC_VER (the difference being the former is set for any Windows based compiler, whilst the latter is specifically set by a MicroSoft Visual Studio compiler). Up to this point the difference was not important, however to allow for cross-compilation (using mingw under Linux to produce native Windows binaries) the difference is imporant, and needs to be used more carefully

File size: 189 bytes
Line 
1#ifndef GSDLSYSFUNCS_H
2#define GSDLSYSFUNCS_H
3
4#include <sys/stat.h>
5
6#ifdef HAVE_CONFIG_H
7# ifdef __MSC_VER__
8# include <win32cfg.h>
9# else
10# include <config.h>
11# endif
12#endif
13
14
15
16#endif
Note: See TracBrowser for help on using the repository browser.