<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/kconfig_compiler, branch hurd</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Fix enum doc: close tags</title>
<updated>2022-05-13T15:58:31+00:00</updated>
<author>
<name>Plata Hill</name>
<email>plata@mailbox.org</email>
</author>
<published>2022-05-13T15:58:31+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=cfda47fa43b1f692cd150cbf55620a9ab3330921'/>
<id>cfda47fa43b1f692cd150cbf55620a9ab3330921</id>
<content type='text'>
example didn't compile
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
example didn't compile
</pre>
</div>
</content>
</entry>
<entry>
<title>KConfigCompiler: support ItemAccessors=true with signalling items</title>
<updated>2022-02-18T22:24:41+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2022-02-09T12:55:14+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=3583e0d2ed951365777122ae4b2ab4641125f756'/>
<id>3583e0d2ed951365777122ae4b2ab4641125f756</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make singleton teardown work with Qt6 as well</title>
<updated>2022-01-22T11:35:06+00:00</updated>
<author>
<name>Volker Krause</name>
<email>vkrause@kde.org</email>
</author>
<published>2022-01-21T15:01:35+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=41d37407e80f5ccd110cf303c20a181f95fa7e73'/>
<id>41d37407e80f5ccd110cf303c20a181f95fa7e73</id>
<content type='text'>
In Qt6 the Q_GLOBAL_STATIC will already report to be null while it is in
the process of being deleted, we therefore cannot access it anymore from
destruction code path as we did before.

This problem is hit for example by the Breeze style, making all 6 based
widgets applications crash on exit without this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Qt6 the Q_GLOBAL_STATIC will already report to be null while it is in
the process of being deleted, we therefore cannot access it anymore from
destruction code path as we did before.

This problem is hit for example by the Breeze style, making all 6 based
widgets applications crash on exit without this.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Samir variable fix too</title>
<updated>2022-01-04T20:07:17+00:00</updated>
<author>
<name>Laurent Montel</name>
<email>montel@kde.org</email>
</author>
<published>2022-01-04T20:07:17+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=b0bf9e030c3a0ec38cc456c48758fce8e4398333'/>
<id>b0bf9e030c3a0ec38cc456c48758fce8e4398333</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>kconfig_compiler/CMakeLists.txt - use CMAKE_CROSSCOMPILING</title>
<updated>2021-12-27T15:20:12+00:00</updated>
<author>
<name>Allen Winter</name>
<email>winter@kde.org</email>
</author>
<published>2021-12-27T15:20:12+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=c5ce7c4328706018fb9b695eb5c8959aaafa4bc4'/>
<id>c5ce7c4328706018fb9b695eb5c8959aaafa4bc4</id>
<content type='text'>
use the CMake variable CMAKE_CROSSCOMPILING to detect when
cross-compiling instead of CMAKE_TOOLCHAIN_FILE.

CMAKE_TOOLCHAIN_FILE can be set when not cross-compiling
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
use the CMake variable CMAKE_CROSSCOMPILING to detect when
cross-compiling instead of CMAKE_TOOLCHAIN_FILE.

CMAKE_TOOLCHAIN_FILE can be set when not cross-compiling
</pre>
</div>
</content>
</entry>
<entry>
<title>WIP: Change the build system to enable building with Qt 6</title>
<updated>2021-12-16T18:05:02+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-12-03T20:33:28+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=10c4a4b4bdfdd468e52ae0fbbf84c77b64df2f8f'/>
<id>10c4a4b4bdfdd468e52ae0fbbf84c77b64df2f8f</id>
<content type='text'>
This was built with:
-DQT_MAJOR_VERSION=6 \
-DEXCLUDE_DEPRECATED_BEFORE_AND_AT=5.90.0 \
-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055a00

Move the include(KDEInstallDirs) call before the first find_package(Qt*,
the former is what auto-detects the Qt version, and defaults to 5. This is
needed to be able to build against Qt5 by default.

All unit tests still pass.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was built with:
-DQT_MAJOR_VERSION=6 \
-DEXCLUDE_DEPRECATED_BEFORE_AND_AT=5.90.0 \
-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055a00

Move the include(KDEInstallDirs) call before the first find_package(Qt*,
the former is what auto-detects the Qt version, and defaults to 5. This is
needed to be able to build against Qt5 by default.

All unit tests still pass.
</pre>
</div>
</content>
</entry>
<entry>
<title>README.dox: GENERATE_MOC is required for signals</title>
<updated>2021-11-26T11:32:53+00:00</updated>
<author>
<name>Dawid Wróbel</name>
<email>me@dawidwrobel.com</email>
</author>
<published>2021-11-26T11:32:53+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=4c62867b4a38db28c29a063219b9d0f5c7f1cac6'/>
<id>4c62867b4a38db28c29a063219b9d0f5c7f1cac6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use innerVarStr instead of varStr for choices</title>
<updated>2021-11-23T14:36:57+00:00</updated>
<author>
<name>Tomaz Canabrava</name>
<email>tcanabrava@kde.org</email>
</author>
<published>2021-11-17T16:43:48+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=e40531e29e2ff52d67156aa8ae7691488ca1c29b'/>
<id>e40531e29e2ff52d67156aa8ae7691488ca1c29b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing changes</title>
<updated>2021-11-23T14:36:57+00:00</updated>
<author>
<name>Tomaz Canabrava</name>
<email>tcanabraba@kde.org</email>
</author>
<published>2021-10-21T08:51:16+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=829cc003ee4f21e91d806a2e2a353ae709ab999f'/>
<id>829cc003ee4f21e91d806a2e2a353ae709ab999f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow KConfigXT to use KSharedConfig::openStateConfig</title>
<updated>2021-09-19T05:50:10+00:00</updated>
<author>
<name>Alexander Lohnau</name>
<email>alexander.lohnau@gmx.de</email>
</author>
<published>2021-09-14T05:30:32+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=0b0a4464fb3d1145eb612b1ab7edacfa9581c8c9'/>
<id>0b0a4464fb3d1145eb612b1ab7edacfa9581c8c9</id>
<content type='text'>
Otherwise we force consumers to use the config location for state data,
which is what we are trying to avoid.

Task: https://phabricator.kde.org/T12549
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Otherwise we force consumers to use the config location for state data,
which is what we are trying to avoid.

Task: https://phabricator.kde.org/T12549
</pre>
</div>
</content>
</entry>
</feed>
