2010-02-15 03:40:18 +08:00
|
|
|
_ _ ____ _
|
|
|
|
___| | | | _ \| |
|
|
|
|
/ __| | | | |_) | |
|
|
|
|
| (__| |_| | _ <| |___
|
2001-04-22 23:44:13 +08:00
|
|
|
\___|\___/|_| \_\_____|
|
2001-01-04 20:36:56 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
# GIT-INFO
|
2001-01-04 20:36:56 +08:00
|
|
|
|
2010-03-22 07:41:34 +08: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 23:44:13 +08:00
|
|
|
inner sanctum.
|
2001-01-04 20:36:56 +08:00
|
|
|
|
2004-02-27 00:23:28 +08:00
|
|
|
To build in environments that support configure, after having extracted
|
2010-03-22 07:41:34 +08:00
|
|
|
everything from git, do this:
|
2001-01-04 20:36:56 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
autoreconf -fi
|
|
|
|
./configure --with-openssl
|
|
|
|
make
|
2002-01-03 17:12:41 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
Daniel uses a configure line similar to this for easier development:
|
2002-12-21 00:00:56 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
./configure --disable-shared --enable-debug --enable-maintainer-mode
|
2002-12-21 00:00:56 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
In environments that don't support configure (i.e. Windows), do this:
|
2004-02-27 00:23:28 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
buildconf.bat
|
2004-02-27 00:23:28 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
## REQUIREMENTS
|
2002-12-21 00:00:56 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
For `autoreconf` and `configure` (not `buildconf.bat`) to work, you need the
|
2021-09-24 19:14:52 +08:00
|
|
|
following software installed:
|
2002-01-03 17:12:41 +08:00
|
|
|
|
2003-05-13 17:38:09 +08:00
|
|
|
o autoconf 2.57 (or later)
|
|
|
|
o automake 1.7 (or later)
|
|
|
|
o libtool 1.4.2 (or later)
|
2002-01-03 17:12:41 +08:00
|
|
|
o GNU m4 (required by autoconf)
|
2024-03-05 00:22:17 +08:00
|
|
|
o perl
|
2003-03-20 23:12:43 +08:00
|
|
|
|
2024-03-07 16:28:06 +08:00
|
|
|
If you don't have perl and don't want to install it, 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.
|