| Yang Tse | a07bc79 | 2010-02-14 19:40:18 +0000 | [diff] [blame] | 1 | _ _ ____ _ |
| 2 | ___| | | | _ \| | |
| 3 | / __| | | | |_) | | |
| 4 | | (__| |_| | _ <| |___ |
| Daniel Stenberg | f6d4a25 | 2001-04-22 15:44:13 +0000 | [diff] [blame] | 5 | \___|\___/|_| \_\_____| |
| Daniel Stenberg | 4ac4831 | 2001-01-04 12:36:56 +0000 | [diff] [blame] | 6 | |
| Daniel Stenberg | 9599837 | 2010-03-22 00:41:34 +0100 | [diff] [blame] | 7 | GIT-INFO |
| Daniel Stenberg | 4ac4831 | 2001-01-04 12:36:56 +0000 | [diff] [blame] | 8 | |
| Daniel Stenberg | 9599837 | 2010-03-22 00:41:34 +0100 | [diff] [blame] | 9 | This file is only present in git - never in release archives. It contains |
| 10 | information about other files and things that the git repository keeps in its |
| Daniel Stenberg | f6d4a25 | 2001-04-22 15:44:13 +0000 | [diff] [blame] | 11 | inner sanctum. |
| Daniel Stenberg | 4ac4831 | 2001-01-04 12:36:56 +0000 | [diff] [blame] | 12 | |
| Daniel Stenberg | 4515d06 | 2004-02-26 16:23:28 +0000 | [diff] [blame] | 13 | To build in environments that support configure, after having extracted |
| Daniel Stenberg | 9599837 | 2010-03-22 00:41:34 +0100 | [diff] [blame] | 14 | everything from git, do this: |
| Daniel Stenberg | 4ac4831 | 2001-01-04 12:36:56 +0000 | [diff] [blame] | 15 | |
| Peng-Yu Chen | df269fe | 2021-05-08 02:20:29 +0100 | [diff] [blame] | 16 | autoreconf -fi |
| Daniel Stenberg | 19d3fd1 | 2001-01-09 10:09:39 +0000 | [diff] [blame] | 17 | ./configure |
| 18 | make |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 19 | |
| Daniel Stenberg | 3b8583b | 2002-12-20 16:00:56 +0000 | [diff] [blame] | 20 | Daniel uses a ./configure line similar to this for easier development: |
| 21 | |
| 22 | ./configure --disable-shared --enable-debug --enable-maintainer-mode |
| 23 | |
| Daniel Stenberg | 4515d06 | 2004-02-26 16:23:28 +0000 | [diff] [blame] | 24 | In environments that don't support configure (i.e. Microsoft), do this: |
| 25 | |
| 26 | buildconf.bat |
| 27 | |
| Daniel Stenberg | 3b8583b | 2002-12-20 16:00:56 +0000 | [diff] [blame] | 28 | |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 29 | REQUIREMENTS |
| 30 | |
| Daniel Stenberg | dca6007 | 2021-09-24 13:14:52 +0200 | [diff] [blame] | 31 | For autoreconf and configure (not buildconf.bat) to work, you need the |
| 32 | following software installed: |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 33 | |
| Daniel Stenberg | 8894bd0 | 2003-05-13 09:38:09 +0000 | [diff] [blame] | 34 | o autoconf 2.57 (or later) |
| 35 | o automake 1.7 (or later) |
| 36 | o libtool 1.4.2 (or later) |
| Daniel Stenberg | dd06dce | 2002-01-03 09:12:41 +0000 | [diff] [blame] | 37 | o GNU m4 (required by autoconf) |
| 38 | |
| Daniel Stenberg | 68bb74d | 2003-03-20 15:12:43 +0000 | [diff] [blame] | 39 | o nroff + perl |
| 40 | |
| 41 | If you don't have nroff and perl and you for some reason don't want to |
| Yang Tse | ae2a2c9 | 2012-12-26 23:30:54 +0100 | [diff] [blame] | 42 | install them, you can rename the source file src/tool_hugehelp.c.cvs to |
| 43 | src/tool_hugehelp.c and avoid having to generate this file. This will |
| 44 | give you a stubbed version of the file that doesn't contain actual content. |