-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GRASS raster support works with MSVC
- let user know when a grass raster layer could not be inserted - some fixes for the GRASS DLL build - add grass_I (needed by GDAL's GRASS driver) builds with current GDAL + http://trac.osgeo.org/gdal/ticket/1983 and current GRASS CVS (one bug fix should be applied soon). git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7377 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
jef
committed
Nov 11, 2007
1 parent
f817fe7
commit a5c51c2
Showing
7 changed files
with
94 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,12 @@ | ||
#include <io.h> | ||
#include <io.h> | ||
#include <windows.h> | ||
#include <process.h> | ||
#include <direct.h> | ||
|
||
#define getpid() GetCurrentProcessId() | ||
#define chmod(f,m) | ||
#define rmdir _rmdir | ||
|
||
#ifndef S_ISDIR | ||
#define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR) | ||
#endif |