source: networking/netutils/avahi.xml@ 14726fe

10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 14726fe was 14726fe, checked in by Douglas R. Reno <renodr@…>, 4 years ago

Update to curl-7.73.0
Update to glib2-2.66.2 (time critical fix, see the mailing lists)
Fix a regression in avahi that affects systems with IPv6 enabled and multiple NICs.

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

  • Property mode set to 100644
File size: 23.1 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 avahi-download-http "https://github.com/lathiat/avahi/releases/download/v&avahi-version;/avahi-&avahi-version;.tar.gz">
8 <!ENTITY avahi-download-ftp " ">
9 <!ENTITY avahi-md5sum "229c6aa30674fc43c202b22c5f8c2be7">
10 <!ENTITY avahi-size "1.5 MB">
11 <!ENTITY avahi-buildsize "32 MB">
12 <!ENTITY avahi-time "0.3 SBU">
13]>
14
15<sect1 id="avahi" xreflabel="Avahi-&avahi-version;">
16 <?dbhtml filename="avahi.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Avahi-&avahi-version;</title>
24
25 <indexterm zone="avahi">
26 <primary sortas="a-Avahi">Avahi</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Avahi</title>
31
32 <para>
33 The <application>Avahi</application> package is a system which
34 facilitates service discovery on a local network.
35 </para>
36
37 &lfs10_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&avahi-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&avahi-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &avahi-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &avahi-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &avahi-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &avahi-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
74 <itemizedlist spacing="compact">
75 <listitem>
76 <para>
77 Required patch:
78 <ulink url="&patch-root;/avahi-&avahi-version;-ipv6_race_condition_fix-1.patch"/>
79 </para>
80 </listitem>
81 </itemizedlist>
82
83 <bridgehead renderas="sect3">Avahi Dependencies</bridgehead>
84
85 <bridgehead renderas="sect4">Required</bridgehead>
86 <para role="required">
87 <xref linkend="glib2"/>
88 </para>
89
90 <bridgehead renderas="sect4">Recommended</bridgehead>
91 <para role="recommended">
92 <xref linkend="gobject-introspection"/>,
93 <xref linkend="gtk2"/>,
94 <xref linkend="gtk3"/>,
95 <xref linkend="libdaemon"/>,
96 <xref linkend="libglade"/>, and
97 <xref linkend="qt5"/>
98 </para>
99
100 <bridgehead renderas="sect4">Optional</bridgehead>
101 <para role="optional">
102 <xref linkend="dbus-python"/>,
103 <xref linkend="libevent"/>,
104 <xref linkend="pygtk"/>,
105 <xref linkend="doxygen"/> and
106 <ulink url="https://sourceforge.net/projects/xmltoman/">xmltoman</ulink>
107 (for generating documentation)
108 </para>
109
110 <para condition="html" role="usernotes">User Notes:
111 <ulink url="&blfs-wiki;/avahi"/>
112 </para>
113 </sect2>
114
115 <sect2 role="installation">
116 <title>Installation of Avahi</title>
117
118 <para>
119 There should be a dedicated user and group to take control
120 of the <command>avahi-daemon</command> daemon after it is
121 started. Issue the following commands as the
122 <systemitem class="username">root</systemitem> user:
123 </para>
124
125<screen role="root"><userinput>groupadd -fg 84 avahi &amp;&amp;
126useradd -c "Avahi Daemon Owner" -d /var/run/avahi-daemon -u 84 \
127 -g avahi -s /bin/false avahi</userinput></screen>
128
129 <para>
130 There should also be a dedicated priviliged access group for
131 <application>Avahi</application> clients. Issue the following command as
132 the <systemitem class="username">root</systemitem> user:
133 </para>
134
135<screen role="root"><userinput>groupadd -fg 86 netdev</userinput></screen>
136
137 <para>
138 Fix a regression that results in a race condition when IPv6 is in use
139 and multiple network adapters are present on the system:
140 </para>
141
142<screen><userinput remap="pre">patch -Np1 -i ../avahi-&avahi-version;-ipv6_race_condition_fix-1.patch</userinput></screen>
143
144 <para>
145 Install <application>Avahi</application> by running the following
146 commands:
147 </para>
148
149<screen revision="sysv"><userinput>./configure --prefix=/usr \
150 --sysconfdir=/etc \
151 --localstatedir=/var \
152 --disable-static \
153 --disable-libevent \
154 --disable-mono \
155 --disable-monodoc \
156 --disable-python \
157 --disable-qt3 \
158 --disable-qt4 \
159 --enable-core-docs \
160 --with-distro=none \
161 --with-systemdsystemunitdir=no &amp;&amp;
162make</userinput></screen>
163
164<screen revision="systemd"><userinput>./configure --prefix=/usr \
165 --sysconfdir=/etc \
166 --localstatedir=/var \
167 --disable-static \
168 --disable-libevent \
169 --disable-mono \
170 --disable-monodoc \
171 --disable-python \
172 --disable-qt3 \
173 --disable-qt4 \
174 --enable-core-docs \
175 --with-distro=none \
176 --with-systemdsystemunitdir=/lib/systemd/system &amp;&amp;
177make</userinput></screen>
178
179 <para>
180 This package does not come with a test suite.
181 </para>
182
183 <para>
184 Now, as the <systemitem class="username">root</systemitem> user:
185 </para>
186
187<screen role="root"><userinput>make install</userinput></screen>
188
189 </sect2>
190
191 <sect2 role="commands">
192 <title>Command Explanations</title>
193
194 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
195 href="../../xincludes/static-libraries.xml"/>
196
197 <para>
198 <parameter>--disable-libevent</parameter>: This parameter disables the
199 use of <xref linkend="libevent"/>. Remove if you have it installed.
200 </para>
201
202 <para>
203 <parameter>--disable-mono</parameter>: This parameter disables the
204 <application>Mono</application> bindings.
205 </para>
206
207 <para>
208 <parameter>--disable-monodoc</parameter>: This parameter disables
209 documentation for the <application>Mono</application> bindings.
210 </para>
211
212 <para>
213 <parameter>--disable-python</parameter>: This parameter disables the
214 scripts that depend on <application>Python</application>. It also
215 allows a regular install to complete successfully.
216 </para>
217
218 <para>
219 <parameter>--disable-qt3</parameter>: This parameter disables the
220 attempt to build the obsolete <application>Qt3</application>
221 portions of the package.
222 </para>
223
224 <para>
225 <parameter>--disable-qt4</parameter>: This parameter disables the
226 attempt to build the obsolete <application>Qt4Core</application>
227 portions of the package.
228 </para>
229
230 <para>
231 <parameter>--enable-core-docs</parameter>: This parameter enables the
232 building of documentation.
233 </para>
234
235 <para>
236 <parameter>--with-distro=none</parameter>: There is an obsolete
237 boot script in the distribution for LFS. This option disables it.
238 </para>
239
240 <para revision="sysv">
241 <parameter>--with-systemdsystemunitdir=no</parameter>: Without it, the
242 daemon fails to start in BLFS, which does not support
243 <application>systemd</application>.
244 </para>
245
246 <para revision="systemd">
247 <parameter>--with-systemdsystemunitdir=/lib/systemd/system</parameter>:
248 This parameter is used to set the correct installation directory for
249 systemd units.
250 </para>
251
252 <para>
253 <option>--disable-dbus</option>: This parameter disables the use
254 of <application>D-Bus</application>.
255 </para>
256
257 <para>
258 <option>--disable-gtk</option>: This parameter disables the use
259 of <application>GTK+2</application>.
260 </para>
261
262 <para>
263 <option>--disable-gtk3</option>: This parameter disables the use
264 of <application>GTK+3</application>.
265 </para>
266
267 <para>
268 <option>--disable-qt5</option>: This parameter disables the use
269 of <application>Qt5</application>, and allows building without it.
270 </para>
271
272 <para>
273 <option>--disable-libdaemon</option>: This parameter disables the use
274 of <application>libdaemon</application>. If you use this option,
275 <command>avahi-daemon</command> won't be built.
276 </para>
277
278 <para>
279 <option>--enable-tests</option>: This option enables the building of
280 tests and examples.
281 </para>
282
283 <para>
284 <option>--enable-compat-howl</option>: This option enables the
285 compatibility layer for <application>HOWL</application>.
286 </para>
287
288 <para>
289 <option>--enable-compat-libdns_sd</option>: This option enables the
290 compatibility layer for <application>libdns_sd</application>.
291 </para>
292
293 </sect2>
294
295 <sect2 role="configuration">
296 <title>Configuring avahi</title>
297
298 <sect3 id="avahi-init">
299 <title>Boot Script</title>
300
301 <para revision="sysv">
302 To automatically start the <command>avahi-daemon</command>
303 when the system is rebooted, install the
304 <filename>/etc/rc.d/init.d/avahi</filename> bootscript from
305 the <xref linkend="bootscripts"/> package.
306 </para>
307
308 <para revision="systemd">
309 To start the <command>avahi-daemon</command> daemon at boot, enable
310 the previously installed systemd unit by running the following command
311 as the <systemitem class="username">root</systemitem> user:
312 </para>
313
314 <indexterm zone="avahi avahi-init">
315 <primary sortas="f-avahi">avahi</primary>
316 </indexterm>
317
318<screen role="root" revision="sysv"><userinput>make install-avahi</userinput></screen>
319
320<screen role="root" revision="systemd"><userinput>systemctl enable avahi-daemon</userinput></screen>
321
322 <para revision="systemd">
323 To start the <command>avahi-dnsconfd</command> daemon at boot, enable
324 the previously installed systemd unit by running the following command
325 as the <systemitem class="username">root</systemitem> user:
326 </para>
327
328<screen role="root" revision="systemd"><userinput>systemctl enable avahi-dnsconfd</userinput></screen>
329
330 </sect3>
331
332 </sect2>
333
334 <sect2 role="content">
335 <title>Contents</title>
336
337 <segmentedlist>
338 <segtitle>Installed Programs</segtitle>
339 <segtitle>Installed Libraries</segtitle>
340 <segtitle>Installed Directories</segtitle>
341
342 <seglistitem>
343 <seg>avahi-autoipd, avahi-browse, avahi-browse-domains,
344 avahi-daemon, avahi-discover-standalone, avahi-dnsconfd,
345 avahi-publish, avahi-publish-address, avahi-publish-service,
346 avahi-resolve, avahi-resolve-address, avahi-resolve-host-name,
347 avahi-set-host-name, bshell, bssh, and bvnc</seg>
348 <seg>libavahi-client.so, libavahi-common.so, libavahi-core.so,
349 libavahi-glib.so, libavahi-gobject.so, libavahi-libevent.so
350 libavahi-ui-gtk3.so, libavahi-qt5, libavahi-ui.so, libdns_sd.so, and
351 libhowl.so,</seg>
352 <seg>/etc/avahi/services, /usr/include/{avahi-client,avahi-common,
353 avahi-compat-howl, avahi-compat-libdns_sd, avahi-core, avahi-glib,
354 avahi-gobject, avahi-libevent, avahi-qt5, avahi-ui},
355 /usr/lib/avahi, /usr/share/avahi</seg>
356 </seglistitem>
357 </segmentedlist>
358
359 <variablelist>
360 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
361 <?dbfo list-presentation="list"?>
362 <?dbhtml list-presentation="table"?>
363
364 <varlistentry id="avahi-autoipd">
365 <term><command>avahi-autoipd</command></term>
366 <listitem>
367 <para>
368 is a IPv4LL network address configuration daemon.
369 </para>
370 <indexterm zone="avahi avahi-autoipd">
371 <primary sortas="b-avahi-autoipd">avahi-autoipd</primary>
372 </indexterm>
373 </listitem>
374 </varlistentry>
375 <!--
376 <varlistentry id="avahi-bookmarks">
377 <term><command>avahi-bookmarks</command></term>
378 <listitem>
379 <para>
380 is a Web service showing mDNS/DNS-SD announced HTTP services
381 using the <application>Avahi</application> daemon.
382 </para>
383 <indexterm zone="avahi avahi-bookmarks">
384 <primary sortas="b-avahi-bookmarks">avahi-bookmarks</primary>
385 </indexterm>
386 </listitem>
387 </varlistentry>
388 -->
389 <varlistentry id="avahi-browse">
390 <term><command>avahi-browse</command></term>
391 <listitem>
392 <para>
393 browses for mDNS/DNS-SD services using the
394 <application>Avahi</application> daemon.
395 </para>
396 <indexterm zone="avahi avahi-browse">
397 <primary sortas="b-avahi-browse">avahi-browse</primary>
398 </indexterm>
399 </listitem>
400 </varlistentry>
401
402 <varlistentry id="avahi-browse-domains">
403 <term><command>avahi-browse-domains</command></term>
404 <listitem>
405 <para>
406 browses for mDNS/DNS-SD services using the
407 <application>Avahi</application> daemon.
408 </para>
409 <indexterm zone="avahi avahi-browse-domains">
410 <primary sortas="b-avahi-browse-domains">avahi-browse-domains</primary>
411 </indexterm>
412 </listitem>
413 </varlistentry>
414
415 <varlistentry id="avahi-daemon">
416 <term><command>avahi-daemon</command></term>
417 <listitem>
418 <para>
419 is the <application>Avahi</application> mDNS/DNS-SD daemon.
420 </para>
421 <indexterm zone="avahi avahi-daemon">
422 <primary sortas="b-avahi-daemon">avahi-daemon</primary>
423 </indexterm>
424 </listitem>
425 </varlistentry>
426 <!--
427 <varlistentry id="avahi-discover">
428 <term><command>avahi-discover</command></term>
429 <listitem>
430 <para>
431 browses for mDNS/DNS-SD services using the
432 <application>Avahi</application> daemon.
433 </para>
434 <indexterm zone="avahi avahi-discover">
435 <primary sortas="b-avahi-discover">avahi-discover</primary>
436 </indexterm>
437 </listitem>
438 </varlistentry>
439 -->
440 <varlistentry id="avahi-discover-standalone">
441 <term><command>avahi-discover-standalone</command></term>
442 <listitem>
443 <para>
444 browses for mDNS/DNS-SD services using the
445 <application>Avahi</application> daemon.
446 </para>
447 <indexterm zone="avahi avahi-discover-standalone">
448 <primary sortas="b-avahi-discover-standalone">avahi-discover-standalone</primary>
449 </indexterm>
450 </listitem>
451 </varlistentry>
452
453 <varlistentry id="avahi-dnsconfd">
454 <term><command>avahi-dnsconfd</command></term>
455 <listitem>
456 <para>
457 is a Unicast DNS server from mDNS/DNS-SD configuration daemon.
458 </para>
459 <indexterm zone="avahi avahi-dnsconfd">
460 <primary sortas="b-avahi-dnsconfd">avahi-dnsconfd</primary>
461 </indexterm>
462 </listitem>
463 </varlistentry>
464
465 <varlistentry id="avahi-publish">
466 <term><command>avahi-publish</command></term>
467 <listitem>
468 <para>
469 registers a mDNS/DNS-SD service or host name or address mapping
470 using the <application>Avahi</application> daemon.
471 </para>
472 <indexterm zone="avahi avahi-publish">
473 <primary sortas="b-avahi-publish">avahi-publish</primary>
474 </indexterm>
475 </listitem>
476 </varlistentry>
477
478 <varlistentry id="avahi-publish-address">
479 <term><command>avahi-publish-address</command></term>
480 <listitem>
481 <para>
482 registers a mDNS/DNS-SD service or host name or address mapping
483 using the <application>Avahi</application> daemon.
484 </para>
485 <indexterm zone="avahi avahi-publish-address">
486 <primary sortas="b-avahi-publish-address">avahi-publish-address</primary>
487 </indexterm>
488 </listitem>
489 </varlistentry>
490
491 <varlistentry id="avahi-publish-service">
492 <term><command>avahi-publish-service</command></term>
493 <listitem>
494 <para>
495 registers a mDNS/DNS-SD service or host name or address mapping
496 using the <application>Avahi</application> daemon.
497 </para>
498 <indexterm zone="avahi avahi-publish-service">
499 <primary sortas="b-avahi-publish-service">avahi-publish-service</primary>
500 </indexterm>
501 </listitem>
502 </varlistentry>
503
504 <varlistentry id="avahi-resolve">
505 <term><command>avahi-resolve</command></term>
506 <listitem>
507 <para>
508 resolves one or more mDNS/DNS host name(s) to IP address(es)
509 (and vice versa) using the <application>Avahi</application>
510 daemon.
511 </para>
512 <indexterm zone="avahi avahi-resolve">
513 <primary sortas="b-avahi-resolve">avahi-resolve</primary>
514 </indexterm>
515 </listitem>
516 </varlistentry>
517
518 <varlistentry id="avahi-resolve-address">
519 <term><command>avahi-resolve-address</command></term>
520 <listitem>
521 <para>
522 resolves one or more mDNS/DNS host name(s) to IP address(es)
523 (and vice versa) using the <application>Avahi</application>
524 daemon.
525 </para>
526 <indexterm zone="avahi avahi-resolve-address">
527 <primary sortas="b-avahi-resolve-address">avahi-resolve-address</primary>
528 </indexterm>
529 </listitem>
530 </varlistentry>
531
532 <varlistentry id="avahi-resolve-host-name">
533 <term><command>avahi-resolve-host-name</command></term>
534 <listitem>
535 <para>
536 resolves one or more mDNS/DNS host name(s) to IP address(es)
537 (and vice versa) using the <application>Avahi</application>
538 daemon.
539 </para>
540 <indexterm zone="avahi avahi-resolve-host-name">
541 <primary sortas="b-avahi-resolve-host-name">avahi-resolve-host-name</primary>
542 </indexterm>
543 </listitem>
544 </varlistentry>
545
546 <varlistentry id="avahi-set-host-name">
547 <term><command>avahi-set-host-name</command></term>
548 <listitem>
549 <para>
550 changes the mDNS host name.
551 </para>
552 <indexterm zone="avahi avahi-set-host-name">
553 <primary sortas="b-avahi-set-host-name">avahi-set-host-name</primary>
554 </indexterm>
555 </listitem>
556 </varlistentry>
557
558 <!--<varlistentry id="bshell">
559 <term><command>bshell</command></term>
560 <listitem>
561 <para>
562 does this .....
563 </para>
564 <indexterm zone="avahi bshell">
565 <primary sortas="b-bshell">bshell</primary>
566 </indexterm>
567 </listitem>
568 </varlistentry>-->
569
570 <varlistentry id="bssh">
571 <term><command>bssh</command></term>
572 <listitem>
573 <para>
574 browses for SSH servers on the local network.
575 </para>
576 <indexterm zone="avahi bssh">
577 <primary sortas="b-bssh">bssh</primary>
578 </indexterm>
579 </listitem>
580 </varlistentry>
581
582 <varlistentry id="bvnc">
583 <term><command>bvnc</command></term>
584 <listitem>
585 <para>
586 browses for VNC servers on the local network.
587 </para>
588 <indexterm zone="avahi bvnc">
589 <primary sortas="b-bvnc">bvnc</primary>
590 </indexterm>
591 </listitem>
592 </varlistentry>
593
594 <!--<varlistentry id="libavahi-client">
595 <term><filename class='libraryfile'>libavahi-client.{so,a}</filename></term>
596 <listitem>
597 <para>
598 contains functions that .....
599 </para>
600 <indexterm zone="avahi libavahi-client">
601 <primary sortas="c-libavahi-client">libavahi-client.{so,a}</primary>
602 </indexterm>
603 </listitem>
604 </varlistentry>
605
606 <varlistentry id="libavahi-common">
607 <term><filename class='libraryfile'>libavahi-common.{so,a}</filename></term>
608 <listitem>
609 <para>
610 contains functions that .....
611 </para>
612 <indexterm zone="avahi libavahi-common">
613 <primary sortas="c-libavahi-common">libavahi-common.{so,a}</primary>
614 </indexterm>
615 </listitem>
616 </varlistentry>
617
618 <varlistentry id="libavahi-core">
619 <term><filename class='libraryfile'>libavahi-core.{so,a}</filename></term>
620 <listitem>
621 <para>
622 contains functions that .....
623 </para>
624 <indexterm zone="avahi libavahi-core">
625 <primary sortas="c-libavahi-core">libavahi-core.{so,a}</primary>
626 </indexterm>
627 </listitem>
628 </varlistentry>
629
630 <varlistentry id="libavahi-glib">
631 <term><filename class='libraryfile'>libavahi-glib.{so,a}</filename></term>
632 <listitem>
633 <para>
634 contains functions that .....
635 </para>
636 <indexterm zone="avahi libavahi-glib">
637 <primary sortas="c-libavahi-glib">libavahi-glib.{so,a}</primary>
638 </indexterm>
639 </listitem>
640 </varlistentry>
641
642 <varlistentry id="libavahi-gobject">
643 <term><filename class='libraryfile'>libavahi-gobject.{so,a}</filename></term>
644 <listitem>
645 <para>
646 contains functions that .....
647 </para>
648 <indexterm zone="avahi libavahi-gobject">
649 <primary sortas="c-libavahi-gobject">libavahi-gobject.{so,a}</primary>
650 </indexterm>
651 </listitem>
652 </varlistentry>
653
654 <varlistentry id="libavahi-ui-gtk3">
655 <term><filename class='libraryfile'>libavahi-ui-gtk3.{so,a}</filename></term>
656 <listitem>
657 <para>
658 contains functions that .....
659 </para>
660 <indexterm zone="avahi libavahi-ui-gtk3">
661 <primary sortas="c-libavahi-ui-gtk3">libavahi-ui-gtk3.{so,a}</primary>
662 </indexterm>
663 </listitem>
664 </varlistentry>
665
666 <varlistentry id="libavahi-ui">
667 <term><filename class='libraryfile'>libavahi-ui.{so,a}</filename></term>
668 <listitem>
669 <para>
670 contains functions that .....
671 </para>
672 <indexterm zone="avahi libavahi-ui">
673 <primary sortas="c-libavahi-ui">libavahi-ui.{so,a}</primary>
674 </indexterm>
675 </listitem>
676 </varlistentry>
677
678 <varlistentry id="libdns_sd">
679 <term><filename class='libraryfile'>libdns_sd.{so,a}</filename></term>
680 <listitem>
681 <para>
682 contains functions that .....
683 </para>
684 <indexterm zone="avahi libdns_sd">
685 <primary sortas="c-libdns_sd">libdns_sd.{so,a}</primary>
686 </indexterm>
687 </listitem>
688 </varlistentry>
689
690 <varlistentry id="libhowl">
691 <term><filename class='libraryfile'>libhowl.{so,a}</filename></term>
692 <listitem>
693 <para>
694 contains functions that .....
695 </para>
696 <indexterm zone="avahi libhowl">
697 <primary sortas="c-libhowl">libhowl.{so,a}</primary>
698 </indexterm>
699 </listitem>
700 </varlistentry>-->
701
702 </variablelist>
703
704 </sect2>
705
706</sect1>
Note: See TracBrowser for help on using the repository browser.