<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Pantokrator&#039;s Blog</title>
	<atom:link href="http://blog.pantokrator.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pantokrator.net</link>
	<description>Nam et ipsa scientia potestas est.</description>
	<lastBuildDate>Sun, 08 Mar 2009 00:07:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Setting up MSYS/MinGW build system for compiling SDL/OpenGL applications by HOWTO build DXX-Rebirth for Windows with MSYS/MinGW - The Exploits of Plouj</title>
		<link>http://blog.pantokrator.net/2006/08/08/setting-up-msysmingw-build-system-for-compiling-sdlopengl-applications/comment-page-1/#comment-14</link>
		<dc:creator>HOWTO build DXX-Rebirth for Windows with MSYS/MinGW - The Exploits of Plouj</dc:creator>
		<pubDate>Sun, 08 Mar 2009 00:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=5#comment-14</guid>
		<description>[...] From  Pantokrator&#8217;s blog: [...]</description>
		<content:encoded><![CDATA[<p>[...] From  Pantokrator&#8217;s blog: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encoding DVD to MPEG-4 AVI using MEncoder by Joe</title>
		<link>http://blog.pantokrator.net/2006/09/25/encoding-dvd-to-mpeg-4-avi-using-mencoder/comment-page-1/#comment-26</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Wed, 18 Feb 2009 08:40:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/2006/09/25/encoding-dvd-to-mpeg-4-avi-using-mencoder/#comment-26</guid>
		<description>Very nice article. Thank you!
Is there a way to extract both audio streams? or extract just the second audio with - sid and then combine it to one avi?

Thanks!</description>
		<content:encoded><![CDATA[<p>Very nice article. Thank you!<br />
Is there a way to extract both audio streams? or extract just the second audio with &#8211; sid and then combine it to one avi?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up MSYS/MinGW build system for compiling SDL/OpenGL applications by John Montgomery</title>
		<link>http://blog.pantokrator.net/2006/08/08/setting-up-msysmingw-build-system-for-compiling-sdlopengl-applications/comment-page-1/#comment-13</link>
		<dc:creator>John Montgomery</dc:creator>
		<pubDate>Tue, 30 Dec 2008 04:49:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=5#comment-13</guid>
		<description>Thanks for that - it was really helpful.  Got SDL compiled and understood Msys/MinGW setup a bit better.

I tried to give you rating 10/10, but mysql broke, and the average decreased. Tried again and it decreased more!!

So, the ratings is very wrong.

:-)
John.</description>
		<content:encoded><![CDATA[<p>Thanks for that &#8211; it was really helpful.  Got SDL compiled and understood Msys/MinGW setup a bit better.</p>
<p>I tried to give you rating 10/10, but mysql broke, and the average decreased. Tried again and it decreased more!!</p>
<p>So, the ratings is very wrong.<br />
 <img src='http://blog.pantokrator.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
John.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compiling SDL_image with MSYS/MinGW by LlubNek</title>
		<link>http://blog.pantokrator.net/2006/08/13/compiling-sdl_image-with-msysmingw/comment-page-1/#comment-21</link>
		<dc:creator>LlubNek</dc:creator>
		<pubDate>Wed, 24 Dec 2008 09:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=6#comment-21</guid>
		<description>Tiff compiles fine (use http://www.scons.org/wiki/KenBull/libtiff with scons in libtiff folder if configure is not working)...

test programs like the following compile, link and run fine...

#include &quot;tiffio.h&quot;
int main() {
    TIFF* tif = TIFFClientOpen(&quot;foo.tif&quot;, &quot;r&quot;);
    if (tif)    {
        // ... do stuff ...
        TIFFClose(tif);
    }
    return 0;
}

Yet SDL_image still complains...

checking tiffio.h usability... yes
checking tiffio.h presence... yes
checking for tiffio.h... yes
checking for TIFFClientOpen in -ltiff... no
configure: WARNING: *** Unable to find Tiff library (http://www.remotesensing.org/libtiff/)
configure: WARNING: TIF image loading disabled

I think the problem lies in SDL_image, not libtiff.</description>
		<content:encoded><![CDATA[<p>Tiff compiles fine (use <a href="http://www.scons.org/wiki/KenBull/libtiff" rel="nofollow">http://www.scons.org/wiki/KenBull/libtiff</a> with scons in libtiff folder if configure is not working)&#8230;</p>
<p>test programs like the following compile, link and run fine&#8230;</p>
<p>#include &#8220;tiffio.h&#8221;<br />
int main() {<br />
    TIFF* tif = TIFFClientOpen(&#8220;foo.tif&#8221;, &#8220;r&#8221;);<br />
    if (tif)    {<br />
        // &#8230; do stuff &#8230;<br />
        TIFFClose(tif);<br />
    }<br />
    return 0;<br />
}</p>
<p>Yet SDL_image still complains&#8230;</p>
<p>checking tiffio.h usability&#8230; yes<br />
checking tiffio.h presence&#8230; yes<br />
checking for tiffio.h&#8230; yes<br />
checking for TIFFClientOpen in -ltiff&#8230; no<br />
configure: WARNING: *** Unable to find Tiff library (<a href="http://www.remotesensing.org/libtiff/" rel="nofollow">http://www.remotesensing.org/libtiff/</a>)<br />
configure: WARNING: TIF image loading disabled</p>
<p>I think the problem lies in SDL_image, not libtiff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up MSYS/MinGW build system for compiling SDL/OpenGL applications by Andy</title>
		<link>http://blog.pantokrator.net/2006/08/08/setting-up-msysmingw-build-system-for-compiling-sdlopengl-applications/comment-page-1/#comment-12</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 16 Dec 2008 15:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=5#comment-12</guid>
		<description>Thanks for &quot;--enable-stdio-redirect=no&quot; .. you made my day.</description>
		<content:encoded><![CDATA[<p>Thanks for &#8220;&#8211;enable-stdio-redirect=no&#8221; .. you made my day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading URLs protected with HTTP Authentication with Java by Marcus</title>
		<link>http://blog.pantokrator.net/2008/09/23/reading-urls-protected-with-http-authentication-with-java/comment-page-1/#comment-27</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Wed, 24 Sep 2008 03:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=9#comment-27</guid>
		<description>Does it seem a little odd to anyone else (and a bad idea) for this to be configured using a static / global method call and not directly attached to the URLConnection itself?  This doesn&#039;t seem like that scaleable of a method.</description>
		<content:encoded><![CDATA[<p>Does it seem a little odd to anyone else (and a bad idea) for this to be configured using a static / global method call and not directly attached to the URLConnection itself?  This doesn&#8217;t seem like that scaleable of a method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up MSYS/MinGW build system for compiling SDL/OpenGL applications by alban</title>
		<link>http://blog.pantokrator.net/2006/08/08/setting-up-msysmingw-build-system-for-compiling-sdlopengl-applications/comment-page-1/#comment-11</link>
		<dc:creator>alban</dc:creator>
		<pubDate>Tue, 02 Sep 2008 04:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=5#comment-11</guid>
		<description>To Toms:

Just add the following sentence into&quot;/msys/1.0/msys.bat&quot; :

call &quot;D:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat&quot;</description>
		<content:encoded><![CDATA[<p>To Toms:</p>
<p>Just add the following sentence into&#8221;/msys/1.0/msys.bat&#8221; :</p>
<p>call &#8220;D:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up MSYS/MinGW build system for compiling SDL/OpenGL applications by montyx</title>
		<link>http://blog.pantokrator.net/2006/08/08/setting-up-msysmingw-build-system-for-compiling-sdlopengl-applications/comment-page-1/#comment-10</link>
		<dc:creator>montyx</dc:creator>
		<pubDate>Wed, 27 Aug 2008 07:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=5#comment-10</guid>
		<description>Hi,
Need update win32api for mingw32.
SYSPAL_NOSTATIC256 declared in wingdi.h

Sorry, my english is too bad.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Need update win32api for mingw32.<br />
SYSPAL_NOSTATIC256 declared in wingdi.h</p>
<p>Sorry, my english is too bad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up MSYS/MinGW build system for compiling SDL/OpenGL applications by Tom</title>
		<link>http://blog.pantokrator.net/2006/08/08/setting-up-msysmingw-build-system-for-compiling-sdlopengl-applications/comment-page-1/#comment-9</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 16 Jan 2008 16:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=5#comment-9</guid>
		<description>Hi.
I get this error with SDL version 1.2.13 :

./src/video/windib/SDL_dibvideo.c: In function `DIB_SetColors&#039;:
./src/video/windib/SDL_dibvideo.c:951: error: `SYSPAL_NOSTATIC256&#039; undeclared (first use in this function)

And it seems I&#039;m not the only one. Googling for &quot;SYSPAL_NOSTATIC256 undeclared&quot;, check the &#039;Cached&#039; one, or:
http://66.102.9.104/search?q=cache:JOWsRh7RiGAJ:forums.codeblocks.org/index.php%3Ftopic%3D7619.0%3Bprev_next%3Dprev+SDL_dibvideo.c+SYSPAL_NOSTATIC256+undeclared&amp;hl=en&amp;ct=clnk&amp;cd=1&amp;client=firefox-a

I think I&#039;m gonna ask somewhere else.
Tom</description>
		<content:encoded><![CDATA[<p>Hi.<br />
I get this error with SDL version 1.2.13 :</p>
<p>./src/video/windib/SDL_dibvideo.c: In function `DIB_SetColors&#8217;:<br />
./src/video/windib/SDL_dibvideo.c:951: error: `SYSPAL_NOSTATIC256&#8242; undeclared (first use in this function)</p>
<p>And it seems I&#8217;m not the only one. Googling for &#8220;SYSPAL_NOSTATIC256 undeclared&#8221;, check the &#8216;Cached&#8217; one, or:<br />
<a href="http://66.102.9.104/search?q=cache:JOWsRh7RiGAJ:forums.codeblocks.org/index.php%3Ftopic%3D7619.0%3Bprev_next%3Dprev+SDL_dibvideo.c+SYSPAL_NOSTATIC256+undeclared&amp;hl=en&amp;ct=clnk&amp;cd=1&amp;client=firefox-a" rel="nofollow">http://66.102.9.104/search?q=cache:JOWsRh7RiGAJ:forums.codeblocks.org/index.php%3Ftopic%3D7619.0%3Bprev_next%3Dprev+SDL_dibvideo.c+SYSPAL_NOSTATIC256+undeclared&amp;hl=en&amp;ct=clnk&amp;cd=1&amp;client=firefox-a</a></p>
<p>I think I&#8217;m gonna ask somewhere else.<br />
Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Real Programmers by Will S.</title>
		<link>http://blog.pantokrator.net/2006/02/17/real-programmers/comment-page-1/#comment-2</link>
		<dc:creator>Will S.</dc:creator>
		<pubDate>Tue, 23 Oct 2007 23:44:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pantokrator.net/?p=3#comment-2</guid>
		<description>Hilarious!</description>
		<content:encoded><![CDATA[<p>Hilarious!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
