Changeset a8599ff


Ignore:
Timestamp:
11/15/2004 10:06:37 PM (19 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
59daef29
Parents:
bc1bcc2
Message:

Added freeglut-2.2.0.

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

Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • appendices/glossary.xml

    rbc1bcc2 ra8599ff  
    219219<glossdef><para>Graphics Interchange Format</para></glossdef></glossentry>
    220220
     221<glossentry id="gGLUT"><glossterm><acronym>GLUT</acronym></glossterm>
     222<glossdef><para>OpenGL Utility Toolkit</para></glossdef></glossentry>
     223
    221224<glossentry id="gGMP"><glossterm><acronym>GMP</acronym></glossterm>
    222225<glossdef><para><acronym>GNU</acronym> Multiple Precision Arithmetic</para></glossdef></glossentry>
  • general.ent

    rbc1bcc2 ra8599ff  
    254254<!ENTITY hicolor-icon-theme-version   "0.5">
    255255<!ENTITY libxklavier-version          "1.03"> 
     256<!ENTITY freeglut-version             "2.2.0"> 
    256257
    257258<!-- Chapter 27 -->
  • general/graphlib/libjpeg.xml

    rbc1bcc2 ra8599ff  
    4444<para>Install <application>libjpeg</application> by running the following commands:</para>
    4545                                                                               
    46 <screen><userinput><command>./configure --enable-static --enable-shared --prefix=/usr &amp;&amp;
     46<screen><userinput><command>./configure --prefix=/usr --enable-static --enable-shared &amp;&amp;
    4747make &amp;&amp;
    4848make install</command></userinput></screen>
     
    5353<title>Command explanations</title>
    5454                                                                               
    55 <para><command>./configure --enable-static --enable-shared --prefix=/usr</command>: This command tells libjpeg to build both shared and static libraries and
    56 to install them with a base of <filename>/usr</filename>.</para>
     55<para><parameter>--enable-static --enable-shared</parameter>: These switches
     56tell libjpeg to build both shared and static libraries.</para>
    5757                                                                               
    5858</sect2>
     
    115115
    116116</sect1>
    117 
  • general/graphlib/libtiff.xml

    rbc1bcc2 ra8599ff  
    3939
    4040<sect3><title>Additional downloads</title>
    41 <!-- <itemizedlist spacing="compact">
    42 <listitem><para>LZW compression support: <ulink
    43 url="ftp://ftp.remotesensing.org/libtiff/libtiff-lzw-compression-kit-1.5.tar.gz"/></para></listitem>
    44 </itemizedlist></sect3> -->
    45 
    4641<itemizedlist spacing="compact">
    4742<listitem><para>Required Patch: <ulink
     
    5449<sect4><title>Optional</title>
    5550<para><xref linkend="libjpeg"/>,
    56 X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>) and <ulink
    57 url="http://www.opengl.org/resources/libraries/glut/glut_downloads.html">GLUT</ulink>
     51X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>) and
     52<xref linkend="freeglut"/>
    5853</para>
    5954</sect4>
     
    6560<title>Installation of <application>libtiff</application></title>
    6661
    67 <!-- <para>If you wish to allow the creation of compressed
    68 <acronym>TIFF</acronym> images, download the <acronym>LZW</acronym>
    69 Compression Kit and copy the provided <filename>tif_lzw.c</filename>
    70 file to the <filename class="directory">libtiff</filename> subdirectory
    71 of the <application>libtiff</application> source tree.</para> -->
    72 
    7362<para>Install <application>libtiff</application> by running the following
    7463commands:</para>
    7564
    7665<screen><userinput><command>patch -Np1 -i ../tiff-&libtiff-version;-libtool_fix-1.patch &amp;&amp;
    77 ./configure --prefix=/usr --disable-jpeg &amp;&amp;
     66./configure --prefix=/usr &amp;&amp;
    7867make &amp;&amp;
    7968make install</command></userinput></screen>
    8069
    8170</sect2>
    82 
    83 <sect2>
    84 <title>Command explanations</title>
    85 
    86 <!-- <para><option>-noninteractive</option>: This switch is used to
    87 avoid the configuration routine asking for confirmation of the
    88 installation directories (which is passed to
    89 <command>configure</command>).</para>
    90 
    91 <para><parameter>-with-DIR_MAN=/usr/share/man</parameter>: This is used
    92 because even though <parameter>-prefix=/usr</parameter> is specified, the
    93 <command>configure</command> routine tries to install the man pages in
    94 <filename class="directory">/usr/local/man</filename> instead of the correct
    95 place.</para>
    96 
    97 <para><parameter>-with-ZIP=yes -with-DIR_GZLIB=/usr/lib</parameter>: This
    98 enables support for the handling of <acronym>TIFF</acronym> images with
    99 deflate-encoded data.</para>
    100 
    101 <para><option>-with-JPEG=yes -with-DIR_JPEGLIB=/usr/lib</option>: Use
    102 these switches to enable support for the handling of <acronym>TIFF</acronym>
    103 images with <acronym>JPEG</acronym>-encoded data.</para> -->
    104 
    105 <para><option>--disable-jpeg</option>: Remove this parameter to enable
    106 support for handling <acronym>TIFF</acronym> images with
    107 <acronym>JPEG</acronym>-encoded data.</para>
    108 
    109 </sect2>
    110 
    111 <!-- <sect2>
    112 <title>Configuring <application>libtiff</application></title>
    113 
    114 <sect3><title>Configuration Information</title>
    115 
    116 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../../lib-config.xml"/>
    117 
    118 </sect3>
    119 
    120 </sect2> -->
    12171
    12272<sect2>
     
    252202
    253203</sect1>
    254 
  • introduction/welcome/changelog.xml

    rbc1bcc2 ra8599ff  
    2222
    2323<itemizedlist>
     24
     25<listitem><para>November 15th, 2004 [igor]: Added
     26freeglut-2.2.0.</para></listitem>
    2427
    2528<listitem><para>November 15th, 2004 [randy]: Added NASM and Dmalloc
  • introduction/welcome/credits.xml

    rbc1bcc2 ra8599ff  
    169169GNOME Netstatus, GNOME Speech, GOK, GPdf, GnomeMeeting, Gnopernicus,
    170170Imlib2, LZO, MC, NASM, Nautilus CD Burner, OpenQuicktime,
    171 Speex, Zenity, compface, gcalctool, gucharmap, id3lib, kde-i18n,
     171Speex, Zenity, compface, freeglut, gcalctool, gucharmap, id3lib, kde-i18n,
    172172kdeaccessibility, kdebindings, kdesdk, kdevelop, kdewebdev, libFAME,
    173173liba52, libdv, libdvdcss, libdvdread, libmad, libmikmod and libmpeg3:
  • x/lib/lib.xml

    rbc1bcc2 ra8599ff  
    2929<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="hicolor-icon-theme.xml"/>
    3030<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="libxklavier.xml"/>
     31<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="freeglut.xml"/>
    3132
    3233</chapter>
Note: See TracChangeset for help on using the changeset viewer.