Added switches to GTK+2 configure script to prevent it from stopping with an error if libtiff and libjpeg aren't installed, report by Miguel Bazdresch.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2431 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Igor Živković 2004-07-08 22:25:39 +00:00
parent 0590c1b633
commit 7f971cb9f5
2 changed files with 12 additions and 1 deletions

View File

@ -18,6 +18,10 @@ who wrote what.</para>
<itemizedlist>
<listitem><para>July 8th, 2004 [igor]: Added switches to GTK+2 configure
script to prevent it from stopping with an error if libtiff and libjpeg
aren't installed, report by Miguel Bazdresch.</para></listitem>
<listitem><para>July 8th, 2004 [igor]: Migrated Ed and Net-tools
from LFS to BLFS.</para></listitem>

View File

@ -55,7 +55,8 @@ X (<xref linkend="xorg"/> or <xref linkend="xfree86"/>),
<para>Install <application><acronym>GTK</acronym>+</application> by running
the following commands:</para>
<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc \
--without-libtiff --without-libjpeg &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
@ -68,6 +69,12 @@ make install</command></userinput></screen>
configuration files into <filename class="directory">/etc</filename>
instead of <filename class="directory">/usr/etc</filename>.</para>
<para><option>--without-libtiff</option>: Omit this switch if you have
<application>libtiff</application> installed.</para>
<para><option>--without-libjpeg</option>: Omit this switch if you have
<application>libjpeg</application> installed.</para>
<para><option>--enable-gtk-doc</option>: This switch will rebuild
the <acronym>API</acronym> documentation during the
<command>make</command> command.</para>