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

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.4 9.0 9.1 bdubbs/svn 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 fc935fb was 9d91f2c6, checked in by Ken Moffat <ken@…>, 5 years ago

Patch Net::SSLeay so that its tests no-longer hang. Whether this is an improvement is debatable, because the tests for IO::Socket::SSL now hang.

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

  • Property mode set to 100644
File size: 2.8 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 "97fa6cd64f15db60f810cd8ab02d57fc">
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 &lfs83_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 </sect3>
56
57 <sect3 role="installation">
58 <title>Installation of IO::Socket::SSL</title>
59
60 <note>
61 <para>
62 The tests hang if you are using openssl-1.1.1.
63 Therefore, running them is at the moment not recommended.
64 </para>
65 </note>
66
67 <para>
68 This module uses a variant of the standard build and installation
69 instructions:
70
71<screen><userinput>yes | perl Makefile.PL &amp;&amp;
72make</userinput></screen>
73<!--
74make &amp;&amp;
75make test</userinput></screen>-->
76
77 Now, as the <systemitem class="username">root</systemitem> user:
78
79<screen role="root"><userinput>make install</userinput></screen>
80
81 </para>
82
83 </sect3>
84
85 <sect3 role="commands">
86 <title>Command Explanations</title>
87
88 <para>
89 <command>yes</command>: Perl will ask if you wish to run external
90 tests, which will 'fail soft' if there are network problems. The
91 default is 'y', this allows you to script the build.
92 </para>
93
94 </sect3>
95
96 </sect2>
Note: See TracBrowser for help on using the repository browser.