Ticket #519: mingw_updated3.diff
| File mingw_updated3.diff, 1.6 KB (added by , 15 years ago) |
|---|
-
raster/Makefile
40 40 r.kappa \ 41 41 r.lake \ 42 42 r.le \ 43 r.li \44 43 r.los \ 45 44 r.mapcalc \ 46 45 r.median \ … … 128 127 129 128 include $(MODULE_TOPDIR)/include/Make/Platform.make 130 129 131 ifneq ($( MINGW),)130 ifneq ($(strip $(MINGW)),) 132 131 SUBDIRS += r.li 133 132 endif 134 133 -
lib/g3d/g3dcache.c
121 121 return 0; 122 122 } 123 123 124 index = *((int *)( xdr + nBytes));124 index = *((int *)((unsigned char *)xdr + nBytes)); 125 125 map->index[index] = -pos - 2; 126 126 127 127 map->cachePosLast--; -
lib/gis/spawn.c
204 204 205 205 #ifdef __MINGW32__ 206 206 207 static intdo_redirects(struct redirect *redirects, int num_redirects)207 static void do_redirects(struct redirect *redirects, int num_redirects) 208 208 { 209 209 if (num_redirects > 0) 210 210 G_fatal_error -
lib/gis/gdal.c
19 19 # ifdef _WIN32 20 20 # include <windows.h> 21 21 # endif 22 # undef CPL_STDCALL 23 # define CPL_STDCALL 22 24 #endif 23 25 24 26 static void CPL_STDCALL (*pGDALAllRegister)(void); … … 77 79 "libgdal.so", 78 80 # endif 79 81 # ifdef _WIN32 82 "gdal16.dll", 83 "gdal15.dll", 80 84 "gdal11.dll", 81 85 "gdal.1.0.dll", 82 86 "gdal.dll",
