Changes between Version 7 and Version 8 of pkg-gdal-ecw
- Timestamp:
- 02/08/12 14:13:51 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pkg-gdal-ecw
v7 v8 8 8 == Installing ECW SDK == 9 9 10 The GDAL ECW Plugin requires the ECW 4.1 Runtime library, which is by ERDAS. 10 The GDAL ECW Plugin requires the ECW 4.1 Runtime library, which is by ERDAS. In order to use the runtime libraries, the end user is required to download and install the DLLs into a system directory. 11 11 12 ERDAS Web Site: http://www.erdas.com/products/ERDASECWJPEG2000SDK/Downloads.aspx 12 Download ERDAS ECW/JP2 SDK Desktop Read-Only Version 4.1: http://downloads.erdas.com/reqdownload.aspx?guid=dff76d5e-8c03-4d3d-a1df-7c1422a6e1e9 13 13 14 After downloading and installing the ECW SDK it is necessary to copy the runtime DLLs somewhere appropriate like {{{C:\windows\system32}}}, or {{{C:\Windows\SysWOW64}}} for 64-bit Windows, or {{{C:\\OSGeo4W\bin}}}.14 After downloading and installing the ECW SDK it is necessary to copy the runtime DLLs from the {{{redistributable\vc90\win32\}}} directory to somewhere appropriate, like {{{C:\Windows\system32}}} (32-bit Windows), {{{C:\Windows\SysWOW64}}} (64-bit Windows), or {{{C:\OSGeo4w\bin}}}. 15 15 16 16 E.g.: 17 17 {{{ 18 copy "C:\Program Files\ERDAS\ERDAS ECW JPEG2000 Read SDK\bin\vc9\win32\*.dll" C:\windows\system32 18 copy "C:\Program Files\ERDAS\ERDAS ECW JPEG2000 Read SDK\redistributable\vc90\win32\*.dll" C:\Windows\system32 19 }}} 20 21 Or on a 64-bit version of Windows: 22 {{{ 23 copy "C:\Program Files (x86)\ERDAS\ERDAS ECW JPEG2000 Read SDK\redistributable\vc90\win32\*.dll" C:\Windows\SysWOW64 19 24 }}} 20 25