]> git.proxmox.com Git - mirror_frr.git/blame - INSTALL.quagga.txt
* isis_tlv.[ch]: Two new functions - tlv_add_te_is_neighs() and
[mirror_frr.git] / INSTALL.quagga.txt
CommitLineData
e0170882 1# $Id: INSTALL.quagga.txt,v 1.11 2005/08/10 15:07:02 gdt Exp $
8bed780b 2
9104f569 3--------------------------------------------------------------------------
3764c0c0 4Building and Installing Quagga from releases or snapshots:
9104f569 5
6The 'INSTALL' file contains generic instructions on how to use 'configure'
7scripts.
8
e0170882 9Quagga requires a C compiler supporting the C99 standard.
3764c0c0 10
e0170882 11Quagga requires a reasonable make. It is considered a bug if quagga
12does not compile with the system make on recent FreeBSD, NetBSD or
13OpenBSD, and a very serious bug if it does not compile with GNU make.
14
15Quagga expects a POSIX.2 compliant system, more or less. Clean
16workarounds for POSIX non-compliance are welcome.
17
18It is considered a bug if Quagga fails to build and run on any of the
19following systems (where .x indicates the most recent release), or
20such systems "-current" versions. (Note that considering it a bug is
21not a guarantee of support, merely "we agree that it is broken".)
9104f569 22
e0170882 23 FreeBSD 4.x
24 FreeBSD 5.x
25 Linux [kernel/distribution information needed]
26 NetBSD 1.6.x
27 NetBSD 2.x
28 OpenBSD ? [info needed on what should work]
29 Solaris 9
30 Solaris 10
9104f569 31
9104f569 32
e0170882 33For further Quagga specific information on 'configure' and build-time
34configuration of the software, please read the Quagga info
35documentation, (doc/quagga.info). To read the info page included with
36the Quagga sources without first installing Quagga:
37
38 cd doc
39 # one of the following, depending on your info viewer preferences
40 info quagga.info
41 pinfo -r quagga.info
42 emacs -eval '(info "quagga.info")'
9104f569 43
e0170882 44The Quagga website (http://www.quagga.net) currently has the info
45files available in various formats.
9104f569 46
47--------------------------------------------------------------------------
48Building Quagga from CVS checkouts:
49
50In order to build from CVS, you will need recent versions of several GNU
7cad4000 51tools, particularly autoconf, automake, libtool, GNU awk and texinfo. Note
52that the CVS snapshots on the Quagga website should not require these tools;
53everything is already setup ready to run 'configure'. If you have trouble
54building from CVS checkout it is recommended that you try a CVS snapshot
55instead.
9104f569 56
3764c0c0 57If you are building from plain CVS checkouts, the versions which
58should work at least with:
9104f569 59
60 automake: 1.8.5
61 autoconf: 2.59
62 libtool: 1.5.6
3764c0c0 63 texinfo: 4.7
e0170882 64 GNU AWK: 3.1 [XXX is GNU version really needed? BSD?]
65 texinfo 4.7
3764c0c0 66
e0170882 67Becuase some systems provide texinfo 4.6 (4.7 is new), quagga.info is
68checked in so that texinfo will generally not be invoked. When
69texinfo 4.7 is widespread, quagga.info will be removed from CVS and
70texinfo will become required again. (4.7 has figure support, needed
71for the route server docs, which is why 4.6 doesn't work.)
38c2cfee 72
3849db25 73In order to create PostScript or PDF versions of the Texinfo documentation,
74you will need the convert utility, from the ImageMagick toolset installed,
75and epstopdf from the TeTeX suite.
76
3764c0c0 77To create the required autotools files (Makefile.in, configure, etc.),
78run either the 'update-autotools' script provided, or else the
cbf566e6 79'autoreconf -i' command supplied with your autoconf package. After this
e0170882 80you may run configure.
9104f569 81
82Please refer to "Building and Installing Quagga" above for further
83instructions.
8bed780b 84
85--------------------------------------------------------------------------
86Notes on required versions:
87
88The general goal is to use a modern baseline of tools, while not
89imposing pain on those tracking stable distributions. The notes below
90explain what versions are present in various environments.
91
8bed780b 92NetBSD 1.6.2 and 2.0 provide texinfo 4.6.
e0170882 93NetBSD 2.99.15 provides texinfo 4.7 (so NetBSD 3 will as well).
38c2cfee 94NetBSD pkgsrc provides automake 1.9.1 autoconf 2.59 libtool 1.5.6
95NetBSD pgksrc provides texinfo 4.7 (devel/gtexinfo)
96
9c3f5e6b 97OpenBSD 3.6 provides texinfo 4.2.
98OpenBSD [3.6] ports provides automake 1.4-p6 autoconf 2.5.9 libtool 1.5.8
38c2cfee 99
9104f569 100--------------------------------------------------------------------------