summaryrefslogtreecommitdiff
path: root/geography/gdal-lib/patches
diff options
context:
space:
mode:
authoradam <adam>2013-04-09 15:58:54 +0000
committeradam <adam>2013-04-09 15:58:54 +0000
commit5043316a020f2fc8f9ae28b908a982d68d1f5bf7 (patch)
tree3beb9ade5598f31e76520223f6c3234de40a2edc /geography/gdal-lib/patches
parentbf7b6f3573c4f6b3960354e3d994554e311505ef (diff)
downloadpkgsrc-5043316a020f2fc8f9ae28b908a982d68d1f5bf7.tar.gz
The 1.9.2 release is a bug fix release.
* Fix infinite GDALOpen recursion with some VRTs (4835) * Avoid destroying existing overviews (.aux/.rrd) (4831) * Support recognising NaN better in CPLStrtod() (4799) * Fix windows declaration for CPLGetErrorHandlerUserData() (4755) * Fix compilation with Gentoo modified zlib 1.2.6 (4723) * Look for libgeotiff headers in /usr/include/libgeotiff too (4706) * Improve warning handling in CPLClearRecodeStubWarningFlags() (4650) * Fix Solaris compilation bug (4705) * MorphFromESRI(): compare SPHEROID/PRIMEM parms, not names (4673) * Avoid iffy casting of OGRWkbGeometryType to int (4847) * Fix thread safety issue with CPLOpenShared()
Diffstat (limited to 'geography/gdal-lib/patches')
-rw-r--r--geography/gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/geography/gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp b/geography/gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp
deleted file mode 100644
index 20d79da7831..00000000000
--- a/geography/gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-frmts_netcdf_netcdfdataset.cpp,v 1.1 2012/05/04 13:27:23 hans Exp $
-
---- frmts/netcdf/netcdfdataset.cpp.orig 2012-01-04 08:03:37.000000000 +0100
-+++ frmts/netcdf/netcdfdataset.cpp 2012-05-04 15:08:15.080833521 +0200
-@@ -962,7 +962,7 @@ void netCDFRasterBand::CheckValidData (
- /* check for nodata and nan */
- if ( CPLIsEqual( (double) ((T *)pImage)[i], dfNoDataValue ) )
- continue;
-- if( bCheckIsNan && CPLIsNan( ( (T *) pImage)[i] ) ) {
-+ if( bCheckIsNan && CPLIsNan( (double) ( (T *) pImage)[i] ) ) {
- ( (T *)pImage )[i] = (T)dfNoDataValue;
- continue;
- }