diff --git a/appendices/dependencies.xml b/appendices/dependencies.xml
index 6493aa1f9..3ad5c0097 100644
--- a/appendices/dependencies.xml
+++ b/appendices/dependencies.xml
@@ -244,7 +244,7 @@
&dependencies;
- Bash, Binutils, Coreutils, GCC, Glibc, Grep, and Make
+ Bash, Binutils, Coreutils, GCC, Glibc, Grep, Make, and Readline
@@ -2615,7 +2615,7 @@
&before;
- Bash and Gawk
+ Bash, Bc, and Gawk
diff --git a/chapter08/bc.xml b/chapter08/bc.xml
index 9678ddd54..4493f8219 100644
--- a/chapter08/bc.xml
+++ b/chapter08/bc.xml
@@ -43,7 +43,7 @@
Prepare Bc for compilation:
-CC=gcc ./configure --prefix=/usr -G -O3
+CC=gcc ./configure --prefix=/usr -G -O3 -r
The meaning of the configure options:
@@ -55,6 +55,14 @@
+
+ -G
+
+ Omit parts of the test suite that won't work
+ without a GNU bc present.
+
+
+
-O3
@@ -63,10 +71,10 @@
- -G
+ -r
- Omit parts of the test suite that won't work
- without a GNU bc present.
+ Enable the use of Readline to
+ improve the line editing feature of bc.