<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kvirc/src/modules/objects, branch fix/compile-without-tde</title>
<subtitle>KVirc – next generation IRC client
</subtitle>
<id>https://scm.trinitydesktop.org/cgit/kvirc/atom?h=fix%2Fcompile-without-tde</id>
<link rel='self' href='https://scm.trinitydesktop.org/cgit/kvirc/atom?h=fix%2Fcompile-without-tde'/>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/'/>
<updated>2026-02-22T11:26:55Z</updated>
<entry>
<title>Fix conversion of TQString to const char* (modules)</title>
<updated>2026-02-22T11:26:55Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2026-02-21T02:03:45Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=16d42ec4616a84b046cd71f805a009b792a93ec9'/>
<id>urn:sha1:16d42ec4616a84b046cd71f805a009b792a93ec9</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Include moc files directly from the related source files (modules)</title>
<updated>2026-02-05T12:05:02Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2026-02-04T01:14:33Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=7dd6e31b9864a4c294530d9f52dea8e8da987778'/>
<id>urn:sha1:7dd6e31b9864a4c294530d9f52dea8e8da987778</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Fix conversion of TQString to const char*</title>
<updated>2026-02-03T09:46:43Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2026-01-27T03:24:23Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=ed184e8a40a61c38536ba6b2ab3453dffe7937e5'/>
<id>urn:sha1:ed184e8a40a61c38536ba6b2ab3453dffe7937e5</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Split kvirc executable into a shared library (libkvirc) and a stub executable (kvirc).</title>
<updated>2026-01-25T10:50:57Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2026-01-23T11:46:26Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=f27be165c4bbcc01c6ca4ecca410f68177d117e3'/>
<id>urn:sha1:f27be165c4bbcc01c6ca4ecca410f68177d117e3</id>
<content type='text'>
Autotool builds kvirc with '-export-dynamic', which exports all global symbols from the main executable to the dynamic symbol table. This allows 'modules' to access those symbols and build successfully.
CMake build kvirc without '-export-dynamic' and with hidden symbol visibitily by default, resulting in FTBFS when the build process reaches the 'modules' part. This is caused by the modules referring to symbols define in code under the 'src/kvirc' folder
Splitting 'kvirc' into an additional 'libkvirc' shared library plus a simple executable stub that creates the application and run it, allows modules to be linked against the library part and build successfully also with cmake.

Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Fix invalid comparison warnings</title>
<updated>2026-01-18T11:54:49Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2026-01-18T05:19:51Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=562f8a766971f1065711dd14c0d22a785c20ed21'/>
<id>urn:sha1:562f8a766971f1065711dd14c0d22a785c20ed21</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Fix 'ISO C++11 forbids converting a string constant to char*' warnings</title>
<updated>2026-01-18T11:54:44Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2026-01-18T04:21:03Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=a9f2b04e53404c4c7d29ca7cbe12a36acf822ec4'/>
<id>urn:sha1:a9f2b04e53404c4c7d29ca7cbe12a36acf822ec4</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Replace TRUE/FALSE with boolean values true/false</title>
<updated>2025-03-22T05:27:39Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2025-03-22T05:06:03Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=291b4f5da2f98283b7c98ee90401df7c3cb34dad'/>
<id>urn:sha1:291b4f5da2f98283b7c98ee90401df7c3cb34dad</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines</title>
<updated>2024-01-01T09:03:34Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2023-12-28T12:15:50Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=209ac1e561619ff446be4b3411ed74e59fff168e'/>
<id>urn:sha1:209ac1e561619ff446be4b3411ed74e59fff168e</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Remove various '#define' strings - part 6</title>
<updated>2023-12-08T04:41:44Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2023-12-08T04:26:11Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=eab2995851748c44d333fe168a1c141ccee193ab'/>
<id>urn:sha1:eab2995851748c44d333fe168a1c141ccee193ab</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
<entry>
<title>Replaced various '#define' with actual strings - part 5</title>
<updated>2023-12-04T05:27:53Z</updated>
<author>
<name>Michele Calgaro</name>
<email>michele.calgaro@yahoo.it</email>
</author>
<published>2023-12-02T15:35:29Z</published>
<link rel='alternate' type='text/html' href='https://scm.trinitydesktop.org/cgit/kvirc/commit/?id=236b93c7266b84269b4be5841d8575b5f3432065'/>
<id>urn:sha1:236b93c7266b84269b4be5841d8575b5f3432065</id>
<content type='text'>
Signed-off-by: Michele Calgaro &lt;michele.calgaro@yahoo.it&gt;
</content>
</entry>
</feed>
