Re: [gdal-dev] Re: Compiling in Embarcadero's CBuilder

2010-04-21 Thread Philippe Vachon
Hi, I've committed a fix (r19493) that will disable the use of the new GDALCopyWords implementation. The old and new implementations are functionally equivalent, but the new implementation is in some cases 5-10x faster than the old implementation. However, there is no problem with disabling it

[gdal-dev] Re: Compiling in Embarcadero's CBuilder

2010-04-20 Thread jcurru
Thanks for your answer, Philippe. I could make rasterio.cpp compile by making the following change (line 38): // For now, work around MSVC++ 6.0's broken template support. If this value // is not defined, the old GDALCopyWords implementation is used. #define USE_NEW_COPYWORDS 1 #endif #undef USE_