<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/hpterm/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/hpterm/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Fri, 08 Oct 2004 18:22:33 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/hpterm/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Cannot install on Debian without nasty hacking</title><link>https://sourceforge.net/p/hpterm/bugs/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;HOWTO Install:&lt;/p&gt;
&lt;p&gt;(cosmetic): add -Wno-deprecated flag to g++ in ./configure&lt;br /&gt;
------------------&lt;br /&gt;
# diff hpterm/configure hpterm.orig/configure&lt;br /&gt;
3c3&lt;br /&gt;
&amp;lt; g++ -Wno-deprecated -o genmake genmake.cpp&lt;br /&gt;
---&lt;br /&gt;
&amp;gt; g++ -o genmake genmake.cpp&lt;/p&gt;
&lt;p&gt;depends on libqt3 and libqt3-dev&lt;br /&gt;
-------------------&lt;br /&gt;
# apt-get install libqt3 libqt3-dev&lt;/p&gt;
&lt;p&gt;C++ didn't accept default value for last parameter in a&lt;br /&gt;
function call =&amp;gt; delete '=0's&lt;br /&gt;
-------------------&lt;br /&gt;
# diff hpterm/qcwhpemu.cpp hpterm.orig/qcwhpemu.cpp&lt;br /&gt;
486c486&lt;br /&gt;
&amp;lt; void QcwHPEmu::update( int&amp;amp; val, tEscVal v, int max,&lt;br /&gt;
int min )&lt;br /&gt;
---&lt;br /&gt;
&amp;gt; void QcwHPEmu::update( int&amp;amp; val, tEscVal v, int max,&lt;br /&gt;
int min = 0 )&lt;/p&gt;
&lt;p&gt;# diff hpterm/qcwtextwidget.cpp&lt;br /&gt;
hpterm.orig/qcwtextwidget.cpp&lt;br /&gt;
149c149&lt;br /&gt;
&amp;lt; void QcwTextWidget::tDraw::drawBuf( int y, int x, int&lt;br /&gt;
len )&lt;br /&gt;
---&lt;br /&gt;
&amp;gt; void QcwTextWidget::tDraw::drawBuf( int y, int x, int&lt;br /&gt;
len=0 )&lt;br /&gt;
154d153&lt;br /&gt;
&amp;lt;&lt;/p&gt;
&lt;p&gt;hpterm uses incorrect paths to headers/libs - change to&lt;br /&gt;
/usr/include/qt3 and /usr/lib/qt3&lt;br /&gt;
------------------&lt;br /&gt;
# diff hpterm/genmake.cpp hpterm.orig/genmake.cpp&lt;br /&gt;
30d29&lt;br /&gt;
&amp;lt; #include &amp;lt;stream.h&amp;gt;&lt;br /&gt;
270c269&lt;br /&gt;
&amp;lt;               const char* QTDIR =&lt;br /&gt;
"/usr/lib/include/qt.h";//findPath( "include/qt.h",&lt;br /&gt;
QTDirs );&lt;br /&gt;
---&lt;br /&gt;
&amp;gt;               const char* QTDIR = findPath(&lt;br /&gt;
"include/qt.h", QTDirs );&lt;/p&gt;
&lt;p&gt;Finally fix broken paths in Makefile&lt;br /&gt;
-------------------&lt;br /&gt;
# diff hpterm/Makefile hpterm.orig/Makefile&lt;br /&gt;
3c3&lt;br /&gt;
&amp;lt; QTDIR = /usr/include/qt3/&lt;br /&gt;
---&lt;br /&gt;
&amp;gt; QTDIR = /usr/lib/include/qt.h&lt;br /&gt;
7c7&lt;br /&gt;
&amp;lt; LIBS = $(QT_LIBS) $(X11_LIBS) $(NET_LIBS) -lm&lt;br /&gt;
-L/usr/lib/qt3 -lqt \
---&lt;br /&gt;
&amp;gt; LIBS = $(QT_LIBS) $(X11_LIBS) $(NET_LIBS) -lm&lt;br /&gt;
-L$(QTDIR)/lib -lqt \
9c9&lt;br /&gt;
&amp;lt; INCL = $(QT_INCL) $(X11_INCL) $(NET_INCL)&lt;br /&gt;
-I/usr/include/qt3 \
---&lt;br /&gt;
&amp;gt; INCL = $(QT_INCL) $(X11_INCL) $(NET_INCL)&lt;br /&gt;
-I$(QTDIR)/include \
diff hpterm/configure hpterm.orig/configure&lt;br /&gt;
3c3&lt;br /&gt;
&amp;lt; g++ -Wno-deprecated -o genmake genmake.cpp&lt;br /&gt;
---&lt;br /&gt;
&amp;gt; g++ -o genmake genmake.cpp&lt;/p&gt;
&lt;p&gt;That's all and it runs.&lt;br /&gt;
# ./hpterm -h localhost&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 08 Oct 2004 18:22:33 -0000</pubDate><guid>https://sourceforge.netd74d75186019ff5b68598ca050a69dae271bde3c</guid></item><item><title>improper rendering of dim and inverse video</title><link>https://sourceforge.net/p/hpterm/bugs/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I notice when running glance that the dim attribute is not &lt;br /&gt;
handled correctly - as a example, the memory utilization&lt;br /&gt;
bar ends up looking strange when comparied to HP's &lt;br /&gt;
hpterm. It appears to be handling the transition from&lt;br /&gt;
inverse to dim video incorrectly (it should change &lt;br /&gt;
at the boundary  between the S and U, and the boundary&lt;br /&gt;
between U and B below.&lt;/p&gt;
&lt;p&gt;S    SU             UB     B&lt;/p&gt;
&lt;p&gt;I can provide a screen capture if you need more detail&lt;br /&gt;
to correct this. I have not looked at this in any more &lt;br /&gt;
detail yet.&lt;/p&gt;
&lt;p&gt;-- Dave Ritchie&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Ritchie</dc:creator><pubDate>Wed, 19 Mar 2003 00:23:21 -0000</pubDate><guid>https://sourceforge.net2408fac61cd7f788417a7192bbb3f7813475f5fe</guid></item><item><title>problem with qcwfunckey.h</title><link>https://sourceforge.net/p/hpterm/bugs/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;bogus warning mssage when building application:&lt;/p&gt;
&lt;p&gt;qcwfunckey:33:8: warning: extra tokens at end of #endif &lt;br /&gt;
directive&lt;/p&gt;
&lt;p&gt;can be corrected by changing &lt;/p&gt;
&lt;p&gt;#endif FUNC_KEY_H&lt;/p&gt;
&lt;p&gt;to &lt;/p&gt;
&lt;p&gt;#endif // FUNC_KEY_H &lt;/p&gt;
&lt;p&gt;on line 33. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Ritchie</dc:creator><pubDate>Wed, 19 Mar 2003 00:12:08 -0000</pubDate><guid>https://sourceforge.nete1a624db223bdc4f0c672cd0efee6662f5f701d7</guid></item><item><title>misspelled word on key</title><link>https://sourceforge.net/p/hpterm/bugs/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;0.3 build - in file qcwemuwin.cpp line 57, &lt;br /&gt;
change &amp;amp;quot;Disonnect&amp;amp;quot; to &amp;amp;quot;Disconnect&amp;amp;quot;.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Ritchie</dc:creator><pubDate>Wed, 19 Mar 2003 00:08:28 -0000</pubDate><guid>https://sourceforge.net9de74db34f459d5cc42ea558b501289a79bf94c2</guid></item></channel></rss>