<?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: Plugging mcrypt into PHP, on Mac OS X Snow Leopard 10.6.1</title>
	<atom:link href="http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/</link>
	<description>Technology, Finance, Fly-Fishing, and vain attempts to merge the three</description>
	<lastBuildDate>Fri, 10 Sep 2010 19:36:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: How To Add PHP Mcrypt Module On Snow Leopard 10.6 &#171; Sathian&#8217;s Weblog</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-148211</link>
		<dc:creator>How To Add PHP Mcrypt Module On Snow Leopard 10.6 &#171; Sathian&#8217;s Weblog</dc:creator>
		<pubDate>Thu, 09 Sep 2010 07:57:38 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-148211</guid>
		<description>[...] http://meangry.tweakblogs.net/blog/3189/compiling-php-531-with-mcrypt-on-snow-leopard.html http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/           Categories: MAC, PHP        Comments (0) Trackbacks (0) Leave a comment [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://meangry.tweakblogs.net/blog/3189/compiling-php-531-with-mcrypt-on-snow-leopard.html" rel="nofollow">http://meangry.tweakblogs.net/blog/3189/compiling-php-531-with-mcrypt-on-snow-leopard.html</a> <a href="http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/" rel="nofollow">http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/</a>           Categories: MAC, PHP        Comments (0) Trackbacks (0) Leave a comment [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Gracie</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-139568</link>
		<dc:creator>Michael Gracie</dc:creator>
		<pubDate>Thu, 26 Aug 2010 05:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-139568</guid>
		<description>Geoff - 

Thanks, and glad it worked.  Obviously, I had help (as noted at the top), but it was a lot of trial and error.

As for understanding the configure command, well the introduction of 64-bit has complicated the matter, so the best bet is to research for the best fit for a particular selection of source code.

For example, I&#039;m working with GPG now, and the source only works in 32-bit mode.  Hence, compile command turns out...

./configure CC=&quot;gcc -arch i386&quot;

Again, it isn&#039;t my brainchild, but researching what needs to be done to utilize the tools others have so graciously provided us.

Cheers,

MG</description>
		<content:encoded><![CDATA[<p>Geoff &#8211; </p>
<p>Thanks, and glad it worked.  Obviously, I had help (as noted at the top), but it was a lot of trial and error.</p>
<p>As for understanding the configure command, well the introduction of 64-bit has complicated the matter, so the best bet is to research for the best fit for a particular selection of source code.</p>
<p>For example, I&#8217;m working with GPG now, and the source only works in 32-bit mode.  Hence, compile command turns out&#8230;</p>
<p>./configure CC=&#8221;gcc -arch i386&#8243;</p>
<p>Again, it isn&#8217;t my brainchild, but researching what needs to be done to utilize the tools others have so graciously provided us.</p>
<p>Cheers,</p>
<p>MG</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-139562</link>
		<dc:creator>Geoff</dc:creator>
		<pubDate>Thu, 26 Aug 2010 04:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-139562</guid>
		<description>Worked perfectly, just like everyone else says. Thanks a ton for this, Michael!  For what it&#039;s worth, I did it just a bit differently; I put my sources in 

~/src/libmcrypt-2.5.8 and 
~/src/php-5.3.3

All the same commands worked exactly as above. 

How on earth would you know how to do this... without this post... is beyond me! 

I think Jim&#039;s original 10-29-2009 question is perhaps better asked: Can the same exact steps (terminal commands) be used to compile other libraries?  I am guessing that /usr/bin/phpize, make -j6, and sudo make install install, would be logical, but how do you learn to create a configure command?</description>
		<content:encoded><![CDATA[<p>Worked perfectly, just like everyone else says. Thanks a ton for this, Michael!  For what it&#8217;s worth, I did it just a bit differently; I put my sources in </p>
<p>~/src/libmcrypt-2.5.8 and<br />
~/src/php-5.3.3</p>
<p>All the same commands worked exactly as above. </p>
<p>How on earth would you know how to do this&#8230; without this post&#8230; is beyond me! </p>
<p>I think Jim&#8217;s original 10-29-2009 question is perhaps better asked: Can the same exact steps (terminal commands) be used to compile other libraries?  I am guessing that /usr/bin/phpize, make -j6, and sudo make install install, would be logical, but how do you learn to create a configure command?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lennart</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-138146</link>
		<dc:creator>Lennart</dc:creator>
		<pubDate>Fri, 20 Aug 2010 21:11:11 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-138146</guid>
		<description>Thanks, worked like a charm!</description>
		<content:encoded><![CDATA[<p>Thanks, worked like a charm!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kennie29A</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-137752</link>
		<dc:creator>Kennie29A</dc:creator>
		<pubDate>Thu, 19 Aug 2010 10:43:46 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-137752</guid>
		<description>Thanks so much!!</description>
		<content:encoded><![CDATA[<p>Thanks so much!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Gracie</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-137251</link>
		<dc:creator>Michael Gracie</dc:creator>
		<pubDate>Tue, 17 Aug 2010 14:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-137251</guid>
		<description>I am sorry you are having trouble, but enough people have stopped by here, successfully completed the task, and simply dropped a &quot;thanks&quot; that it&#039;s pretty clear it isn&#039;t an error in the commands displayed above.

I just reviewed all your comments, and the best I can suggest is either start over from scratch, or find someone to help you that is really comfortable at the UNIX command line.</description>
		<content:encoded><![CDATA[<p>I am sorry you are having trouble, but enough people have stopped by here, successfully completed the task, and simply dropped a &#8220;thanks&#8221; that it&#8217;s pretty clear it isn&#8217;t an error in the commands displayed above.</p>
<p>I just reviewed all your comments, and the best I can suggest is either start over from scratch, or find someone to help you that is really comfortable at the UNIX command line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christine</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-137249</link>
		<dc:creator>christine</dc:creator>
		<pubDate>Tue, 17 Aug 2010 14:07:20 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-137249</guid>
		<description>Hello;

1. I&#039;ve installed xcode, libmcrypt and php as instructed
2. You mentioned previously putting that code in terminal. So that is where I&#039;ve been cutting and pasting from this page that code into my computers terminal. Unless you mean in the xcode field.
3. I&#039;ve tried coding w/ mysql on and off and get error messages. Of course I&#039;ve been coding into my computers terminal.
4. I&#039;ve been cutting and pasting from this page. If there is an error message it&#039;s from your page.</description>
		<content:encoded><![CDATA[<p>Hello;</p>
<p>1. I&#8217;ve installed xcode, libmcrypt and php as instructed<br />
2. You mentioned previously putting that code in terminal. So that is where I&#8217;ve been cutting and pasting from this page that code into my computers terminal. Unless you mean in the xcode field.<br />
3. I&#8217;ve tried coding w/ mysql on and off and get error messages. Of course I&#8217;ve been coding into my computers terminal.<br />
4. I&#8217;ve been cutting and pasting from this page. If there is an error message it&#8217;s from your page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Gracie</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-137244</link>
		<dc:creator>Michael Gracie</dc:creator>
		<pubDate>Tue, 17 Aug 2010 13:16:39 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-137244</guid>
		<description>Christine - Either..

1) You don&#039;t have the developer tools installed;
2) You are not in the right directory when you enter the command;
3) You are somehow logged into mysql; and/or
4) There is a typing error someplace.

Best I can offer is to try starting from scratch, following the instructions exactly like they are laid out, and copying the command into the terminal window.</description>
		<content:encoded><![CDATA[<p>Christine &#8211; Either..</p>
<p>1) You don&#8217;t have the developer tools installed;<br />
2) You are not in the right directory when you enter the command;<br />
3) You are somehow logged into mysql; and/or<br />
4) There is a typing error someplace.</p>
<p>Best I can offer is to try starting from scratch, following the instructions exactly like they are laid out, and copying the command into the terminal window.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christine</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-137127</link>
		<dc:creator>christine</dc:creator>
		<pubDate>Tue, 17 Aug 2010 02:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-137127</guid>
		<description>When I enter this into terminal I get:

MACOSX_DEPLOYMENT_TARGET=10.6 CFLAGS=&#039;-O3 -fno-common -arch i386 -arch x86_64&#039; LDFLAGS=&#039;-O3 -arch i386 -arch x86_64&#039; CXXFLAGS=&#039;-O3 -fno-common -arch i386 -arch x86_64&#039; ./configure --disable-dependency-tracking
-bash: ./configure: No such file or directory
host:mysql me$ -j6
-bash: -j6: command not found
host:mysql me$ sudo make install
Password:
make: *** No rule to make target `install&#039;.  Stop.
host:mysql me$</description>
		<content:encoded><![CDATA[<p>When I enter this into terminal I get:</p>
<p>MACOSX_DEPLOYMENT_TARGET=10.6 CFLAGS=&#8217;-O3 -fno-common -arch i386 -arch x86_64&#8242; LDFLAGS=&#8217;-O3 -arch i386 -arch x86_64&#8242; CXXFLAGS=&#8217;-O3 -fno-common -arch i386 -arch x86_64&#8242; ./configure &#8211;disable-dependency-tracking<br />
-bash: ./configure: No such file or directory<br />
host:mysql me$ -j6<br />
-bash: -j6: command not found<br />
host:mysql me$ sudo make install<br />
Password:<br />
make: *** No rule to make target `install&#8217;.  Stop.<br />
host:mysql me$</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Gracie</title>
		<link>http://michaelgracie.com/2009/09/23/plugging-mcrypt-into-php-on-mac-os-x-snow-leopard-10.6.1/comment-page-4/#comment-136068</link>
		<dc:creator>Michael Gracie</dc:creator>
		<pubDate>Thu, 12 Aug 2010 13:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://michaelgracie.com/?p=12489#comment-136068</guid>
		<description>Adrian - looks like you don&#039;t have the developer tools installed.</description>
		<content:encoded><![CDATA[<p>Adrian &#8211; looks like you don&#8217;t have the developer tools installed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
