| Daniel Stenberg | ef8a2bc | 2001-06-06 09:39:07 +0000 | [diff] [blame] | 1 | _ _ ____ _ |
| Daniel Stenberg | f6d4a25 | 2001-04-22 15:44:13 +0000 | [diff] [blame] | 2 | ___| | | | _ \| | |
| 3 | / __| | | | |_) | | |
| 4 | | (__| |_| | _ <| |___ |
| 5 | \___|\___/|_| \_\_____| |
| Daniel Stenberg | 4ac4831 | 2001-01-04 12:36:56 +0000 | [diff] [blame] | 6 | |
| Daniel Stenberg | f6d4a25 | 2001-04-22 15:44:13 +0000 | [diff] [blame] | 7 | CVS-INFO |
| Daniel Stenberg | 4ac4831 | 2001-01-04 12:36:56 +0000 | [diff] [blame] | 8 | |
| Daniel Stenberg | f6d4a25 | 2001-04-22 15:44:13 +0000 | [diff] [blame] | 9 | This file is only present in the CVS - never in release archives. It contains |
| 10 | information about other files and things that the CVS repository keeps in its |
| 11 | inner sanctum. |
| Daniel Stenberg | 4ac4831 | 2001-01-04 12:36:56 +0000 | [diff] [blame] | 12 | |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 13 | Compile and build instructions follow below. |
| Daniel Stenberg | 4d17067 | 2001-01-04 12:39:00 +0000 | [diff] [blame] | 14 | |
| Daniel Stenberg | f6d4a25 | 2001-04-22 15:44:13 +0000 | [diff] [blame] | 15 | CHANGES.0 contains ancient changes. |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 16 | CHANGES.$year contains changes for the particular year. |
| Daniel Stenberg | f6d4a25 | 2001-04-22 15:44:13 +0000 | [diff] [blame] | 17 | |
| 18 | memanalyze.pl is for analyzing the output generated by curl if -DMALLOCDEBUG |
| 19 | is used when compiling |
| 20 | |
| Daniel Stenberg | bbe8aa0 | 2001-05-03 09:13:53 +0000 | [diff] [blame] | 21 | buildconf builds the makefiles and configure stuff |
| 22 | |
| Daniel Stenberg | f6d4a25 | 2001-04-22 15:44:13 +0000 | [diff] [blame] | 23 | Makefile.dist is included as the root Makefile in distribution archives |
| 24 | |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 25 | perl/ is a subdirectory with various perl scripts |
| Daniel Stenberg | 4ac4831 | 2001-01-04 12:36:56 +0000 | [diff] [blame] | 26 | |
| 27 | To build after having extracted everything from CVS, do this: |
| 28 | |
| Daniel Stenberg | bbe8aa0 | 2001-05-03 09:13:53 +0000 | [diff] [blame] | 29 | ./buildconf |
| Daniel Stenberg | 19d3fd1 | 2001-01-09 10:09:39 +0000 | [diff] [blame] | 30 | ./configure |
| 31 | make |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 32 | |
| Daniel Stenberg | 3b8583b | 2002-12-20 16:00:56 +0000 | [diff] [blame^] | 33 | Daniel uses a ./configure line similar to this for easier development: |
| 34 | |
| 35 | ./configure --disable-shared --enable-debug --enable-maintainer-mode |
| 36 | |
| 37 | |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 38 | REQUIREMENTS |
| 39 | |
| 40 | You need the following software installed: |
| 41 | |
| 42 | o autoconf 2.50 (or later) |
| 43 | o automake 1.5 (or later) |
| 44 | o libtool 1.4 (or later) |
| 45 | o GNU m4 (required by autoconf) |
| 46 | |
| 47 | o nroff + perl (if you don't have nroff and perl and you for some reason |
| 48 | don't want to install them, you can rename the source file |
| 49 | src/hugehelp.c.cvs to src/hugehelp.c and avoid having to generate this |
| 50 | file. This will of course give you an older version of the file that isn't |
| 51 | up-to-date. That file was checked in once and won't be updated very |
| 52 | regularly.) |
| 53 | |
| 54 | MAC OS X |
| 55 | |
| Daniel Stenberg | 73d996b | 2002-10-31 13:25:03 +0000 | [diff] [blame] | 56 | With Mac OS X 10.2 and the associated Developer Tools, the installed versions |
| 57 | of the build tools are adequate. For Mac OS X 10.1 users, Guido Neitzer |
| 58 | wrote the following step-by-step guide: |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 59 | |
| 60 | 1. Install fink (http://fink.sourceforge.net) |
| 61 | 2. Update fink to the newest version (with the installed fink) |
| 62 | 3. Install the latest version of autoconf, automake and m4 with fink |
| 63 | 4. Install version 1.4.1 of libtool - you find it in the "unstable" section |
| 64 | (read the manual to see how to get unstable versions) |
| 65 | 5. Get cURL from the cvs |
| 66 | 6. Build cURL with "./buildconf", "./configure", "make", "sudo make install" |