source: networking/netlibs/nghttp2.xml@ 0c702b61

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 0c702b61 was 0c702b61, checked in by DJ Lucas <dj@…>, 8 years ago

Add nghttp2. Fixes #8229.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@17773 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY nghttp2-download-http
8 "https://github.com/nghttp2/nghttp2/releases/download/v&nghttp2-version;/nghttp2-&nghttp2-version;.tar.bz2">
9 <!ENTITY nghttp2-download-ftp " ">
10 <!ENTITY nghttp2-md5sum "aae232d0e20782f32f19a46f23dff7e0">
11 <!ENTITY nghttp2-size "1.7 MB">
12 <!ENTITY nghttp2-buildsize "16 MB">
13 <!ENTITY nghttp2-time "0.1 SBU">
14]>
15
16<sect1 id="nghttp2" xreflabel="nghttp2-&nghttp2-version;">
17 <?dbhtml filename="nghttp2.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>nghttp2-&nghttp2-version;</title>
25
26 <indexterm zone="nghttp2">
27 <primary sortas="a-nghttp2">nghttp2</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to nghttp2</title>
32
33 <para>
34 <application>nghttp2</application> is an implementation of HTTP/2 and
35 its header compression algorithm, HPACK.
36 </para>
37
38 &lfs7a_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&nghttp2-download-http;"/>
45 </para>
46 </listitem>
47<!-- <listitem>
48 <para>
49 Download (FTP): <ulink url="&nghttp2-download-ftp;"/>
50 </para>
51 </listitem> -->
52 <listitem>
53 <para>
54 Download MD5 sum: &nghttp2-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &nghttp2-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &nghttp2-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &nghttp2-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">nghttp2 Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Recommended</bridgehead>
77 <para role="required">
78 <xref linkend="libxml2"/>
79 </para>
80
81 <bridgehead renderas="sect4">Optional</bridgehead>
82 <para role="optional">
83 <xref linkend="boost"/>, <!--required for the C++ asio library)-->
84 <xref linkend="python2"/>, <!--required for the python bindings)-->
85 <xref linkend="setuptools"/>, <!--(required for the python bindings-->
86 <ulink url="http://cunit.sourceforge.net/">CUnit</ulink> (required for
87 the testsuite),
88 <ulink url="http://cython.org/">Cython</ulink>, <!--required for the
89 python bindings-->
90 <ulink url="http://www.digip.org/jansson/">Jansson</ulink>, <!--required
91 to build the HPACK tools-->
92 <ulink url="http://www.canonware.com/jemalloc/">jemalloc</ulink>,
93 <!--required for the example HTTP server-->
94 <ulink url="http://software.schmorp.de/pkg/libev.html">libev</ulink>,
95 <!--required to build the applications-->
96 <ulink url="http://libevent.org/">libevent</ulink>, <!--required to build
97 the examples-->
98 <ulink url="https://mruby.org/">mruby</ulink>, <!--provides ruby support
99 in the sample HTTP server-->
100 <ulink url="https://tatsuhiro-t.github.io/spdylay/">Spdylay</ulink>, and
101 <!--provide SPDY functionality-->
102 <ulink url="http://sphinx-doc.org/">Sphinx</ulink>. <!--required to build
103 documentation-->
104 </para>
105
106 <para condition="html" role="usernotes">
107 User Notes: <ulink url="&blfs-wiki;/nghttp2"/>
108 </para>
109 </sect2>
110
111 <sect2 role="installation">
112 <title>Installation of nghttp2</title>
113
114 <para>
115 Install <application>nghttp2</application> by running the following
116 commands:
117 </para>
118
119<screen><userinput>./configure --prefix=/usr \
120 --disable-static \
121 --enable-lib-only &amp;&amp;
122make</userinput></screen>
123
124 <para>
125 This package does not come with a usable test suite.
126 </para>
127
128 <para>
129 Now, as the <systemitem class="username">root</systemitem> user:
130 </para>
131
132<screen role="root"><userinput>make install</userinput></screen>
133
134 </sect2>
135
136 <sect2 role="commands">
137 <title>Command Explanations</title>
138
139 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
140 href="../../xincludes/static-libraries.xml"/>
141
142 <para>
143 <parameter>--enable-lib-only</parameter>: only build libnghttp2. Omit
144 this switch if you'd like to build the example applications, Python
145 bindings, or the C++ asio library.
146 </para>
147
148 </sect2>
149
150 <sect2 role="content">
151 <title>Contents</title>
152
153 <segmentedlist>
154 <segtitle>Installed Programs</segtitle>
155 <segtitle>Installed Libraries</segtitle>
156 <segtitle>Installed Directories</segtitle>
157
158 <seglistitem>
159 <seg>
160 None
161 </seg>
162 <seg>
163 libnghttp2.so.14.10.1
164 </seg>
165 <seg>
166 /usr/include/nghttp2
167 </seg>
168 </seglistitem>
169 </segmentedlist>
170
171 <variablelist>
172 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
173 <?dbfo list-presentation="list"?>
174 <?dbhtml list-presentation="table"?>
175
176 <varlistentry id="libnghttp2">
177 <term><filename class="libraryfile">libnghttp2.so.14.10.1</filename></term>
178 <listitem>
179 <para>
180 an implementation of the Hypertext Transfer Protocol version 2 in C.
181 </para>
182 <indexterm zone="nghttp2 libnghttp2">
183 <primary sortas="c-libnghttp2">libnghttp2.so.14.10.1</primary>
184 </indexterm>
185 </listitem>
186 </varlistentry>
187
188 </variablelist>
189
190 </sect2>
191
192</sect1>
Note: See TracBrowser for help on using the repository browser.