Added --without-readline switch to PostgreSQL instructions, reported by Matthew Burgess.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2445 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Igor Živković 2004-07-12 09:04:18 +00:00
parent 57b54685c8
commit df7efe538d
2 changed files with 9 additions and 9 deletions

View File

@ -37,13 +37,16 @@ url="&patch-root;/wvstreams-&wvstreams-version;-tcl84-1.patch"/></para></listite
</itemizedlist></sect3>
<sect3><title><application>WvStreams</application> dependencies</title>
<sect4><title>Required</title>
<para>
<xref linkend="openssl"/>
</para></sect4>
<sect4><title>Optional</title>
<para>
<xref linkend="fam"/>,
<xref linkend="db"/>,
<xref linkend="gdbm"/>,
<xref linkend="libogg"/>,
<xref linkend="openssl"/>,
<xref linkend="Linux_PAM"/>,
<xref linkend="tcl"/>,
<xref linkend="qt"/>,

View File

@ -31,13 +31,6 @@ Berkeley Postgres database management system.</para>
<listitem><para>Estimated build time: &postgresql-time;</para></listitem></itemizedlist>
</sect3>
<!--
<note><para>The C++ and ODBC bindings have been removed from the main
source distribution. They can be found at the
<application>Postgre<acronym>SQL</acronym></application> Projects Web
Site at: <ulink url="http://gborg.postgresql.org" />.</para></note>
-->
<sect3><title><application>Postgre<acronym>SQL</acronym></application> dependencies</title>
<sect4><title>Optional</title>
<para>
@ -61,7 +54,7 @@ Site at: <ulink url="http://gborg.postgresql.org" />.</para></note>
<para>Install <application>Postgre<acronym>SQL</acronym></application> with the following commands: </para>
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --without-readline &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
@ -110,6 +103,10 @@ echo "select * from t1;" | (su - postgres -c '/usr/bin/psql test')</command></us
<sect2>
<title>Command explanations</title>
<para><option>--without-readline</option>: Omit this switch if you have
<application>readline</application> installed and wish to utilize
it.</para>
<para><command>useradd -d /var/pgsql/data postgres</command>: Add an unprivileged user to run the database server.</para>
<para><command>createdb test, create table t1 , insert into t1 values..., select *