tobyaw: (Default)
Toby Atkin-Wright ([personal profile] tobyaw) wrote2007-08-24 05:11 pm
Entry tags:

Installing curl on Solaris 10

Install the Sun developer tools, and add /usr/ccs/bin to your path. Download http://curl.haxx.se/download/curl-7.16.4.tar.gz, then:

$ gunzip curl-7.16.4.tar.gz
$ tar -xvf curl-7.16.4.tar
$ cd curl-7.16.4
$ ./configure --without-ssl
$ make
$ su
# PATH=$PATH:/usr/ccs/bin
# export PATH
# make install