<?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: Enabling IMAP support under OS X Leopard</title>
	<atom:link href="http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/feed/" rel="self" type="application/rss+xml" />
	<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/</link>
	<description>Weblog for the Sugar Developer community</description>
	<lastBuildDate>Mon, 15 Mar 2010 17:55:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: chris</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-7868</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Mon, 01 Feb 2010 19:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-7868</guid>
		<description>Will re-building PHP with the above flags remove my existing PHP extensions, like GD?</description>
		<content:encoded><![CDATA[<p>Will re-building PHP with the above flags remove my existing PHP extensions, like GD?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shail</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-7686</link>
		<dc:creator>shail</dc:creator>
		<pubDate>Mon, 07 Dec 2009 11:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-7686</guid>
		<description>HI john / All

I have MAC OS X 10.5.8 PPC 64 bit
PHP version = 5.2.8

i have follow below steps from this post.

$ sudo mkdir -p /SourceCache
$ cd /SourceCache
$ curl -O ftp://ftp.cac.washington.edu/imap/c-client.tar.Z
$ tar -zxvf c-client.tar.Z
$ cd imap-2007b
$ make oxp EXTRACFLAGS=&quot;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&quot;
$ sudo cp c-client/*.h /usr/local/include/
$ sudo cp c-client/*.c /usr/local/lib
$ sudo cp c-client/c-client.a /usr/local/lib/libc-client.a
$ sudo curl -O http://www.opensource.apple.com/source/apache_mod_php/apache_mod_php-44.2/php-5.2.8.tar.bz2
$ tar -xjvf php-5.2.8.tar.bz2 
$ cd /SourceCache/php-5.2.8/ext/imap
$ phpize
$ MACOSX_DEPLOYMENT_TARGET=10.5 CFLAGS=”-arch ppc64 -g -Os -pipe -no-cpp-precomp” CCFLAGS=”-arch ppc64 -g -Os -pipe” CXXFLAGS=”-arch ppc64 -g -Os -pipe” LDFLAGS=”-arch ppc64 -bind_at_load” ./configure --with-kerberos=/usr --with-imap-ssl=/usr --with-imap=/usr
$ make 
$ sudo make install
$ sudo echo &quot;extension=imap.so&quot; &gt;&gt; /etc/php.ini
$ cp /SourceCache/php-5.2.8/ext/imap/modules/imap.so /usr/lib/php/extensions/no-debug-non-zts-20060613
$ sudo apachectl restart

now my issue is while my check from command line, it&#039;s gives warning as below. and imap extension not seems loaded.

$ php -m
PHP Warning:  PHP Startup: Unable to load dynamic library &#039;/usr/lib/php/extensions/no-debug-non-zts-20060613/imap.so&#039; - (null) in Unknown on line 0
[PHP Modules]
ctype
curl
date
dom
exif
filter
ftp
hash
iconv
json
ldap
libxml
mbstring
mysql
mysqli
odbc
openssl
pcre
PDO
pdo_sqlite
posix
Reflection
session
SimpleXML
sockets
SPL
SQLite
standard
tokenizer
xml
xmlreader
xmlrpc
xmlwriter
xsl
zlib
[Zend Modules]
But i have check through info.php, it shows it loaded.
i m much confused between this. it will be really apprentice if you can take me out of this.

Thanks &amp; Rg.
Shailesh</description>
		<content:encoded><![CDATA[<p>HI john / All</p>
<p>I have MAC OS X 10.5.8 PPC 64 bit<br />
PHP version = 5.2.8</p>
<p>i have follow below steps from this post.</p>
<p>$ sudo mkdir -p /SourceCache<br />
$ cd /SourceCache<br />
$ curl -O <a href="ftp://ftp.cac.washington.edu/imap/c-client.tar.Z" rel="nofollow">ftp://ftp.cac.washington.edu/imap/c-client.tar.Z</a><br />
$ tar -zxvf c-client.tar.Z<br />
$ cd imap-2007b<br />
$ make oxp EXTRACFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&#8221;<br />
$ sudo cp c-client/*.h /usr/local/include/<br />
$ sudo cp c-client/*.c /usr/local/lib<br />
$ sudo cp c-client/c-client.a /usr/local/lib/libc-client.a<br />
$ sudo curl -O <a href="http://www.opensource.apple.com/source/apache_mod_php/apache_mod_php-44.2/php-5.2.8.tar.bz2" rel="nofollow">http://www.opensource.apple.com/source/apache_mod_php/apache_mod_php-44.2/php-5.2.8.tar.bz2</a><br />
$ tar -xjvf php-5.2.8.tar.bz2<br />
$ cd /SourceCache/php-5.2.8/ext/imap<br />
$ phpize<br />
$ MACOSX_DEPLOYMENT_TARGET=10.5 CFLAGS=”-arch ppc64 -g -Os -pipe -no-cpp-precomp” CCFLAGS=”-arch ppc64 -g -Os -pipe” CXXFLAGS=”-arch ppc64 -g -Os -pipe” LDFLAGS=”-arch ppc64 -bind_at_load” ./configure &#8211;with-kerberos=/usr &#8211;with-imap-ssl=/usr &#8211;with-imap=/usr<br />
$ make<br />
$ sudo make install<br />
$ sudo echo &#8220;extension=imap.so&#8221; &gt;&gt; /etc/php.ini<br />
$ cp /SourceCache/php-5.2.8/ext/imap/modules/imap.so /usr/lib/php/extensions/no-debug-non-zts-20060613<br />
$ sudo apachectl restart</p>
<p>now my issue is while my check from command line, it&#8217;s gives warning as below. and imap extension not seems loaded.</p>
<p>$ php -m<br />
PHP Warning:  PHP Startup: Unable to load dynamic library &#8216;/usr/lib/php/extensions/no-debug-non-zts-20060613/imap.so&#8217; &#8211; (null) in Unknown on line 0<br />
[PHP Modules]<br />
ctype<br />
curl<br />
date<br />
dom<br />
exif<br />
filter<br />
ftp<br />
hash<br />
iconv<br />
json<br />
ldap<br />
libxml<br />
mbstring<br />
mysql<br />
mysqli<br />
odbc<br />
openssl<br />
pcre<br />
PDO<br />
pdo_sqlite<br />
posix<br />
Reflection<br />
session<br />
SimpleXML<br />
sockets<br />
SPL<br />
SQLite<br />
standard<br />
tokenizer<br />
xml<br />
xmlreader<br />
xmlrpc<br />
xmlwriter<br />
xsl<br />
zlib<br />
[Zend Modules]<br />
But i have check through info.php, it shows it loaded.<br />
i m much confused between this. it will be really apprentice if you can take me out of this.</p>
<p>Thanks &amp; Rg.<br />
Shailesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shail</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-7685</link>
		<dc:creator>shail</dc:creator>
		<pubDate>Mon, 07 Dec 2009 11:04:30 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-7685</guid>
		<description>now my issue is while my check from command line, it&#039;s gives warning as below. and imap extension not seems loaded.

$ php -m
PHP Warning:  PHP Startup: Unable to load dynamic library &#039;/usr/lib/php/extensions/no-debug-non-zts-20060613/imap.so&#039; - (null) in Unknown on line 0
[PHP Modules]
ctype
curl
date
dom
exif
filter
ftp
hash
iconv
json
.......... output omitted.....
zlib
[Zend Modules]
But i have check through info.php, it shows it loaded.
i m much confused between this. it will be really apprentice if you can take me out of this.

Thanks &amp; Rg.
Shailesh</description>
		<content:encoded><![CDATA[<p>now my issue is while my check from command line, it&#8217;s gives warning as below. and imap extension not seems loaded.</p>
<p>$ php -m<br />
PHP Warning:  PHP Startup: Unable to load dynamic library &#8216;/usr/lib/php/extensions/no-debug-non-zts-20060613/imap.so&#8217; &#8211; (null) in Unknown on line 0<br />
[PHP Modules]<br />
ctype<br />
curl<br />
date<br />
dom<br />
exif<br />
filter<br />
ftp<br />
hash<br />
iconv<br />
json<br />
&#8230;&#8230;&#8230;. output omitted&#8230;..<br />
zlib<br />
[Zend Modules]<br />
But i have check through info.php, it shows it loaded.<br />
i m much confused between this. it will be really apprentice if you can take me out of this.</p>
<p>Thanks &amp; Rg.<br />
Shailesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shail</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-7684</link>
		<dc:creator>shail</dc:creator>
		<pubDate>Mon, 07 Dec 2009 11:00:54 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-7684</guid>
		<description>HI john / All

I have MAC OS X 10.5.8 PPC 64 bit
PHP version = 5.2.8

i have follow below steps from this post.

$ sudo mkdir -p /SourceCache
$ cd /SourceCache
$ curl -O ftp://ftp.cac.washington.edu/imap/c-client.tar.Z
$ tar -zxvf c-client.tar.Z
$ cd imap-2007b
$ make oxp EXTRACFLAGS=\-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp\
$ sudo cp c-client/*.h /usr/local/include/
$ sudo cp c-client/*.c /usr/local/lib
$ sudo cp c-client/c-client.a /usr/local/lib/libc-client.a
$ sudo curl -O http://www.opensource.apple.com/source/apache_mod_php/apache_mod_php-44.2/php-5.2.8.tar.bz2
$ tar -xjvf php-5.2.8.tar.bz2 
$ cd /SourceCache/php-5.2.8/ext/imap
$ phpize
$ MACOSX_DEPLOYMENT_TARGET=10.5 CFLAGS=”-arch ppc64 -g -Os -pipe -no-cpp-precomp” CCFLAGS=”-arch ppc64 -g -Os -pipe” CXXFLAGS=”-arch ppc64 -g -Os -pipe” LDFLAGS=”-arch ppc64 -bind_at_load” ./configure --with-kerberos=/usr --with-imap-ssl=/usr --with-imap=/usr
$ make 
$ sudo make install
$ sudo echo \extension=imap.so\ &gt;&gt; /etc/php.ini
$ cp /SourceCache/php-5.2.8/ext/imap/modules/imap.so /usr/lib/php/extensions/no-debug-non-zts-20060613
$ sudo apachectl restart

countinue in next post</description>
		<content:encoded><![CDATA[<p>HI john / All</p>
<p>I have MAC OS X 10.5.8 PPC 64 bit<br />
PHP version = 5.2.8</p>
<p>i have follow below steps from this post.</p>
<p>$ sudo mkdir -p /SourceCache<br />
$ cd /SourceCache<br />
$ curl -O <a href="ftp://ftp.cac.washington.edu/imap/c-client.tar.Z" rel="nofollow">ftp://ftp.cac.washington.edu/imap/c-client.tar.Z</a><br />
$ tar -zxvf c-client.tar.Z<br />
$ cd imap-2007b<br />
$ make oxp EXTRACFLAGS=\-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp\<br />
$ sudo cp c-client/*.h /usr/local/include/<br />
$ sudo cp c-client/*.c /usr/local/lib<br />
$ sudo cp c-client/c-client.a /usr/local/lib/libc-client.a<br />
$ sudo curl -O <a href="http://www.opensource.apple.com/source/apache_mod_php/apache_mod_php-44.2/php-5.2.8.tar.bz2" rel="nofollow">http://www.opensource.apple.com/source/apache_mod_php/apache_mod_php-44.2/php-5.2.8.tar.bz2</a><br />
$ tar -xjvf php-5.2.8.tar.bz2<br />
$ cd /SourceCache/php-5.2.8/ext/imap<br />
$ phpize<br />
$ MACOSX_DEPLOYMENT_TARGET=10.5 CFLAGS=”-arch ppc64 -g -Os -pipe -no-cpp-precomp” CCFLAGS=”-arch ppc64 -g -Os -pipe” CXXFLAGS=”-arch ppc64 -g -Os -pipe” LDFLAGS=”-arch ppc64 -bind_at_load” ./configure &#8211;with-kerberos=/usr &#8211;with-imap-ssl=/usr &#8211;with-imap=/usr<br />
$ make<br />
$ sudo make install<br />
$ sudo echo \extension=imap.so\ &gt;&gt; /etc/php.ini<br />
$ cp /SourceCache/php-5.2.8/ext/imap/modules/imap.so /usr/lib/php/extensions/no-debug-non-zts-20060613<br />
$ sudo apachectl restart</p>
<p>countinue in next post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fallenclient</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-7430</link>
		<dc:creator>Fallenclient</dc:creator>
		<pubDate>Fri, 11 Sep 2009 09:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-7430</guid>
		<description>After upgrading to Snow Leopard i found that Imap stopped working as a newer version of php was installed (5.3). I followed the steps in the main article but as it would not compile with a &#039;cc cannot create an executable&#039; error i changed 

MACOSX_DEPLOYMENT_TARGET=10.5 \
CFLAGS=&quot;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&quot; \
CCFLAGS=&quot;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&quot; \
CXXFLAGS=&quot;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&quot; \
LDFLAGS=&quot;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -bind_at_load&quot; \
./configure --with-kerberos --with-imap-ssl

to

MACOSX_DEPLOYMENT_TARGET=10.6 \
CFLAGS=&quot;-arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&quot; \
CCFLAGS=&quot;-arch i386 -arch x86_64 -g -Os  -pipe&quot; \
CXXFLAGS=&quot;-arch i386 -arch x86_64 -g -Os  -pipe&quot; \
LDFLAGS=&quot;-arch i386 -arch x86_64 -bind_at_load&quot; \
./configure --with-kerberos --with-imap-ssl

leaving out the power pc libs as Snow Leopard doesnt have them. Also check after the upgrade that you have renamed or backed up and renamed php.ini.default to php.ini with the extension=imap.so added and the extension_dir commented out.</description>
		<content:encoded><![CDATA[<p>After upgrading to Snow Leopard i found that Imap stopped working as a newer version of php was installed (5.3). I followed the steps in the main article but as it would not compile with a &#8216;cc cannot create an executable&#8217; error i changed </p>
<p>MACOSX_DEPLOYMENT_TARGET=10.5 \<br />
CFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&#8221; \<br />
CCFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&#8221; \<br />
CXXFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os  -pipe&#8221; \<br />
LDFLAGS=&#8221;-arch ppc -arch ppc64 -arch i386 -arch x86_64 -bind_at_load&#8221; \<br />
./configure &#8211;with-kerberos &#8211;with-imap-ssl</p>
<p>to</p>
<p>MACOSX_DEPLOYMENT_TARGET=10.6 \<br />
CFLAGS=&#8221;-arch i386 -arch x86_64 -g -Os  -pipe -no-cpp-precomp&#8221; \<br />
CCFLAGS=&#8221;-arch i386 -arch x86_64 -g -Os  -pipe&#8221; \<br />
CXXFLAGS=&#8221;-arch i386 -arch x86_64 -g -Os  -pipe&#8221; \<br />
LDFLAGS=&#8221;-arch i386 -arch x86_64 -bind_at_load&#8221; \<br />
./configure &#8211;with-kerberos &#8211;with-imap-ssl</p>
<p>leaving out the power pc libs as Snow Leopard doesnt have them. Also check after the upgrade that you have renamed or backed up and renamed php.ini.default to php.ini with the extension=imap.so added and the extension_dir commented out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enabling Xdebug under Mac OS X Leopard &#124; CRM Solution &#124; CRM Software &#124; Free CRM &#124; Mobile CRM &#124; Sugar CRM</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-649</link>
		<dc:creator>Enabling Xdebug under Mac OS X Leopard &#124; CRM Solution &#124; CRM Software &#124; Free CRM &#124; Mobile CRM &#124; Sugar CRM</dc:creator>
		<pubDate>Sat, 07 Feb 2009 05:04:22 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-649</guid>
		<description>[...] X Leopard, the pecl install xdebug command won&#8217;t work. The problem was earlier illustrated on this developer&#8217;s blog post, where the command line PHP version is built for 32-bit, while the [...]</description>
		<content:encoded><![CDATA[<p>[...] X Leopard, the pecl install xdebug command won&#8217;t work. The problem was earlier illustrated on this developer&#8217;s blog post, where the command line PHP version is built for 32-bit, while the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Albert Albala</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-528</link>
		<dc:creator>Albert Albala</dc:creator>
		<pubDate>Wed, 17 Dec 2008 16:29:33 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-528</guid>
		<description>Hi, 

I found that I had to cd php-5.2.6/ext/imap before running phpize, otherwise I get the error &quot;phpize Cannot find config.m4. Make sure that you run &#039;/usr/bin/phpize&#039; in the top level source directory of the module&quot;. 

I don&#039;t know much about computers, but a google search suggests that you must be inside the source code directory before attempting phpize.

Thanks for the great tutorial! 

Albert.</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I found that I had to cd php-5.2.6/ext/imap before running phpize, otherwise I get the error &#8220;phpize Cannot find config.m4. Make sure that you run &#8216;/usr/bin/phpize&#8217; in the top level source directory of the module&#8221;. </p>
<p>I don&#8217;t know much about computers, but a google search suggests that you must be inside the source code directory before attempting phpize.</p>
<p>Thanks for the great tutorial! </p>
<p>Albert.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sugar Developer Blog &#187; Blog Archive &#187; Enabling Xdebug under Mac OS X Leopard</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-506</link>
		<dc:creator>Sugar Developer Blog &#187; Blog Archive &#187; Enabling Xdebug under Mac OS X Leopard</dc:creator>
		<pubDate>Tue, 25 Nov 2008 22:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-506</guid>
		<description>[...] X Leopard, the pecl install xdebug command won&#8217;t work. The problem was earlier illustrated on this developer&#8217;s blog post, where the command line PHP version is built for 32-bit, while the [...]</description>
		<content:encoded><![CDATA[<p>[...] X Leopard, the pecl install xdebug command won&#8217;t work. The problem was earlier illustrated on this developer&#8217;s blog post, where the command line PHP version is built for 32-bit, while the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-472</link>
		<dc:creator>Gabriel</dc:creator>
		<pubDate>Wed, 19 Nov 2008 13:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-472</guid>
		<description>Hi,

What is the source directory of the imap extension? I stop here.

Thanks, from Brazil! =)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>What is the source directory of the imap extension? I stop here.</p>
<p>Thanks, from Brazil! =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://developers.sugarcrm.com/wordpress/2008/08/26/enabling-imap-support-under-os-x-leopard/comment-page-1/#comment-365</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 21 Oct 2008 19:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://developers.sugarcrm.com/wordpress/?p=154#comment-365</guid>
		<description>Thanks a lot, worked like a charm. I already had a lot of struggle to get other dynamic PHP-Extensions working; this one worked on the first try! Good work!!</description>
		<content:encoded><![CDATA[<p>Thanks a lot, worked like a charm. I already had a lot of struggle to get other dynamic PHP-Extensions working; this one worked on the first try! Good work!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
