Changeset 5fe61b6f


Ignore:
Timestamp:
08/28/2021 11:58:56 AM (3 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
11.0, 11.1, 11.2, 11.3, 12.0, 12.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:
34a6571
Parents:
f0922fc9
git-author:
Pierre Labastie <pierre.labastie@…> (08/28/2021 11:57:45 AM)
git-committer:
Pierre Labastie <pierre.labastie@…> (08/28/2021 11:58:56 AM)
Message:

qt5: add a switch for logging to syslog/journald

Ticket #15437

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rf0922fc9 r5fe61b6f  
    4242    </listitem>
    4343    -->
     44    <listitem>
     45      <para>August 28th, 2021</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[pierre] - Add an option to Qt5, so that logging goes to
     49          <phrase revision="sysv">syslog</phrase><phrase
     50          revision="systemd">journald</phrase> if not running on a tty.
     51          Fixes <ulink url="&blfs-ticket-root;15437">#15437</ulink>.</para>
     52        </listitem>
     53      </itemizedlist>
     54    </listitem>
     55
    4456    <listitem>
    4557      <para>August 27th, 2021</para>
  • x/lib/qt5.xml

    rf0922fc9 r5fe61b6f  
    275275    </para>
    276276
    277 <screen><userinput>./configure -prefix $QT5PREFIX                        \
     277<screen revision="sysv"><userinput>./configure -prefix $QT5PREFIX                        \
    278278            -sysconfdir /etc/xdg                      \
    279279            -confirm-license                          \
     
    285285            -nomake examples                          \
    286286            -no-rpath                                 \
     287            -syslog                                   \
     288            -skip qtwebengine                         &amp;&amp;
     289make</userinput></screen>
     290
     291<screen revision="systemd"><userinput>./configure -prefix $QT5PREFIX                        \
     292            -sysconfdir /etc/xdg                      \
     293            -confirm-license                          \
     294            -opensource                               \
     295            -dbus-linked                              \
     296            -openssl-linked                           \
     297            -system-harfbuzz                          \
     298            -system-sqlite                            \
     299            -nomake examples                          \
     300            -no-rpath                                 \
     301            -journald                                 \
    287302            -skip qtwebengine                         &amp;&amp;
    288303make</userinput></screen>
     
    443458      <application>Qt5</application> libraries instead of
    444459      <command>dlopen()</command>-ing them.
     460    </para>
     461
     462    <para revision="sysv">
     463      <parameter>-syslog</parameter>: This switch allows to send Qt messages
     464      to the <command>syslog</command> logging system.
     465    </para>
     466
     467    <para revision="systemd">
     468      <parameter>-journald</parameter>: This switch allows to send Qt messages
     469      to the <command>journald</command> logging system.
    445470    </para>
    446471
Note: See TracChangeset for help on using the changeset viewer.