Changeset bdbc7fa1


Ignore:
Timestamp:
08/31/2017 03:05:52 AM (7 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, 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:
1c984ec
Parents:
aaf45d3
Message:

Build Cogl with Wayland support by default on systemd.

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    raaf45d3 rbdbc7fa1  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "30">                   <!-- Always 2 digits -->
     3<!ENTITY day          "31">                   <!-- Always 2 digits -->
    44<!ENTITY month        "08">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2017">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "August 30th, &year;">
     9<!ENTITY releasedate  "August 31st, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    raaf45d3 rbdbc7fa1  
    4242    </listitem>
    4343-->
     44
     45    <listitem revision="systemd">
     46      <para>August 31st, 2017</para>
     47      <itemizedlist>
     48        <listitem revision="systemd">
     49          <para>[dj] - Build Cogl with Wayland support by default in systemd book.</para>
     50        </listitem>       
     51      </itemizedlist>
     52    </listitem>
    4453
    4554    <listitem>
  • server/other/openldap.xml

    raaf45d3 rbdbc7fa1  
    3535    </para>
    3636
    37     &lfs80_checked;
     37    &lfs81_checked;
    3838
    3939    <bridgehead renderas="sect3">Package Information</bridgehead>
  • x/lib/cogl.xml

    raaf45d3 rbdbc7fa1  
    8383      <xref linkend="gdk-pixbuf"/>,
    8484      <xref linkend="glu"/>,
    85       <xref linkend="mesa"/>, and
    86       <xref linkend="pango"/>
     85      <xref linkend="mesa"/>,<phrase revision="sysv"> and</phrase>
     86      <xref linkend="pango"/><phrase revision="systemd">, and
     87      <xref linkend="wayland"/></phrase>
    8788    </para>
    8889
     
    9697      <xref linkend="gst10-plugins-base"/>,
    9798      <xref linkend="gtk-doc"/>,
    98       <xref linkend="sdl"/>,
    99       <xref linkend="sdl2"/>, and
    100       <xref linkend="wayland"/>
     99      <xref linkend="sdl"/>,<phrase revision="systemd"> and</phrase>
     100      <xref linkend="sdl2"/><phrase revision="sysv">, and
     101      <xref linkend="wayland"/></phrase>
    101102    </para>
    102103
     
    124125    &parallel_issues;
    125126
    126     <note revision="systemd">
    127       <para>
    128         If you are building <application>GNOME</application>, this packages
    129         needs to be built with the additional options "--enable-cogl-gst",
    130         "--enable-{kms,wayland,xlib}-egl-platform", and
    131         "--enable-wayland-egl-server".
    132       </para>
    133     </note>
    134 
    135 <screen><userinput>sed -i 's/^#if COGL/#ifdef COGL/' cogl/winsys/cogl-winsys-egl.c &amp;&amp;
     127<screen revision="sysv"><userinput>sed -i 's/^#if COGL/#ifdef COGL/' cogl/winsys/cogl-winsys-egl.c &amp;&amp;
    136128
    137129./configure --prefix=/usr --enable-gles1 --enable-gles2         &amp;&amp;
     130make</userinput></screen>
     131
     132<screen revision="systemd"><userinput>sed -i 's/^#if COGL/#ifdef COGL/' cogl/winsys/cogl-winsys-egl.c &amp;&amp;
     133
     134./configure --prefix=/usr --enable-gles1 --enable-gles2         \
     135    --enable-{kms,wayland,xlib}-egl-platform                    \
     136    --enable-wayland-egl-server                                 &amp;&amp;
    138137make</userinput></screen>
    139138
     
    166165
    167166    <para>
     167      <phrase revision="sysv">
     168      <option>--enable-{kms,wayland,xlib}-egl-platform</option>:</phrase>
     169      <phrase revision="systemd">
     170      <parameter>--enable-{kms,wayland,xlib}-egl-platform</parameter>:</phrase>
     171      These switches enable support for KMS, Wayland and Xlib EGL platforms.
     172      They are required for <application>GNOME</application> Wayland support.
     173    </para>
     174
     175    <para>
     176      <phrase revision="sysv">
     177      <option>--enable-wayland-egl-server</option>:</phrase>
     178      <phrase revision="systemd">     
     179      <parameter>--enable-wayland-egl-server</parameter>:</phrase> This switch
     180      enables <application>Cogl</application>'s Wayland Server API which is
     181      required for <application>GNOME</application> Wayland support.
     182    </para>
     183
     184    <para>
    168185      <option>--enable-cogl-gst</option>: This switch enables gstreamer support.
    169     </para>
    170 
    171     <para>
    172       <option>--enable-{kms,wayland,xlib}-egl-platform</option>: These
    173       switches enable support for KMS, Wayland and Xlib EGL platforms. They
    174       are required for <application>GNOME</application> Wayland support.
    175     </para>
    176 
    177     <para>
    178       <option>--enable-wayland-egl-server</option>: This switch
    179       enables <application>Cogl</application>'s Wayland Server API
    180       which is required for <application>GNOME</application> Wayland
    181       support.
    182186    </para>
    183187
Note: See TracChangeset for help on using the changeset viewer.