*[[cURL:http://curl.haxx.se/]] [#b9c11180]

**ChangeLog [#b2bb9f55]

-http://curl.haxx.se/changes.html
-https://github.com/bagder/curl/commits/master

**Installation [#wbd5fb7a]

***MinGW [#va108410]

-Install [[OpenSSL]].

//-[[Libgcrypt:http://directory.fsf.org/wiki/Libgcrypt]] をインストールします.
//
// $ curl -R -L -O ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.10.tar.bz2
// $ tar xvf libgpg-error-1.10.tar.bz2
// $ pushd libgpg-error-1.10
// $ ./config --prefix=/mingw
// $ make
// $ make install
// $ popd
// $ curl -R -L -O ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.5.0.tar.bz2
// $ tar xvf libgcrypt-1.5.0.tar.bz2
// $ pushd libgcrypt-1.5.0
// $ ./config --prefix=/mingw
// $ make
// $ make install
// $ popd

-Install [[libssh2]].

-Install cURL.

 $ curl -R -L -O http://curl.haxx.se/download/curl-7.39.0.tar.bz2
 $ tar xvf curl-7.39.0.tar.bz2
 $ pushd curl-7.39.0
 $ ./configure --prefix=/mingw

   curl version:     7.39.0
   Host setup:       i686-pc-mingw32
   Install prefix:   /mingw
   Compiler:         gcc
   SSL support:      enabled (OpenSSL)
   SSH support:      enabled (libSSH2)
   zlib support:     enabled
   krb4 support:     no      (--with-krb4*)
   GSSAPI support:   no      (--with-gssapi)
   SPNEGO support:   no      (--with-spnego)
   TLS-SRP support:  enabled
   resolver:         default (--enable-ares / --enable-threaded-resolver)
   ipv6 support:     no      (--enable-ipv6)
   IDN support:      no      (--with-{libidn,winidn})
   Build libcurl:    Shared=yes, Static=yes
   Built-in manual:  no      (--enable-manual)
   --libcurl option: enabled (--disable-libcurl-option)
   Verbose errors:   enabled (--disable-verbose)
   SSPI support:     no      (--enable-sspi)
   ca cert bundle:   no
   ca cert path:     no
   LDAP support:     enabled (winldap)
   LDAPS support:    enabled
   RTSP support:     enabled
   RTMP support:     no      (--with-librtmp)
   metalink support: no      (--with-libmetalink)
   Protocols:        DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS LDAP LDAPS P
 OP3 POP3S RTSP SCP SFTP SMTP SMTPS TELNET TFTP


 $ make
 $ make install
 $ popd