summaryrefslogtreecommitdiff
path: root/README-alpha
blob: aa49b817c0485469d8a6a5cfb88f8368217345a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
GnuTLS README-alpha -- Information for developers.              -*- outline -*-
Copyright (C) 2009-2012 Free Software Foundation, Inc.
See the end for copying conditions.

This file contains instructions for developers and advanced users that
want to build from version controlled sources.

We require several tools to check out and build the software, including:

- Make <http://www.gnu.org/software/make/>
- Automake <http://www.gnu.org/software/automake/>
- Autoconf <http://www.gnu.org/software/autoconf/>
- Autogen <http://www.gnu.org/software/autogen/> (use 5.15pre15 or better)
- Libtool <http://www.gnu.org/software/libtool/>
- Gettext <http://www.gnu.org/software/gettext/>
- Texinfo <http://www.gnu.org/software/texinfo/>
- help2man <http://www.gnu.org/software/help2man/>
- Tar <http://www.gnu.org/software/tar/>
- Gzip <http://www.gnu.org/software/gzip/>
- Texlive & epsf <http://www.tug.org/texlive/> (for PDF manual)
- CVS <http://www.gnu.org/software/cvs/> (for gettext autopoint)
- GTK-DOC <http://www.gtk.org/gtk-doc/> (for API manual)
- Git <http://git.or.cz/>
- Perl <http://www.cpan.org/>
- Valgrind <http://valgrind.org/> (optional)
- Guile <http://www.gnu.org/software/guile/>
- p11-kit <http://p11-glue.freedesktop.org/p11-kit.html>
- libtasn1 <http://josefsson.org/libtasn1/> (optional)
- datefudge <http://packages.debian.org/datefudge> (optional)
- Libidn <http://www.gnu.org/software/libidn/> (optional, for crywrap)
- AWK <http://www.gnu.org/software/awk/> (for make dist, pmccabe2html)
- git2cl <http://josefsson.org/git2cl/> (for make dist, ChangeLog)

The required software is typically distributed with your operating
system, and the instructions for installing them differ.  Here are
some hints:

gNewSense/Debian/Ubuntu:
apt-get install git-core autoconf automake libtool gettext autopoint
apt-get install texinfo texlive texlive-generic-recommended texlive-extra-utils
apt-get install help2man gtk-doc-tools valgrind
apt-get install guile-1.8-dev libtasn1-3-dev
apt-get install datefudge libidn11-dev gawk

You will usually need to install more recent versions of Nettle,
P11-kit and Autogen, which you will need to build from sources.  If
your system has the recent versions, you could do:

sudo apt-get install autogen nettle-dev libp11-kit-dev

To download the version controlled sources:

$ git clone git://git.savannah.gnu.org/gnutls.git
$ cd gnutls

The next step is to run autoreconf (etc) and then ./configure:

$ make bootstrap

When built this way, some developer defaults will be enabled.  See
cfg.mk for details.

Then build the project normally:

$ make
$ make check

Happy hacking!

----------------------------------------------------------------------
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.