Changes between Version 98 and Version 99 of WKTRaster/Documentation01
- Timestamp:
- 04/27/10 11:43:23 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRaster/Documentation01
v98 v99 185 185 2. Get GDAL 1.7.1 sources from [http://trac.osgeo.org/gdal/wiki/DownloadSource] and extract (you need this for advanced features like ST_DumpAsPolygons). 186 186 187 3. Build GDAL without libtool. Refer to [http://trac.osgeo.org/gdal/ticket/3465].187 3. Configure the GDAL build without libtool. (Refer to [http://trac.osgeo.org/gdal/ticket/3465].) 188 188 189 189 {{{ … … 192 192 }}} 193 193 194 Edit /c/thesrc/gdal/gdal-1.7.1/GNUMakefile so that GDAL_OBJ is assigned this way:194 4. Edit /c/thesrc/gdal/gdal-1.7.1/GNUMakefile so that GDAL_OBJ is assigned this way: 195 195 196 196 GDAL_OBJ = ./frmts/o/*.o \[[BR]] … … 199 199 ./alg/*.o 200 200 201 5. Build and install. 202 201 203 {{{ 202 204 make clean && make … … 206 208 libgdal.dll should now exist in /usr/local/lib 207 209 210 6. You can remove the debug information from libgdal.dll: 211 208 212 {{{ 209 213 strip /usr/local/lib/libgdal.dll … … 211 215 212 216 213 4. Get the WKT Raster source code. You have two options:217 7. Get the WKT Raster source code. You have two options: 214 218 215 219 * Download the latest development snapshot from http://postgis.refractions.net/download/ … … 221 225 }}} 222 226 223 5. From the wktraster folder, do:227 8. From the wktraster folder, do: 224 228 If you don't want to build with GDAL leave out the --enable-development line 225 229 … … 229 233 }}} 230 234 231 6. Run the compile and install commands:235 9. Run the compile and install commands: 232 236 233 237 {{{