2010-02-14 14:40:18 -05:00
|
|
|
_ _ ____ _
|
|
|
|
___| | | | _ \| |
|
|
|
|
/ __| | | | |_) | |
|
|
|
|
| (__| |_| | _ <| |___
|
2001-04-22 11:44:13 -04:00
|
|
|
\___|\___/|_| \_\_____|
|
2001-01-04 07:36:56 -05:00
|
|
|
|
2010-03-21 19:41:34 -04:00
|
|
|
GIT-INFO
|
2001-01-04 07:36:56 -05:00
|
|
|
|
2010-03-21 19:41:34 -04:00
|
|
|
This file is only present in git - never in release archives. It contains
|
|
|
|
information about other files and things that the git repository keeps in its
|
2001-04-22 11:44:13 -04:00
|
|
|
inner sanctum.
|
2001-01-04 07:36:56 -05:00
|
|
|
|
2002-01-03 04:12:41 -05:00
|
|
|
Compile and build instructions follow below.
|
2001-01-04 07:39:00 -05:00
|
|
|
|
2008-02-13 18:06:21 -05:00
|
|
|
CHANGES.0 contains ancient changes
|
|
|
|
CHANGES contains the most recent changes
|
2001-04-22 11:44:13 -04:00
|
|
|
|
|
|
|
Makefile.dist is included as the root Makefile in distribution archives
|
|
|
|
|
2002-01-03 04:12:41 -05:00
|
|
|
perl/ is a subdirectory with various perl scripts
|
2001-01-04 07:36:56 -05:00
|
|
|
|
2004-02-26 11:23:28 -05:00
|
|
|
To build in environments that support configure, after having extracted
|
2010-03-21 19:41:34 -04:00
|
|
|
everything from git, do this:
|
2001-01-04 07:36:56 -05:00
|
|
|
|
2001-05-03 05:13:53 -04:00
|
|
|
./buildconf
|
2001-01-09 05:09:39 -05:00
|
|
|
./configure
|
|
|
|
make
|
2002-01-03 04:12:41 -05:00
|
|
|
|
2002-12-20 11:00:56 -05:00
|
|
|
Daniel uses a ./configure line similar to this for easier development:
|
|
|
|
|
|
|
|
./configure --disable-shared --enable-debug --enable-maintainer-mode
|
|
|
|
|
2004-02-26 11:23:28 -05:00
|
|
|
In environments that don't support configure (i.e. Microsoft), do this:
|
|
|
|
|
|
|
|
buildconf.bat
|
|
|
|
|
2002-12-20 11:00:56 -05:00
|
|
|
|
2002-01-03 04:12:41 -05:00
|
|
|
REQUIREMENTS
|
|
|
|
|
2004-02-26 11:23:28 -05:00
|
|
|
For buildconf (not buildconf.bat) to work, you need the following software
|
|
|
|
installed:
|
2002-01-03 04:12:41 -05:00
|
|
|
|
2003-05-13 05:38:09 -04:00
|
|
|
o autoconf 2.57 (or later)
|
|
|
|
o automake 1.7 (or later)
|
|
|
|
o libtool 1.4.2 (or later)
|
2002-01-03 04:12:41 -05:00
|
|
|
o GNU m4 (required by autoconf)
|
|
|
|
|
2003-03-20 10:12:43 -05:00
|
|
|
o nroff + perl
|
|
|
|
|
|
|
|
If you don't have nroff and perl and you for some reason don't want to
|
2012-12-26 17:30:54 -05:00
|
|
|
install them, you can rename the source file src/tool_hugehelp.c.cvs to
|
|
|
|
src/tool_hugehelp.c and avoid having to generate this file. This will
|
|
|
|
give you a stubbed version of the file that doesn't contain actual content.
|
2003-03-20 10:12:43 -05:00
|
|
|
|
2002-01-03 04:12:41 -05:00
|
|
|
MAC OS X
|
|
|
|
|
2002-10-31 08:25:03 -05:00
|
|
|
With Mac OS X 10.2 and the associated Developer Tools, the installed versions
|
|
|
|
of the build tools are adequate. For Mac OS X 10.1 users, Guido Neitzer
|
|
|
|
wrote the following step-by-step guide:
|
2002-01-03 04:12:41 -05:00
|
|
|
|
|
|
|
1. Install fink (http://fink.sourceforge.net)
|
|
|
|
2. Update fink to the newest version (with the installed fink)
|
|
|
|
3. Install the latest version of autoconf, automake and m4 with fink
|
|
|
|
4. Install version 1.4.1 of libtool - you find it in the "unstable" section
|
|
|
|
(read the manual to see how to get unstable versions)
|
2010-03-21 19:41:34 -04:00
|
|
|
5. Get cURL from git
|
2002-01-03 04:12:41 -05:00
|
|
|
6. Build cURL with "./buildconf", "./configure", "make", "sudo make install"
|