Changeset 2dfb6cff


Ignore:
Timestamp:
11/19/2019 11:53:24 PM (4 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 9.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
522e4da1
Parents:
37d7fe3
Message:

Allow evince to build if texlive has been installed in accordance with our instructions. Thnaks to Christopher for the report and Armin for the diagnosis.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r37d7fe3 r2dfb6cff  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "18">                   <!-- Always 2 digits -->
     3<!ENTITY day          "19">                   <!-- Always 2 digits -->
    44<!ENTITY month        "11">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2019">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "November 18th, &year;">
     9<!ENTITY releasedate  "November 19th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • gnome/applications/evince.xml

    r37d7fe3 r2dfb6cff  
    129129    </para>
    130130
    131 <screen revision="sysv"><userinput>./configure --prefix=/usr                 \
    132             --enable-introspection        \
    133             --without-gspell              \
    134             --disable-static              \
    135             --with-systemduserunitdir=no  &amp;&amp;
     131<screen revision="sysv"><userinput>CFLAGS="$CFLAGS -I/opt/texlive/&texlive-year;/include    " \
     132CXXFLAGS="$CXXFLAGS -I/opt/texlive/&texlive-year;/include" \
     133./configure --prefix=/usr                         \
     134            --enable-introspection                \
     135            --without-gspell                      \
     136            --disable-static                      \
     137            --with-systemduserunitdir=no         &amp;&amp;
    136138make</userinput></screen>
    137139
    138 <screen revision="systemd"><userinput>./configure --prefix=/usr           \
    139             --enable-introspection  \
    140             --without-gspell        \
    141             --disable-static        &amp;&amp;
     140<screen revision="systemd"><userinput>CFLAGS="$CFLAGS -I/opt/texlive/&texlive-year;/include"     \
     141CXXFLAGS="$CXXFLAGS -I/opt/texlive/&texlive-year;/include" \
     142./configure --prefix=/usr                         \
     143            --enable-introspection                \
     144            --without-gspell                      \
     145            --disable-static                     &amp;&amp;
    142146make</userinput></screen>
    143147
     
    173177    </para>
    174178    -->
     179
     180    <para>
     181      <parameter>CFLAGS="$CFLAGS ..." CXXFLAGS="$CXXFLAGS ..."</parameter>: If
     182      <application>TeXLive</application> has been installed in
     183      <filename class="directory">/opt/texlive-&texlive-year;</filename> the
     184      configure script will find <filename class='libraryfile'>libkpathsea.so</filename>
     185      and enable the DVI backend, but without this addition the compile will fail
     186      because it cannot find the required headers. Adding this to a system where
     187      <application>TeXLive</application> has not been installed does not break the
     188      build.
     189    </para>
    175190
    176191    <para>
  • introduction/welcome/changelog.xml

    r37d7fe3 r2dfb6cff  
    4343       -->
    4444    <listitem>
     45      <para>November 19th, 2019</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[ken] - Fix compilation of evince if texlive has been
     49          installed in accordance with the BLFS instructions.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
     54    <listitem>
    4555      <para>November 18th, 2019</para>
    4656      <itemizedlist>
Note: See TracChangeset for help on using the changeset viewer.