Changeset 4437f63


Ignore:
Timestamp:
03/02/2006 06:10:46 AM (18 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.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:
e4a21ed
Parents:
2da2e6a
Message:

Additions and corrections to Mesa and libdrm

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

Location:
x/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • x/lib/libdrm.xml

    r2da2e6a r4437f63  
    6565    <title>Installation of libdrm</title>
    6666
    67     <para><application>libdrm</application> should be installed with the same
    68     installation prefix as your X Window System.  Replace
    69     '<replaceable>[prefix]</replaceable>' in the instructions below with the
    70     chosen installation prefix of your X Window System.</para>
    71 
    7267    <para>Install <application>libdrm</application> by running the following
    7368    commands:</para>
    7469
    7570<screen><userinput>autoreconf &amp;&amp;
    76 ./configure --prefix=<replaceable>[prefix]</replaceable> &amp;&amp;
     71./configure --prefix=/usr &amp;&amp;
    7772make</userinput></screen>
    7873
     
    109104        <term><filename class='libraryfile'>libdrm.[so,a]</filename></term>
    110105        <listitem>
    111           <para>contains the Direct Rendering Manager library functions.</para>
     106          <para>contains the Direct Rendering Module library functions.</para>
    112107          <indexterm zone="libdrm libdrm-lib">
    113108            <primary sortas="c-libdrm">libdrm.[so,a]</primary>
  • x/lib/mesalib.xml

    r2da2e6a r4437f63  
    7777    <para><ulink
    7878    url="http://prdownloads.sourceforge.net/mesa3d/MesaDemos-&mesalib-version;.tar.bz2"/>
    79     provides demos and a test program to verify that DRI is working as expected.</para>
     79    provides a demo and a diagnostic program to verify that GL is working
     80    properly.</para>
    8081
    8182    <note>
     
    9293
    9394    <para>If you've installed the X Window System into any prefix other than
    94     <filename class="directory">/usr/X11R6</filename>, then execute the
    95     following commands to correct several hard coded directory assumptions in
    96     the source files.  Be sure to replace '<replaceable>[prefix]</replaceable>'
    97     with the installation prefix of your installed X Window System:</para>
     95    <filename class="directory">/usr</filename>, then you'll need to adjust the
     96    commands below for your system.  Correct several hard coded directories
     97    in the source files with the following command:</para>
    9898
    99 <screen><userinput>find . -type f -exec sed -i 's@/usr/X11R6@<replaceable>[prefix]</replaceable>@g' {} \;</userinput></screen>
     99<screen><userinput>find . -type f -exec sed -i 's@/usr/X11R6@/usr@g' {} \;</userinput></screen>
    100100
    101101    <para>Install <application>MesaLib</application>
     
    108108    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    109109
    110 <screen role="root"><userinput>bin/installmesa <replaceable>[prefix]</replaceable> &amp;&amp;
    111 mkdir -v -p <replaceable>[prefix]</replaceable>/lib/modules/dri &amp;&amp;
    112 install -v -o root -m 0755 lib/*dri* <replaceable>[prefix]</replaceable>/lib/modules/dri</userinput></screen>
     110<screen role="root"><userinput>bin/installmesa /usr &amp;&amp;
     111mkdir -v -p /usr/lib/modules/dri &amp;&amp;
     112install -v -m755 lib/*dri* /usr/lib/modules/dri</userinput></screen>
    113113
    114114    <para>If you've extracted the GLUT and Demos packages as well, then
     
    121121    <systemitem class="username">root</systemitem> user:</para>
    122122
    123 <screen role="root"><userinput>install -v -o root -m 0755 glxinfo glxgears <replaceable>[prefix]</replaceable>/bin</userinput></screen>
     123<screen role="root"><userinput>install -v -m755 glxinfo glxgears /usr/bin</userinput></screen>
    124124
    125125    <note>
     
    147147    </segmentedlist>
    148148
     149    <variablelist>
     150      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
     151      <?dbfo list-presentation="list"?>
     152      <?dbhtml list-presentation="table"?>
     153
     154      <varlistentry id="glxgears">
     155        <term><filename>glxgears</filename></term>
     156        <listitem>
     157          <para>a GL demo useful for troubleshooting graphics problems.</para>
     158          <indexterm zone="MesaLib glxgears">
     159            <primary sortas="b-glxgears">glxgears</primary>
     160          </indexterm>
     161        </listitem>
     162      </varlistentry>
     163
     164      <varlistentry id="glxinfo">
     165        <term><filename>glxinfo</filename></term>
     166        <listitem>
     167          <para>a diagnostic program that displays information about the
     168          graphics hardware and installed GL libraries.</para>
     169          <indexterm zone="MesaLib glxinfo">
     170            <primary sortas="b-glxinfo">glxinfo</primary>
     171          </indexterm>
     172        </listitem>
     173      </varlistentry>
     174
     175    </variablelist>
     176
    149177  </sect2>
    150178
Note: See TracChangeset for help on using the changeset viewer.