source: general/prog/perl-modules/perl-io-socket-ssl.xml@ 365a829

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.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 365a829 was 365a829, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Update to thunderbird-60.5.3.
Update to firefox-65.0.2.
Update to postfix-3.4.0.
Update to Test-Differences-0.67 (Perl Module).
Update to IO-Socket-SSL-2.066 (Perl Module).

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

  • Property mode set to 100644
File size: 3.4 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 my-download-http "&perl_authors;/id/S/SU/SULLR/IO-Socket-SSL-&IO-Socket-SSL-version;.tar.gz">
8 <!ENTITY my-md5sum "ecf96ce2ff9e04a03a2d101c76ce1020">
9
10 <!ENTITY IO-Socket-SSL-download-http "&perl_authors;/id/S/SU/SULLR/IO-Socket-SSL-&IO-Socket-SSL-version;.tar.gz">
11]>
12
13 <!-- Begin IO::Socket::SSL -->
14 <sect2 id="perl-io-socket-ssl" xreflabel="IO-Socket-SSL-&IO-Socket-SSL-version;">
15
16 <title>IO::Socket::SSL-&IO-Socket-SSL-version;</title>
17
18 <indexterm zone="perl-io-socket-ssl">
19 <primary sortas="a-IO-Socket-SSL">IO::Socket::SSL</primary>
20 </indexterm>
21
22 <sect3 role="package">
23 <title>Introduction to IO::Socket::SSL</title>
24
25 <para>
26 IO::Socket::SSL makes using SSL/TLS much easier by wrapping the necessary
27 functionality into the familiar IO::Socket interface and providing secure
28 defaults whenever possible.
29 </para>
30
31 &lfs84_checked;
32
33 <bridgehead renderas="sect4">Package Information</bridgehead>
34 <itemizedlist spacing="compact">
35 <listitem>
36 <para>
37 Download (HTTP): <ulink url="&my-download-http;"/>
38 </para>
39 </listitem>
40 <listitem>
41 <para>
42 Download MD5 sum: &my-md5sum;
43 </para>
44 </listitem>
45 </itemizedlist>
46
47 <bridgehead renderas="sect4">IO::Socket::SSL Dependencies</bridgehead>
48
49 <bridgehead renderas="sect5">Required</bridgehead>
50 <para role="required">
51 <xref linkend="make-ca"/> and
52 <xref linkend="perl-net-ssleay"/>
53 </para>
54
55 <bridgehead renderas="sect5">Recommended</bridgehead>
56 <para role="recommended">
57 <xref linkend="perl-uri"/> (to access international domain names)
58 </para>
59
60 </sect3>
61
62 <sect3 role="installation">
63 <title>Installation of IO::Socket::SSL</title>
64
65 <!-- fixed, for me, if NET-SSLeay-1.86_06 development version is used: ken
66 <note>
67 <para>
68 The tests hang if you are using openssl-1.1.1. They similarly
69 hang if you are using openssl-1.1.0 and Net::SSLeay has had the
70 patch for 1.1.1 applied.
71 Therefore, running them is at the moment not recommended.
72 If you are on the old version of openssl and did not apply the
73 patch, you can run 'make test' in the normal way.
74 If you are using the cpan method of installation, use the -T
75 option to avoid running the tests.
76 </para>
77 </note>-->
78
79 <para>
80 This module uses a variant of the standard build and installation
81 instructions:
82
83<screen><userinput>yes | perl Makefile.PL &amp;&amp;
84make &amp;&amp;
85make test</userinput></screen>
86
87 Now, as the <systemitem class="username">root</systemitem> user:
88
89<screen role="root"><userinput>make install</userinput></screen>
90
91 </para>
92
93 </sect3>
94
95 <sect3 role="commands">
96 <title>Command Explanations</title>
97
98 <para>
99 <command>yes</command>: Perl will ask if you wish to run external
100 tests, which will 'fail soft' if there are network problems. The
101 default is 'y', this allows you to script the build.
102 </para>
103
104 </sect3>
105
106 </sect2>
Note: See TracBrowser for help on using the repository browser.