Changes between Initial Version and Version 1 of LibCurl


Ignore:
Timestamp:
Aug 22, 2007, 11:43:23 AM (17 years ago)
Author:
warmerdam
Comment:

new

Legend:

Unmodified
Added
Removed
Modified
  • LibCurl

    v1 v1  
     1= LibCurl =
     2
     3[http://curl.haxx.se/libcurl/ Libcurl] is used to implement http access for the WMS, WCS and HTTP drivers. 
     4
     5The new WMS driver (GDAL 1.5) requires at least libcurl 7.10.7.
     6
     7== Win32 Build ==
     8
     9On win32, the http://curl.haxx.se/download/libcurl-7.16.4-win32-ssl.zip package should be suitable for use with GDAL, in which case the declaration in nmake.opt might look like:
     10
     11{{{
     12# Uncomment to use libcurl (for WCS)
     13CURL_DIR=C:\BuildStuff\libcurl-7.16.4
     14CURL_INC = -I$(CURL_DIR)/include
     15CURL_LIB = $(CURL_DIR)/lib/libcurl.dll.a
     16}}}