<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to patches</title><link href="https://sourceforge.net/p/tora/patches/" rel="alternate"/><link href="https://sourceforge.net/p/tora/patches/feed.atom" rel="self"/><id>https://sourceforge.net/p/tora/patches/</id><updated>2016-02-26T16:12:37.424000Z</updated><subtitle>Recent changes to patches</subtitle><entry><title>#82 My changes to BrowserIndex for Tora-2.1.3</title><link href="https://sourceforge.net/p/tora/patches/82/?limit=25#8d5c" rel="alternate"/><published>2016-02-26T16:12:37.424000Z</published><updated>2016-02-26T16:12:37.424000Z</updated><author><name>Ivan Brezina</name><uri>https://sourceforge.net/u/ibre5041/</uri></author><id>https://sourceforge.net8e6a7603ceb8335436464247e1ab8ab6fff5983a</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open --&amp;gt; closed-invalid&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Group&lt;/strong&gt;:  --&amp;gt; &lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>#83 Installation fails with qt-4.8.5 (Fedora 19)</title><link href="https://sourceforge.net/p/tora/patches/83/?limit=25#86f6" rel="alternate"/><published>2016-02-26T16:10:28.117000Z</published><updated>2016-02-26T16:10:28.117000Z</updated><author><name>Ivan Brezina</name><uri>https://sourceforge.net/u/ibre5041/</uri></author><id>https://sourceforge.netf819e2ded825db5581a6ffd1b65e21c782201204</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open --&amp;gt; closed-fixed&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Group&lt;/strong&gt;:  --&amp;gt; &lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>#85 Patch for correct global set of mandatory c/cxx flags</title><link href="https://sourceforge.net/p/tora/patches/85/?limit=25#5514" rel="alternate"/><published>2016-02-26T16:09:18.780000Z</published><updated>2016-02-26T16:09:18.780000Z</updated><author><name>Ivan Brezina</name><uri>https://sourceforge.net/u/ibre5041/</uri></author><id>https://sourceforge.net8dd626e5ab083105243cb3b912bae13daf58adaa</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open --&amp;gt; closed-fixed&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;assigned_to&lt;/strong&gt;: Ivan Brezina&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Group&lt;/strong&gt;:  --&amp;gt; &lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>#84 toextract.cpp fails on OS X 10.9 (missing #include unistd.h)</title><link href="https://sourceforge.net/p/tora/patches/84/?limit=25#4ec4" rel="alternate"/><published>2016-02-26T16:08:11.469000Z</published><updated>2016-02-26T16:08:11.469000Z</updated><author><name>Ivan Brezina</name><uri>https://sourceforge.net/u/ibre5041/</uri></author><id>https://sourceforge.netc1410b0bb9bf3cb9a903cd87e210363b1a218686</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open --&amp;gt; closed-fixed&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;assigned_to&lt;/strong&gt;: Ivan Brezina&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Group&lt;/strong&gt;:  --&amp;gt; &lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>#84 toextract.cpp fails on OS X 10.9 (missing #include unistd.h)</title><link href="https://sourceforge.net/p/tora/patches/84/?limit=25#fd35" rel="alternate"/><published>2015-03-09T03:29:30.298000Z</published><updated>2015-03-09T03:29:30.298000Z</updated><author><name>Hanspeter Niederstrasser</name><uri>https://sourceforge.net/u/nieder/</uri></author><id>https://sourceforge.netdf092df3aae7d993854c41d69928f4700ddb16b4</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Turns out &lt;code&gt;src/toreport.cpp&lt;/code&gt; also needs to explicitly #include &amp;lt;unistd.h&amp;gt;&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="gh"&gt;diff -ruNp tora-2.1.3-orig/src/toextract.cpp tora-2.1.3/src/toextract.cpp&lt;/span&gt;
&lt;span class="gd"&gt;--- tora-2.1.3-orig/src/toextract.cpp   2010-02-02 12:25:43.000000000 -0600&lt;/span&gt;
&lt;span class="gi"&gt;+++ tora-2.1.3/src/toextract.cpp    2014-08-16 20:03:11.000000000 -0500&lt;/span&gt;
&lt;span class="gu"&gt;@@ -45,6 +45,10 @@&lt;/span&gt;
 #include "toconnection.h"
 #include "toextract.h"

&lt;span class="gi"&gt;+#ifdef HAVE_UNISTD_H&lt;/span&gt;
&lt;span class="gi"&gt;+#include &amp;lt;unistd.h&amp;gt;&lt;/span&gt;
&lt;span class="gi"&gt;+#endif&lt;/span&gt;
&lt;span class="gi"&gt;+&lt;/span&gt;
 #include &amp;lt;stdio.h&amp;gt;

 #include &amp;lt;qapplication.h&amp;gt;
&lt;span class="gd"&gt;--- a/src/toreport.cpp  2010-01-14 10:39:02.000000000 -0600&lt;/span&gt;
&lt;span class="gi"&gt;+++ b/src/toreport.cpp  2015-03-08 21:15:09.000000000 -0500&lt;/span&gt;
&lt;span class="gu"&gt;@@ -47,6 +47,10 @@&lt;/span&gt;
 #include "toextract.h"
 #include "toreport.h"

&lt;span class="gi"&gt;+#ifdef HAVE_UNISTD_H&lt;/span&gt;
&lt;span class="gi"&gt;+#include &amp;lt;unistd.h&amp;gt;&lt;/span&gt;
&lt;span class="gi"&gt;+#endif&lt;/span&gt;
&lt;span class="gi"&gt;+&lt;/span&gt;
 #include &amp;lt;qapplication.h&amp;gt;
 #include &amp;lt;qdatetime.h&amp;gt;
 #ifdef Q_OS_WIN32
&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;</summary></entry><entry><title>#86 Strange *.desktop categorization (database client in Office?!?)</title><link href="https://sourceforge.net/p/tora/patches/86/?limit=25#ef51" rel="alternate"/><published>2014-09-29T10:53:15.105000Z</published><updated>2014-09-29T10:53:15.105000Z</updated><author><name>Ivan Brezina</name><uri>https://sourceforge.net/u/ibre5041/</uri></author><id>https://sourceforge.net45b63d55766222b626251fcb5cf4f37f2e015628</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open --&amp;gt; closed-fixed&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Group&lt;/strong&gt;:  --&amp;gt; &lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>Strange *.desktop categorization (database client in Office?!?)</title><link href="https://sourceforge.net/p/tora/patches/86/" rel="alternate"/><published>2014-09-29T06:53:37.671000Z</published><updated>2014-09-29T06:53:37.671000Z</updated><author><name>Starikov Sergey</name><uri>https://sourceforge.net/u/userid-891264/</uri></author><id>https://sourceforge.net4c9343dc9ed869025ff7b83332cf3dfa52dbb39c</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;For now my main database client is Oracle SQL Developer.&lt;br /&gt;
After TOra's installation I was unpleasantly surprised not found it' item in the sema category (Development).&lt;br /&gt;
Later, finding it in Office (!) category (that seems to be incorrect) I surprised even more.&lt;/p&gt;
&lt;p&gt;Suggested patch fixes it.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Strange *.desktop categorization (database client in Office?!?)</title><link href="https://sourceforge.net/p/tora/patches/86/" rel="alternate"/><published>2014-09-29T06:53:37.671000Z</published><updated>2014-09-29T06:53:37.671000Z</updated><author><name>Starikov Sergey</name><uri>https://sourceforge.net/u/userid-891264/</uri></author><id>https://sourceforge.net3ae030eb8d5c9d67c0ace272d4593edd7f9b1f50</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Ticket 86 has been modified: Strange *.desktop categorization (database client in Office?!?)&lt;br /&gt;
Edited By: Ivan Brezina (ibre5041)&lt;br /&gt;
Status updated: u'open' =&amp;gt; u'closed-fixed'&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#85 Patch for correct global set of mandatory c/cxx flags</title><link href="https://sourceforge.net/p/tora/patches/85/?limit=25#c020" rel="alternate"/><published>2014-09-29T06:24:29.557000Z</published><updated>2014-09-29T06:24:29.557000Z</updated><author><name>Starikov Sergey</name><uri>https://sourceforge.net/u/userid-891264/</uri></author><id>https://sourceforge.net6aff6e39c02490ae32effa840d5761cf45419bb2</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;For now (20140928 snapshot) distro default (Gentoo) build succeed.&lt;br /&gt;
Thank you!&lt;br /&gt;
Fixed.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Patch for correct global set of mandatory c/cxx flags</title><link href="https://sourceforge.net/p/tora/patches/85/" rel="alternate"/><published>2014-09-26T07:43:43.720000Z</published><updated>2014-09-26T07:43:43.720000Z</updated><author><name>Starikov Sergey</name><uri>https://sourceforge.net/u/userid-891264/</uri></author><id>https://sourceforge.net5153974579f4c387a4e4cf2e69435ea9f194ef60</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Following &lt;a class="" href="https://sourceforge.net/p/tora/bugs/884"&gt;bug #884&lt;/a&gt; I've consult our developers and update patch for correct &lt;em&gt;global&lt;/em&gt; set of mandatory CXXFLAGS ("&lt;strong&gt;-std=c++0x&lt;/strong&gt;").&lt;br /&gt;
After applying this patch to 20140924 snapshot tora builds successfully in distro default:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;-- Install configuration: "Gentoo"&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I think, this patch should be merged into current source tree.&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>