<?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: Snow Leopard PHP and IMAP Support</title>
	<atom:link href="http://blog.xeonxai.com/2009/12/03/160/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.xeonxai.com/2009/12/03/160/</link>
	<description>My rants on PHP, Objective-C, Cocoa Touch, and other random stuff.</description>
	<lastBuildDate>Fri, 30 Jul 2010 10:20:12 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Greg</title>
		<link>http://blog.xeonxai.com/2009/12/03/160/comment-page-1/#comment-573</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Sun, 23 May 2010 22:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xeonxai.com/?p=160#comment-573</guid>
		<description>Thanks! This saved me hours of frustration.</description>
		<content:encoded><![CDATA[<p>Thanks! This saved me hours of frustration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Special Ops Security</title>
		<link>http://blog.xeonxai.com/2009/12/03/160/comment-page-1/#comment-562</link>
		<dc:creator>Special Ops Security</dc:creator>
		<pubDate>Mon, 05 Apr 2010 17:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xeonxai.com/?p=160#comment-562</guid>
		<description>Small correction. The path for &quot;with-imap-ssl&quot; is incorrect in comment #3. It should be:


./configure --with-imap=/usr/local/imap-2007 --with-kerberos --with-imap-ssl=/usr/


The configure script only needs &quot;usr&quot; because it appends &quot;include/openssl&quot; to the path that you provide. Also, although it is hard to see with the font of this blog, there are double-hyphens before every occurrence of the word &quot;with&quot; and single hyphens elsewhere.</description>
		<content:encoded><![CDATA[<p>Small correction. The path for &#8220;with-imap-ssl&#8221; is incorrect in comment #3. It should be:</p>
<p>./configure &#8211;with-imap=/usr/local/imap-2007 &#8211;with-kerberos &#8211;with-imap-ssl=/usr/</p>
<p>The configure script only needs &#8220;usr&#8221; because it appends &#8220;include/openssl&#8221; to the path that you provide. Also, although it is hard to see with the font of this blog, there are double-hyphens before every occurrence of the word &#8220;with&#8221; and single hyphens elsewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tedivm</title>
		<link>http://blog.xeonxai.com/2009/12/03/160/comment-page-1/#comment-530</link>
		<dc:creator>tedivm</dc:creator>
		<pubDate>Fri, 29 Jan 2010 05:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xeonxai.com/?p=160#comment-530</guid>
		<description>In step three you should add the path to the &quot;with-imap-ssl&quot; flag-

./configure --with-imap=/usr/local/imap-2007 --with-kerberos --with-imap-ssl=/usr/local/ssl</description>
		<content:encoded><![CDATA[<p>In step three you should add the path to the &#8220;with-imap-ssl&#8221; flag-</p>
<p>./configure &#8211;with-imap=/usr/local/imap-2007 &#8211;with-kerberos &#8211;with-imap-ssl=/usr/local/ssl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Peltenburg</title>
		<link>http://blog.xeonxai.com/2009/12/03/160/comment-page-1/#comment-517</link>
		<dc:creator>Chris Peltenburg</dc:creator>
		<pubDate>Fri, 08 Jan 2010 20:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xeonxai.com/?p=160#comment-517</guid>
		<description>Hi Lorenzo,

found a solution for your ( and mine too ) problem! Thanks to Alexey Kulikov

cd imap-2007e/
make osx EXTRACFLAGS=&quot;-arch i386 -arch x86_64 -g -Os -pipe -no-cpp-precomp&quot;
sudo mkdir /usr/local/include/
sudo cp c-client/*.h /usr/local/include/
sudo mkdir /usr/local/lib/
sudo cp c-client/*.c /usr/local/lib
sudo cp c-client/c-client.a /usr/local/lib/libc-client.a

Then follow the instructions from Step 2</description>
		<content:encoded><![CDATA[<p>Hi Lorenzo,</p>
<p>found a solution for your ( and mine too ) problem! Thanks to Alexey Kulikov</p>
<p>cd imap-2007e/<br />
make osx EXTRACFLAGS=&#8221;-arch i386 -arch x86_64 -g -Os -pipe -no-cpp-precomp&#8221;<br />
sudo mkdir /usr/local/include/<br />
sudo cp c-client/*.h /usr/local/include/<br />
sudo mkdir /usr/local/lib/<br />
sudo cp c-client/*.c /usr/local/lib<br />
sudo cp c-client/c-client.a /usr/local/lib/libc-client.a</p>
<p>Then follow the instructions from Step 2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lorenzo</title>
		<link>http://blog.xeonxai.com/2009/12/03/160/comment-page-1/#comment-513</link>
		<dc:creator>Lorenzo</dc:creator>
		<pubDate>Wed, 30 Dec 2009 07:24:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xeonxai.com/?p=160#comment-513</guid>
		<description>Followed your instructions thoroughly
./configure…  fails in step2 with 
configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.

I checked that I had the openssl library installed…

Do you have any further possible ideas ?
Thanks
Lorenzo</description>
		<content:encoded><![CDATA[<p>Followed your instructions thoroughly<br />
./configure…  fails in step2 with<br />
configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.</p>
<p>I checked that I had the openssl library installed…</p>
<p>Do you have any further possible ideas ?<br />
Thanks<br />
Lorenzo</p>
]]></content:encoded>
	</item>
</channel>
</rss>
