Changeset 13758
- Timestamp:
- 02/11/08 12:32:39 (3 months ago)
- Files:
-
- trunk/gdal/port/cpl_config.h.vc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gdal/port/cpl_config.h.vc
r13360 r13758 1 2 /* We define this here in general so that a VC++ build will publically 3 declare STDCALL interfaces even if an application is built against it 4 using MinGW */ 5 6 #ifndef CPL_DISABLE_STDCALL 7 # define CPL_STDCALL __stdcall 8 #endif 1 9 2 10 /* Define if you don't have vprintf but do have _doprnt. */ … … 12 20 #define snprintf _snprintf 13 21 14 /* Define to 1 if you have the `copysign' function. */15 22 #define HAVE_COPYSIGN 23 24 /* We only redefine the following for MSVC since it actually breaks 25 an MinGW build using GDAL otherwise. */ 26 #ifdef _MSC_VER 16 27 #define copysign _copysign 17 28 #define copysignf _copysign 18 29 #define copysignl _copysign 30 #endif 19 31 20 32 #define HAVE_GETCWD 1
