source: chapter05/expect.xml@ 4fdb55e

6.0
Last change on this file since 4fdb55e was d878ce3, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Moved discussion of glibc test failures to chapter 6, and reworded notes aboutoptional tests.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3854 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-tools-expect" xreflabel="Expect" role="wrap">
7<title>Expect-&expect-version;</title>
8<?dbhtml filename="expect.html"?>
9
10<indexterm zone="ch-tools-expect"><primary sortas="a-Expect">Expect</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Expect package contains a program for carrying out scripted dialogues
14with other interactive programs.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.1 SBU</seg><seg>3.9 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>Expect installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
25GCC, Glibc, Grep, Make, Sed, Tcl</seg></seglistitem>
26</segmentedlist>
27</sect2>
28
29<sect2 role="installation">
30<title>Installation of Expect</title>
31
32<para>First fix a bug that can result in bogus failures during the GCC test
33suite run:</para>
34
35<screen><userinput>patch -Np1 -i ../expect-&expect-version;-spawn-1.patch</userinput></screen>
36
37<para>Now prepare Expect for compilation:</para>
38
39<screen><userinput>./configure --prefix=/tools --with-tcl=/tools/lib --with-x=no</userinput></screen>
40
41<para>The meaning of the configure options:</para>
42
43<variablelist>
44<varlistentry>
45<term><parameter>--with-tcl=/tools/lib</parameter></term>
46<listitem><para>This ensures that
47the configure script finds the Tcl installation in our temporary tools location.
48We don't want it to find an existing one that may possibly reside on the host
49system.</para></listitem>
50</varlistentry>
51
52<varlistentry>
53<term><parameter>--with-x=no</parameter></term>
54<listitem><para>This tells the configure
55script not to search for Tk (the Tcl GUI component) or the X Window System
56libraries, both of which may possibly reside on the host system.</para></listitem>
57</varlistentry>
58</variablelist>
59
60<para>Build the package:</para>
61
62<screen><userinput>make</userinput></screen>
63
64<para>(If you want to test the results, then issue:
65<userinput>make test</userinput>. However, the Expect test suite is known to
66experience failures under certain host conditions that are not within our
67control. Therefore, test suite failures here are not surprising, and are not
68considered critical.)</para>
69
70<para>And install it:</para>
71
72<screen><userinput>make SCRIPTS="" install</userinput></screen>
73
74<para>The meaning of the make parameter:</para>
75
76<variablelist>
77<varlistentry>
78<term><parameter>SCRIPTS=""</parameter></term>
79<listitem><para>This prevents installation
80of the supplementary expect scripts which are not needed.</para></listitem>
81</varlistentry>
82</variablelist>
83
84<para>You can now remove the source directories of both Tcl and Expect.</para>
85
86</sect2>
87
88
89<sect2 id="contents-expect" role="content"><title>Contents of Expect</title>
90
91<segmentedlist>
92<segtitle>Installed program</segtitle>
93<segtitle>Installed library</segtitle>
94<seglistitem><seg>expect</seg><seg>libexpect&expect-version;.a</seg></seglistitem>
95</segmentedlist>
96
97<variablelist><title>Short description</title>
98
99<varlistentry id="expect">
100<term><command>expect</command></term>
101<listitem>
102<indexterm zone="ch-tools-expect expect"><primary sortas="b-expect">expect</primary></indexterm>
103<para><quote>talks</quote> to other interactive
104programs according to a script.</para>
105</listitem>
106</varlistentry>
107</variablelist>
108
109</sect2>
110
111
112</sect1>
Note: See TracBrowser for help on using the repository browser.