]> git.proxmox.com Git - mirror_frr.git/blob - INSTALL.quagga.txt
tests: DejaGNU libzebra
[mirror_frr.git] / INSTALL.quagga.txt
1 --------------------------------------------------------------------------
2 Building and Installing Quagga from releases or snapshots:
3
4 The 'INSTALL' file contains generic instructions on how to use 'configure'
5 scripts.
6
7 Quagga requires a C compiler (and associated header files and
8 libraries) supporting the C99 standard.
9
10 Quagga requires a reasonable make. It is considered a bug if quagga
11 does not compile with the system make on recent FreeBSD, NetBSD or
12 OpenBSD, and a very serious bug if it does not compile with GNU make.
13
14 Quagga expects a POSIX.2 compliant system, more or less. Clean
15 workarounds for POSIX non-compliance are welcome.
16
17 It is considered a bug if Quagga fails to build and run on any of the
18 following systems (where .x indicates the most recent release), or
19 such systems "-current" versions. Or, it might be that this list is
20 out of date and will be updated. (Note that considering it a bug is
21 not a guarantee of support, merely "we agree that it is broken".)
22
23 Dragonfly ?
24 FreeBSD (stable branches currently supported, plus perhaps one)
25 FreeBSD-current
26 Linux [kernel/distribution information needed]
27 NetBSD 4.x
28 NetBSD 5.x
29 NetBSD 6.x
30 NetBSD-current
31 OpenBSD ? [info needed on what should work]
32 Solaris (modern/supported versions, including OpenSolaris forks)
33
34 For further Quagga specific information on 'configure' and build-time
35 configuration of the software, please read the Quagga info
36 documentation, (doc/quagga.info). To read the info page included with
37 the Quagga sources without first installing Quagga:
38
39 cd doc
40 # one of the following, depending on your info viewer preferences
41 info quagga.info
42 pinfo -r quagga.info
43 emacs -eval '(info "quagga.info")'
44
45 The Quagga website (http://www.quagga.net) currently has the info
46 files available in various formats.
47
48 --------------------------------------------------------------------------
49 Building Quagga from CVS checkouts:
50
51 In order to build from CVS, you will need recent versions of several GNU
52 tools, particularly autoconf, automake, libtool, GNU awk and texinfo. Note
53 that the CVS snapshots on the Quagga website should not require these tools;
54 everything is already setup ready to run 'configure'. If you have trouble
55 building from CVS checkout it is recommended that you try a CVS snapshot
56 instead.
57
58 We declare that the following versions should work for building from
59 CVS checkouts. Earlier versions may work, but failure to do so is not
60 a bug. Required versions can be moved earlier if no problems, or
61 later after a judgement that a system without a higher version is
62 deficient is made.
63
64 automake: 1.9.6 (released 2005-07-10)
65 autoconf: 2.59 (2.60 on 2006-06-26 is too recent to require)
66 libtool: 1.5.22 (released 2005-12-18)
67 texinfo: 4.7 (released 2004-04-10; 4.8 is not yet common)
68 GNU AWK: 3.1.5 (released 2005-08-12)
69
70 [TODO: texinfo 4.6 is now ancient and this should be revisited/fixed]
71 Because some systems provide texinfo 4.6 (4.7 is new), quagga.info is
72 checked in so that texinfo will generally not be invoked. When
73 texinfo 4.7 is widespread, quagga.info will be removed from CVS and
74 texinfo will become required again. (4.7 has figure support, needed
75 for the route server docs, which is why 4.6 doesn't work.)
76
77 In order to create PostScript or PDF versions of the Texinfo documentation,
78 you will need the convert utility, from the ImageMagick toolset installed,
79 and epstopdf from the TeTeX suite.
80
81 To create the required autotools files (Makefile.in, configure, etc.),
82 run "./bootstrap.sh". After this you may run configure as for a
83 snapshot or release.
84
85 Please refer to "Building and Installing Quagga" above for further
86 instructions.
87
88 --------------------------------------------------------------------------
89 Notes on required versions:
90
91 The general goal is to use a modern baseline of tools, while not
92 imposing pain on those tracking supported (or almost supported) stable
93 distributions. The notes below explain what versions are present in
94 various environments.
95
96 NetBSD 4 provides texinfo 4.7.
97 NetBSD 5 and 6 provides texinfo 4.8
98
99 Fedora Core ? provides autoconf 2.59.
100
101 OpenBSD 3.6 provides texinfo 4.2.
102 OpenBSD [3.6] ports provides automake 1.4-p6 autoconf 2.5.9 libtool 1.5.8
103
104 --------------------------------------------------------------------------