<?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 on: Poco 1.3.0b1</title>
	<atom:link href="http://pocoproject.org/blog/?feed=rss2&#038;p=37" rel="self" type="application/rss+xml" />
	<link>http://pocoproject.org/blog/?p=37</link>
	<description>News and discussion for the POCO Community</description>
	<lastBuildDate>Thu, 09 May 2013 12:05:16 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ivo Roper</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-105</link>
		<dc:creator>Ivo Roper</dc:creator>
		<pubDate>Wed, 11 Jun 2008 02:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-105</guid>
		<description>Having been primed for poco being DLL only by some old docs, I was happily surprised to open the solution file and found debug_static and release_static configurations already there.

Just tacking this onto the end of this thread so that folks stumbling across this will know that this isn&#039;t an issue any longer. (compiling 1.3.2 right now)  ^_^</description>
		<content:encoded><![CDATA[<p>Having been primed for poco being DLL only by some old docs, I was happily surprised to open the solution file and found debug_static and release_static configurations already there.</p>
<p>Just tacking this onto the end of this thread so that folks stumbling across this will know that this isn&#8217;t an issue any longer. (compiling 1.3.2 right now)  ^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-104</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Thu, 23 Nov 2006 19:07:51 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-104</guid>
		<description>So here is a rough guideline.
If you encounter problems,
simply mail me or post in the forum.

Open Foundation_vs80.sln
Go the Configuration Manager and create a new debug_static config. Use debug_shared for the defaults.
Now update the properties of the debug_static configuration:
- Common: switch from create dll to static library. Be sure to press Apply!
	Change the output dirs from .\obj\debug_shared to .\obj\debug_static
- C/C++:
	- Preprocessor: remove _USRDLL, Foundation_EXPORTS (also remove POCO_DLL if there)
					add POCO_STATIC
- Library: set output to ..\lib\PocoFoundationmtd.lib

repeat for release build, just use release_shared and ..\lib\PocoFoundationmt.lib

applications are simpler: add POCO_STATIC and link against the mt*.lib versions

and also repeat for CppUnit, Net, XML, Util too, and
testsuites and samples...

So it&#039;s actually quite a lot of work and we are currently lacking the time to do it.
But if you manage to do it, we will gladly support you and integrate your work
back in the final 1.3 release.
thx
Peter

PS: YOu must update WinTestRunner.h to:
#if !defined(POCO_STATIC)
#if defined(WinTestRunner_EXPORTS)
	#define WinTestRunner_API __declspec(dllexport)
#else
	#define WinTestRunner_API __declspec(dllimport)
#endif
#else
	#define WinTestRunner_API
#endif

If you get link errors to _GetAdaptersInfo, add iphlpapi.lib.
For network code add ws2_32.lib.
for __imp__timeGetTime add winmm.lib</description>
		<content:encoded><![CDATA[<p>So here is a rough guideline.<br />
If you encounter problems,<br />
simply mail me or post in the forum.</p>
<p>Open Foundation_vs80.sln<br />
Go the Configuration Manager and create a new debug_static config. Use debug_shared for the defaults.<br />
Now update the properties of the debug_static configuration:<br />
- Common: switch from create dll to static library. Be sure to press Apply!<br />
	Change the output dirs from .\obj\debug_shared to .\obj\debug_static<br />
- C/C++:<br />
	- Preprocessor: remove _USRDLL, Foundation_EXPORTS (also remove POCO_DLL if there)<br />
					add POCO_STATIC<br />
- Library: set output to ..\lib\PocoFoundationmtd.lib</p>
<p>repeat for release build, just use release_shared and ..\lib\PocoFoundationmt.lib</p>
<p>applications are simpler: add POCO_STATIC and link against the mt*.lib versions</p>
<p>and also repeat for CppUnit, Net, XML, Util too, and<br />
testsuites and samples&#8230;</p>
<p>So it&#8217;s actually quite a lot of work and we are currently lacking the time to do it.<br />
But if you manage to do it, we will gladly support you and integrate your work<br />
back in the final 1.3 release.<br />
thx<br />
Peter</p>
<p>PS: YOu must update WinTestRunner.h to:<br />
#if !defined(POCO_STATIC)<br />
#if defined(WinTestRunner_EXPORTS)<br />
	#define WinTestRunner_API __declspec(dllexport)<br />
#else<br />
	#define WinTestRunner_API __declspec(dllimport)<br />
#endif<br />
#else<br />
	#define WinTestRunner_API<br />
#endif</p>
<p>If you get link errors to _GetAdaptersInfo, add iphlpapi.lib.<br />
For network code add ws2_32.lib.<br />
for __imp__timeGetTime add winmm.lib</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paschal</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-103</link>
		<dc:creator>paschal</dc:creator>
		<pubDate>Thu, 23 Nov 2006 15:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-103</guid>
		<description>Please can you provide static builds as well? Sometimes it makes sense to compile statically to minimize the number of files when deploying simple apps. I have tried unsuccessfully to create static libs may be just instructions on how to do this would be helpful.

p.</description>
		<content:encoded><![CDATA[<p>Please can you provide static builds as well? Sometimes it makes sense to compile statically to minimize the number of files when deploying simple apps. I have tried unsuccessfully to create static libs may be just instructions on how to do this would be helpful.</p>
<p>p.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-102</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Thu, 23 Nov 2006 08:02:07 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-102</guid>
		<description>I just found the cause. the build would fail if it&#039;s run from a path which contains any space(&#039; &#039;) inside it.

I guess you should put all the path you refer to in your script inside a pair of quotes, as is usually recommended in Windows.</description>
		<content:encoded><![CDATA[<p>I just found the cause. the build would fail if it&#8217;s run from a path which contains any space(&#8217; &#8216;) inside it.</p>
<p>I guess you should put all the path you refer to in your script inside a pair of quotes, as is usually recommended in Windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-101</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Thu, 23 Nov 2006 07:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-101</guid>
		<description>Hi Tom,
glad you found our library. The link error you mentioned didn&#039;t occur in our test environment, so
to be able to help you, I need a bit more information:
- Did you read the Build tutorial at http://appinf.com/poco/wiki/tiki-index.php?page=FirstStepsWindows ?
- Do you use the p drive mapping? (one possible error is that the project that fails links to PocoFoundation via an absolute path (they should be relative though))
- What is the first project that gives you that error?
- Does the debug build of that project works (ie PocoFoundationd.lib is found)
- Does poco\lib contain a PocoFoundation.lib?
- Does Foundation build in release shared mode in the IDE? (it&#039;s quite easy to overlook an error in the bat file)

Hope we can pin down that error :-)
br
Peter</description>
		<content:encoded><![CDATA[<p>Hi Tom,<br />
glad you found our library. The link error you mentioned didn&#8217;t occur in our test environment, so<br />
to be able to help you, I need a bit more information:<br />
- Did you read the Build tutorial at <a href="http://appinf.com/poco/wiki/tiki-index.php?page=FirstStepsWindows" rel="nofollow">http://appinf.com/poco/wiki/tiki-index.php?page=FirstStepsWindows</a> ?<br />
- Do you use the p drive mapping? (one possible error is that the project that fails links to PocoFoundation via an absolute path (they should be relative though))<br />
- What is the first project that gives you that error?<br />
- Does the debug build of that project works (ie PocoFoundationd.lib is found)<br />
- Does poco\lib contain a PocoFoundation.lib?<br />
- Does Foundation build in release shared mode in the IDE? (it&#8217;s quite easy to overlook an error in the bat file)</p>
<p>Hope we can pin down that error <img src='http://pocoproject.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
br<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-100</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Thu, 23 Nov 2006 03:59:08 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-100</guid>
		<description>I tried to build with VS2005 in WinXP, either with the IDE or your bat file I got a bunch of link errors,
&quot;LINK : fatal error LNK1181: cannot open input file &#039;PocoFoundation.lib&#039;&quot;
How can I solve this problem?

Your library seems s quite interesting to me, I am eager to try it.

Thanks,
tom</description>
		<content:encoded><![CDATA[<p>I tried to build with VS2005 in WinXP, either with the IDE or your bat file I got a bunch of link errors,<br />
&#8220;LINK : fatal error LNK1181: cannot open input file &#8216;PocoFoundation.lib&#8217;&#8221;<br />
How can I solve this problem?</p>
<p>Your library seems s quite interesting to me, I am eager to try it.</p>
<p>Thanks,<br />
tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alex</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-99</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Sun, 19 Nov 2006 12:19:08 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-99</guid>
		<description>Paschal:

Unfortunately, Molto has been on the back burner for a looong time (I still have to remove ancient namespace macros :-/ ). I had multiple inquiries on it recently and I will seriously try to push the code out within the next week or two. It will definitely not be a release, but it will compile and be usable. Stay tuned ...

Alex</description>
		<content:encoded><![CDATA[<p>Paschal:</p>
<p>Unfortunately, Molto has been on the back burner for a looong time (I still have to remove ancient namespace macros :-/ ). I had multiple inquiries on it recently and I will seriously try to push the code out within the next week or two. It will definitely not be a release, but it will compile and be usable. Stay tuned &#8230;</p>
<p>Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paschal</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-98</link>
		<dc:creator>Paschal</dc:creator>
		<pubDate>Sun, 19 Nov 2006 01:46:49 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-98</guid>
		<description>Alex,
I am curious about progress on Molto; A Poco based servlet engine that you mentioned a few months ago. If you need tester I am wiling and ready. I can&#039;t help out much with code however because I don&#039;t consider myself a c++ guru like you folks.
I don&#039;t mind the absence of database access if you haven&#039;t sorted this out. I can always mix with the excellent libray by Sergey ( OTL ).

p.</description>
		<content:encoded><![CDATA[<p>Alex,<br />
I am curious about progress on Molto; A Poco based servlet engine that you mentioned a few months ago. If you need tester I am wiling and ready. I can&#8217;t help out much with code however because I don&#8217;t consider myself a c++ guru like you folks.<br />
I don&#8217;t mind the absence of database access if you haven&#8217;t sorted this out. I can always mix with the excellent libray by Sergey ( OTL ).</p>
<p>p.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alex</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-97</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Sat, 18 Nov 2006 15:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-97</guid>
		<description>Tim:

PocoData is still incubating in the sandbox. Curently, there are SQLite and ODBC connectors (former tested on windows only). Obviously, this is not yet a release-grade material, but you are more than welcome to play with it and give feedback, suggestions or report any potential problems.
Newly introduced Foundation::Tuple provides a solid ground for some useful additions such as Data::Recordset.
As usual, the amount of available time is the most significant obstacle to everything, so if there is anyone out there willing to donate some time by testing ODBC connector on any *NIX or developing a native connector (PostgreSQL, MySQL, ...) it would be much appreciated.

Alex</description>
		<content:encoded><![CDATA[<p>Tim:</p>
<p>PocoData is still incubating in the sandbox. Curently, there are SQLite and ODBC connectors (former tested on windows only). Obviously, this is not yet a release-grade material, but you are more than welcome to play with it and give feedback, suggestions or report any potential problems.<br />
Newly introduced Foundation::Tuple provides a solid ground for some useful additions such as Data::Recordset.<br />
As usual, the amount of available time is the most significant obstacle to everything, so if there is anyone out there willing to donate some time by testing ODBC connector on any *NIX or developing a native connector (PostgreSQL, MySQL, &#8230;) it would be much appreciated.</p>
<p>Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://pocoproject.org/blog/?p=37&#038;cpage=1#comment-96</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Sat, 18 Nov 2006 00:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://appinf.com/poco/blog/?p=37#comment-96</guid>
		<description>No word on Poco Data? I am looking foward to it.

tim</description>
		<content:encoded><![CDATA[<p>No word on Poco Data? I am looking foward to it.</p>
<p>tim</p>
]]></content:encoded>
	</item>
</channel>
</rss>
