<?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 SMK Software</title>
	<atom:link href="http://www.smksoftware.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.smksoftware.com</link>
	<description>A software company in the making.</description>
	<lastBuildDate>Mon, 26 Jul 2010 11:22:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on gSOAP and types by durand</title>
		<link>http://www.smksoftware.com/2009/10/20/gsoap-and-types/comment-page-1/#comment-216</link>
		<dc:creator>durand</dc:creator>
		<pubDate>Mon, 26 Jul 2010 11:22:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.smksoftware.co.za/?p=1392#comment-216</guid>
		<description>I&#039;m not too sure about Visual Studio but in gsoap there&#039;s a collection of conditional defines:

#ifdef HAVE_CONFIG_H
# include &quot;config.h&quot;
#       ......... snip ...........
#else
# if defined(UNDER_CE)
# .............. snip ..........
# elif defined(WIN32)
#  ........... snip .............


So, I guess you would just want to make sure that WIN32 is defined in your build.  In the case of Visual Studio, I would imagine that this is done automatically.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not too sure about Visual Studio but in gsoap there&#8217;s a collection of conditional defines:</p>
<p>#ifdef HAVE_CONFIG_H<br />
# include &#8220;config.h&#8221;<br />
#       &#8230;&#8230;&#8230; snip &#8230;&#8230;&#8230;..<br />
#else<br />
# if defined(UNDER_CE)<br />
# &#8230;&#8230;&#8230;&#8230;.. snip &#8230;&#8230;&#8230;.<br />
# elif defined(WIN32)<br />
#  &#8230;&#8230;&#8230;.. snip &#8230;&#8230;&#8230;&#8230;.</p>
<p>So, I guess you would just want to make sure that WIN32 is defined in your build.  In the case of Visual Studio, I would imagine that this is done automatically.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on gSOAP and types by Yahya</title>
		<link>http://www.smksoftware.com/2009/10/20/gsoap-and-types/comment-page-1/#comment-215</link>
		<dc:creator>Yahya</dc:creator>
		<pubDate>Sun, 25 Jul 2010 22:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.smksoftware.co.za/?p=1392#comment-215</guid>
		<description>Dear;

I think I have the same problem but I don&#039;t know what to do and I&#039;m working on Visual Studio so I can use the GCC compiler

Can you please help me</description>
		<content:encoded><![CDATA[<p>Dear;</p>
<p>I think I have the same problem but I don&#8217;t know what to do and I&#8217;m working on Visual Studio so I can use the GCC compiler</p>
<p>Can you please help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Boost, their build system and Solaris by durand</title>
		<link>http://www.smksoftware.com/2009/10/01/boost-their-build-system-and-solaris/comment-page-1/#comment-195</link>
		<dc:creator>durand</dc:creator>
		<pubDate>Thu, 01 Oct 2009 14:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.smksoftware.co.za/?p=1374#comment-195</guid>
		<description>Also:

  1) the 1.35.0 build doesn&#039;t properly detect the presence or absence of the ICU libraries. It says they&#039;re there when they are not.  So make sure you don&#039;t compile with them in.  (./configure --without-icu).

  2) The python code doesn&#039;t compile properly with weird errors. I don&#039;t know why and right now I don&#039;t care. (./configure --without-libraries=python)</description>
		<content:encoded><![CDATA[<p>Also:</p>
<p>  1) the 1.35.0 build doesn&#8217;t properly detect the presence or absence of the ICU libraries. It says they&#8217;re there when they are not.  So make sure you don&#8217;t compile with them in.  (./configure &#8211;without-icu).</p>
<p>  2) The python code doesn&#8217;t compile properly with weird errors. I don&#8217;t know why and right now I don&#8217;t care. (./configure &#8211;without-libraries=python)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Boost, their build system and Solaris by durand</title>
		<link>http://www.smksoftware.com/2009/10/01/boost-their-build-system-and-solaris/comment-page-1/#comment-194</link>
		<dc:creator>durand</dc:creator>
		<pubDate>Thu, 01 Oct 2009 14:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.smksoftware.co.za/?p=1374#comment-194</guid>
		<description>PS.  You might want to modify the default &quot;configure&quot; script to make sure BJAM_CONFIG inherits from the environment.  For example:

&lt; BJAM_CONFIG=&quot;&quot;
&gt; BJAM_CONFIG=&quot;$BJAM_CONFIG&quot;

Then you can pass through bjam variables and settings during the configuration step. For example:

BJAM_CONFIG=&quot;--layout=system --build-type=complete&quot; ./configure --prefix=/road/to/nowhere

I wasn&#039;t sure before but now I am: this build system sucks.</description>
		<content:encoded><![CDATA[<p>PS.  You might want to modify the default &#8220;configure&#8221; script to make sure BJAM_CONFIG inherits from the environment.  For example:</p>
<p>< BJAM_CONFIG=""<br />
> BJAM_CONFIG=&#8221;$BJAM_CONFIG&#8221;</p>
<p>Then you can pass through bjam variables and settings during the configuration step. For example:</p>
<p>BJAM_CONFIG=&#8221;&#8211;layout=system &#8211;build-type=complete&#8221; ./configure &#8211;prefix=/road/to/nowhere</p>
<p>I wasn&#8217;t sure before but now I am: this build system sucks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A tickless kernel by shinery</title>
		<link>http://www.smksoftware.com/2007/07/21/a-tickless-kernel/comment-page-1/#comment-185</link>
		<dc:creator>shinery</dc:creator>
		<pubDate>Tue, 04 Aug 2009 15:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.smk.co.za/2007/07/21/a-tickless-kernel/#comment-185</guid>
		<description>good,with tickless system, we could use power saving strategy,but maybe it will also bring other problems,e.g. when less loads,it is possible that the latency longer than the one with more loads,depending on the timing issues. ;D</description>
		<content:encoded><![CDATA[<p>good,with tickless system, we could use power saving strategy,but maybe it will also bring other problems,e.g. when less loads,it is possible that the latency longer than the one with more loads,depending on the timing issues. ;D</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Me, SCSA and YAY by durand</title>
		<link>http://www.smksoftware.com/2009/07/01/me-scsa-and-yay/comment-page-1/#comment-178</link>
		<dc:creator>durand</dc:creator>
		<pubDate>Wed, 01 Jul 2009 22:31:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.smksoftware.co.za/?p=1179#comment-178</guid>
		<description>Thanks :)</description>
		<content:encoded><![CDATA[<p>Thanks <img src='http://www.smksoftware.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Me, SCSA and YAY by Nathan</title>
		<link>http://www.smksoftware.com/2009/07/01/me-scsa-and-yay/comment-page-1/#comment-177</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Wed, 01 Jul 2009 22:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.smksoftware.co.za/?p=1179#comment-177</guid>
		<description>Congrats! Awesome!</description>
		<content:encoded><![CDATA[<p>Congrats! Awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Officially &#8220;SMK Software&#8221; by durand</title>
		<link>http://www.smksoftware.com/2009/06/17/officially-smk-software/comment-page-1/#comment-176</link>
		<dc:creator>durand</dc:creator>
		<pubDate>Wed, 01 Jul 2009 20:00:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.smk.co.za/?p=1169#comment-176</guid>
		<description>weird, how did you get that cool icon in your comment?   Usually comments come through to me as emails so it&#039;s the first time I&#039;ve seen it.</description>
		<content:encoded><![CDATA[<p>weird, how did you get that cool icon in your comment?   Usually comments come through to me as emails so it&#8217;s the first time I&#8217;ve seen it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Officially &#8220;SMK Software&#8221; by Johan</title>
		<link>http://www.smksoftware.com/2009/06/17/officially-smk-software/comment-page-1/#comment-170</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Mon, 22 Jun 2009 11:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.smk.co.za/?p=1169#comment-170</guid>
		<description>Awesome!</description>
		<content:encoded><![CDATA[<p>Awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Interview Tests by Yaowei</title>
		<link>http://www.smksoftware.com/2009/04/19/interview-tests/comment-page-1/#comment-160</link>
		<dc:creator>Yaowei</dc:creator>
		<pubDate>Sun, 26 Apr 2009 00:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.smk.co.za/?p=1149#comment-160</guid>
		<description>Good idea.. and wish you a good luck.</description>
		<content:encoded><![CDATA[<p>Good idea.. and wish you a good luck.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
