bug 976: do not use stdout and stderr in a child processing smb://
[elinks.git] / doc / installation.txt
blob25ef0010d348e98673f5ac61b21440f725333969
1 Getting ELinks up and running
2 -----------------------------
4 Installing ELinks should be pretty easy on most systems. Below is described
5 the whole process of configuring the compilation, compiling and installing.
7 Building and Installing ELinks
8 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 The quick guide for the impatient. Issue the following commands from the
11 ELinks source directory:
13         $ ./configure && make && make install
15 However you might consider to tweek a few compile time options before building
16 ELinks. You might also want to take a look at what libraries and programs are
17 required or recommended that you install.
19 Requirements
20 ~~~~~~~~~~~~
22 To successfully install ELinks all that is required is GNU make
23 (version 3.78 or later) and a C compiler. If you want to install
24 directly from GIT it is also required that automake and autoconf
25 is installed on your system.
27 Recommended Libraries and Programs
28 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
30 To make use of many of ELinks features you will need to have some external
31 libraries and utility programs installed on your system. It is recommended to
32 have the following libraries and programs installed:
34 `-----------------------`----------------------------------------------------
35 Dependency              Description
36 -----------------------------------------------------------------------------
37 Lua or Guile            Makes it possible to write scripting plugins.       \
38 ifdef::installation-webpage[]
39                         See link:manual.html#lua-scripting[the Elinks - Lua interface]    \
40 endif::installation-webpage[]
41 ifndef::installation-webpage[]
42                         See <<lua-scripting,the Elinks - Lua interface>>    \
43 endif::installation-webpage[]
44                         for more info.
45 zlib 1.2.0.2 or later   For handling gzip or deflate compressed documents   \
46                         both locally and sent from server.
47 bzip2                   Likewise, for bzip2 compressed documents.
48 LZMA Utils              Likewise, for LZMA compressed documents.            \
49                         Version 4.32.5 should work.
50 OpenSSL or GNU TLS      For handling secure HTTP browsing.
51 GPM                     'General Purpose Mouse' for mouse support.
52 expat                   'XML Parser Toolkit' needed for XBEL support.
53 smbclient               Program needed for smb:// protocol support.
54 rxvt-unicode            For terminal emulator which supports 88 colors.
55 xterm with 256 colors   Program atleast patch level  179 or rxvt program    \
56                         from version 2.7.9 for support of 256 colors.       \
57                         Newer PuTTY also has 256 color support.
58 libidn                  For internationalized domain names.
59 SpiderMonkey            Mozilla's JavaScript engine for getting             \   
60                         JavaScript/ECMAScript support in ELinks.            \
61 ifdef::installation-webpage[]
62                         See also link:manual.html#ecmascript[notes on ECMAScript support].
63 endif::installation-webpage[]
64 ifndef::installation-webpage[]
65                         See also <<ecmascript,notes on ECMAScript support>>.
66 endif::installation-webpage[]
67 -----------------------------------------------------------------------------
69 When compiling, you also need the header files for the libraries. Most OS
70 distributors put a given library's headers in a package separate from the
71 library itself; this package usually has `-dev` or similar appended to its
72 name.
74 Further reading
75 ~~~~~~~~~~~~~~~
77 This installation guide is far from being complete. You are also advised to
78 read the `README` and the `INSTALL` files distributed with ELinks for further
79 up to date info on building and installing.
81 ifndef::installation-webpage[]
83 include::small.txt[]
85 include::ecmascript.txt[]
87 include::{builddir}features.txt[]
89 endif::installation-webpage[]