Changeset 11873
- Timestamp:
- 08/11/07 13:37:43 (1 year ago)
- Files:
-
- trunk/gdal (modified) (1 prop)
- trunk/gdal/frmts/gtiff/gt_wkt_srs.cpp (modified) (1 diff)
- trunk/gdal/gcore/gdaljp2metadata.h (modified) (2 diffs)
- trunk/gdal/nmake.opt (modified) (3 diffs)
- trunk/gdal/ogr/ogr_api.h (modified) (2 diffs)
- trunk/gdal/ogr/ogr_core.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gdal
- Property svn:ignore changed from
*~
*.dll
*.exe
*.exp
*.ilk
*.lib
*.ncb
*.obj
*.pdb
*.suo
*.vcproj.*.user
*.*.manifest
config.log
GDALmake.opt
libgdal.*
config.status
libtool
autom4te.cache
Debug
Release
to
*~
*.dll
*.exe
*.exp
*.ilk
*.lib
*.ncb
*.obj
*.pdb
*.suo
*.vcproj.*.user
*.*.manifest
config.log
GDALmake.opt
mynmake.opt
libgdal.*
config.status
libtool
autom4te.cache
Debug
Release
- Property svn:ignore changed from
trunk/gdal/frmts/gtiff/gt_wkt_srs.cpp
r11697 r11873 33 33 #include "cpl_serv.h" 34 34 #include "geo_tiffp.h" 35 #define _CPL_ERROR_H_INCLUDED_35 #define CPL_ERROR_H_INCLUDED 36 36 37 37 #include "geo_normalize.h" trunk/gdal/gcore/gdaljp2metadata.h
r10645 r11873 28 28 ****************************************************************************/ 29 29 30 #ifndef _JP2READER_H_INCLUDED31 #define _JP2READER_H_INCLUDED30 #ifndef GDAL_JP2READER_H_INCLUDED 31 #define GDAL_JP2READER_H_INCLUDED 32 32 33 33 #include "cpl_conv.h" … … 144 144 }; 145 145 146 147 148 #endif /* ndef _JP2READER_H_INCLUDED */ 149 150 146 #endif /* ndef GDAL_JP2READER_H_INCLUDED */ trunk/gdal/nmake.opt
r11745 r11873 1 # $Id$ 1 2 # 2 # Check for additional file to include 3 # nmake.opt - main configuration file for NMAKE makefiles. 4 # 5 ############################################################################### 6 # For convenience, user may put custom settings to private mynmake.opt 7 # and use EXT_NMAKE_OPT option while calling nmake.exe, as follows: 8 # 3 9 # nmake -f makefile.vc EXT_NMAKE_OPT=mynmake.opt 4 10 !IFDEF EXT_NMAKE_OPT … … 6 12 !ENDIF 7 13 14 ############################################################################### 15 # Check version of Visual C++ compiler: 16 # nmake -f makefile.vc MSVC_VER=xxxx 17 # where xxxx is one of following: 18 # 1400 = 8.0 (2005) - specific compilation flags, different from older VC++ 19 # 1310 = 7.1 (2003) 20 # 1300 = 7.0 (2002) 21 # 1200 = 6.0 8 22 # 23 !IFNDEF MSVC_VER 24 #assume msvc 7.1 25 MSVC_VER=1310 26 !ENDIF 27 28 ############################################################################### 9 29 # Location to install .exe, .dll and python stuff 10 30 # Edit as required. GDAL_HOME is used for convenience here, … … 46 66 JAVA_INCLUDE=-I$(JAVA_HOME)\include -I$(JAVA_HOME)\include\win32 47 67 48 # Check compiler version given in command line 49 # nmake -f makefile.vc MSVC_VER=xxxx 50 # 1310 = 7.1 (2003) 1400 = 8.0 (2005) 51 # 52 !IFNDEF MSVC_VER 53 #assume msvc 7.1 54 MSVC_VER=1310 55 !ENDIF 56 68 # Compilation flags 57 69 !IF $(MSVC_VER) == 1400 58 70 # Uncomment the first for an optimized build or the second for a debug build. trunk/gdal/ogr/ogr_api.h
r11460 r11873 28 28 ****************************************************************************/ 29 29 30 #ifndef _OGR_API_H_INCLUDED31 #define _OGR_API_H_INCLUDED30 #ifndef OGR_API_H_INCLUDED 31 #define OGR_API_H_INCLUDED 32 32 33 33 /** … … 346 346 CPL_C_END 347 347 348 #endif /* ndef _OGR_API_H_INCLUDED */ 349 350 348 #endif /* ndef OGR_API_H_INCLUDED */ trunk/gdal/ogr/ogr_core.h
r11030 r11873 28 28 ****************************************************************************/ 29 29 30 #ifndef _OGR_CORE_H_INCLUDED31 #define _OGR_CORE_H_INCLUDED30 #ifndef OGR_CORE_H_INCLUDED 31 #define OGR_CORE_H_INCLUDED 32 32 33 33 #include "cpl_port.h" … … 301 301 CPL_C_END 302 302 303 #endif /* ndef _OGR_CORE_H_INCLUDED */ 304 303 #endif /* ndef OGR_CORE_H_INCLUDED */
