Ignore:
Timestamp:
05/28/2024 02:00:01 AM (4 months ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
12.2, gimp3, lazarus, trunk, xry111/for-12.3, xry111/spidermonkey128
Children:
0743242
Parents:
7f5ae162 (diff), df2e08c8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'trunk' of git.linuxfromscratch.org:blfs into trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/graphlib/aalib.xml

    r7f5ae162 r27040e68  
    105105
    106106    <para>
     107      To allow building this package with GCC-14 or later, add some missing
     108      <literal>#include</literal> directives and fix a bad
     109      <literal>return</literal> statement to make the code C99-compatible.
     110      Then regenerate the <command>configure</command> script to ensure
     111      the C code for probing system features C99-compatible as well:
     112    </para>
     113
     114<screen><userinput>sed -i '1i#include &lt;stdlib.h&gt;'                            \
     115    src/aa{fire,info,lib,linuxkbd,savefont,test,regist}.c &amp;&amp;
     116sed -i '1i#include &lt;string.h&gt;'                            \
     117    src/aa{kbdreg,moureg,test,regist}.c                   &amp;&amp;
     118sed -i '/X11_KBDDRIVER/a#include &lt;X11/Xutil.h&gt;'           \
     119    src/aaxkbd.c                                          &amp;&amp;
     120sed -i '/rawmode_init/,/^}/s/return;/return 0;/'          \
     121    src/aalinuxkbd.c                                      &amp;&amp;
     122autoconf</userinput></screen>
     123
     124    <para>
    107125      Install <application>AAlib</application> by running the following
    108126      commands:
Note: See TracChangeset for help on using the changeset viewer.