                                  _   _ ____  _     
                              ___| | | |  _ \| |    
                             / __| | | | |_) | |    
                            | (__| |_| |  _ <| |___ 
                             \___|\___/|_| \_\_____|

How To Compile

				    UNIX
				    ====

   If you do have SSLeay (0.8.0 or later) installed, do run configure
   as (with bourne shell clones):

	CPPFLAGS="-I/path/to/ssl/include" LDFLAGS="-L/path/to/ssl/lib" \
	./configure

       (with csh or tcsh clones):
	env CPPFLAGS=-I/path/to/ssl/include LDFLAGS="-L/path/to/ssl/lib" \
	./configure

   Without SSL support, just run:

	./configure

   Then run:

	make

   Use the executable `curl` in src/ directory.

   'make install' copies the curl file to /usr/local/bin/

   OPTIONS

	You can disable the 'ask-for-password' feature that Curl does by
	default if you specify only the user-part of a login sequence on the
	command line. Disable the questioning by running configure with

	./configure --enable-noask_pass

	Remember, to force configure to use the standard cc compiler if both
	cc and gcc are present, run configure like

	CC=cc ./configure
	 or
	env Cc=cc ./configure

				    Win32
				    =====
 
   Without SSL:

   	If you use VC++, Borland or similar compilers. Include all
   	source files in a project (all .c and .h files that is).

	With VC++, add 'wsock32.lib' to the link libs when you build! Borland
	seems to do that itself magically.

	For VC++ 6, there's an included Makefile.vc6 that should be possible
	to use out-of-the-box.

   With SSL:

	If you have SSLeay, and want curl to take advantage of it,
   	edit your project properties to use the SSL include path, link
   	with the SSL libs and define the USE_SSLEAY symbol.

				   SSLeay
				   ======

   You'll find SSLeay information at:

	http://www.ssleay.org

   or you can go download it straight away from:

	ftp://ftp.pca.dfn.de/pub/tools/net/ssleay/

   You *must* use SSLeay 0.8.0 or later!
