<?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"
	>
<channel>
	<title>Comments on: Leopard Also Breaks PHP</title>
	<atom:link href="http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/</link>
	<description>A whole bunch of nought thought by Chris Cummer</description>
	<pubDate>Wed, 07 Jan 2009 04:58:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Paul Harvey</title>
		<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-2836</link>
		<dc:creator>Paul Harvey</dc:creator>
		<pubDate>Thu, 27 Mar 2008 23:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-2836</guid>
		<description>This page is great. It really helped me. After a day or more of trying to solve this problem, I was able to follow your instructions here and get everything working again.

Thanks so much :)</description>
		<content:encoded><![CDATA[<p>This page is great. It really helped me. After a day or more of trying to solve this problem, I was able to follow your instructions here and get everything working again.</p>
<p>Thanks so much <img src='http://www.postal-code.com/binarycode/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-2537</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Sat, 01 Mar 2008 21:49:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-2537</guid>
		<description>Mark,

Thanks for the explanation! It appears that something in WordPress internals mucks with double-dashes (that's a comment indicator for SQL so it's likely over-zealous injection prevention). I had to manually edit your comment to get them to show up properly. 

I've updated the post above as per your comment.

Cheers
Chris</description>
		<content:encoded><![CDATA[<p>Mark,</p>
<p>Thanks for the explanation! It appears that something in WordPress internals mucks with double-dashes (that&#8217;s a comment indicator for SQL so it&#8217;s likely over-zealous injection prevention). I had to manually edit your comment to get them to show up properly. </p>
<p>I&#8217;ve updated the post above as per your comment.</p>
<p>Cheers<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-2536</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 01 Mar 2008 21:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-2536</guid>
		<description>Chris,

Whatever formatter you are using for these postings just messed up my corrections as well in the above comment. So to be more specific, do this replacing every word DASH with a minus character and every QUOTE with a double quote character. Do the same for all messed commands:

env CFLAGS=QUOTEDASHO DASHg DASHarch i386 DASHarch ppcQUOTE LDFLAGS=QUOTEDASHarch i386 DASHarch ppcQUOTE ./configure DASHDASHprefix=/usr DASHDASHsysconfdir=/etc DASHDASHlocalstatedir=/var DASHDASHmandir=/usr/share/man DASHDASHenableDASHshared DASHDASHenableDASHstatic

Mark</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>Whatever formatter you are using for these postings just messed up my corrections as well in the above comment. So to be more specific, do this replacing every word DASH with a minus character and every QUOTE with a double quote character. Do the same for all messed commands:</p>
<p>env CFLAGS=QUOTEDASHO DASHg DASHarch i386 DASHarch ppcQUOTE LDFLAGS=QUOTEDASHarch i386 DASHarch ppcQUOTE ./configure DASHDASHprefix=/usr DASHDASHsysconfdir=/etc DASHDASHlocalstatedir=/var DASHDASHmandir=/usr/share/man DASHDASHenableDASHshared DASHDASHenableDASHstatic</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-2535</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 01 Mar 2008 21:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-2535</guid>
		<description>Peter,

All of the curly quotes need to be re-typed as just normal double quotes. Similarly, the dashes need to be re-typed as minus signs respectively. For whatever reason the cut and paste formatting here is all messed. Additionally, you will want to change the single dashed flags - to double dashes --. I am specifically referring to the arguments that look like this after a cut and paste:

env CFLAGS=”-O -g -arch i386 -arch ppc” LDFLAGS=”-arch i386 -arch ppc” ./configure –prefix=/usr –sysconfdir=/etc –localstatedir=/var –mandir=/usr/share/man –enable-shared –enable-static

Change them to look like this:

env CFLAGS=”-O -g -arch i386 -arch ppc” LDFLAGS=”-arch i386 -arch ppc” ./configure –-prefix=/usr –-sysconfdir=/etc –localstatedir=/var –-mandir=/usr/share/man –-enable-shared –-enable-static

That should do it,
Mark</description>
		<content:encoded><![CDATA[<p>Peter,</p>
<p>All of the curly quotes need to be re-typed as just normal double quotes. Similarly, the dashes need to be re-typed as minus signs respectively. For whatever reason the cut and paste formatting here is all messed. Additionally, you will want to change the single dashed flags - to double dashes &#8211;. I am specifically referring to the arguments that look like this after a cut and paste:</p>
<p>env CFLAGS=”-O -g -arch i386 -arch ppc” LDFLAGS=”-arch i386 -arch ppc” ./configure –prefix=/usr –sysconfdir=/etc –localstatedir=/var –mandir=/usr/share/man –enable-shared –enable-static</p>
<p>Change them to look like this:</p>
<p>env CFLAGS=”-O -g -arch i386 -arch ppc” LDFLAGS=”-arch i386 -arch ppc” ./configure –-prefix=/usr –-sysconfdir=/etc –localstatedir=/var –-mandir=/usr/share/man –-enable-shared –-enable-static</p>
<p>That should do it,<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-1918</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Sun, 23 Dec 2007 09:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-1918</guid>
		<description>Hi Cris,

Thanks for the quick reply!

I will try MAMP as you suggested.

Have some happy holidays</description>
		<content:encoded><![CDATA[<p>Hi Cris,</p>
<p>Thanks for the quick reply!</p>
<p>I will try MAMP as you suggested.</p>
<p>Have some happy holidays</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-1916</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Sun, 23 Dec 2007 06:16:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-1916</guid>
		<description>Peter,

Follow these instructions: http://stringfoo.com/2007/11/07/mamp-setup-leopard/</description>
		<content:encoded><![CDATA[<p>Peter,</p>
<p>Follow these instructions: <a href="http://stringfoo.com/2007/11/07/mamp-setup-leopard/" rel="nofollow">http://stringfoo.com/2007/11/07/mamp-setup-leopard/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-1915</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Sun, 23 Dec 2007 06:01:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-1915</guid>
		<description>Peter,

I haven't actually tried these instructions myself - too much trouble when I have a perfectly good Ubuntu machine already running with everything I need. I'd suggest googling for the original source (sorry, I don't have the link off-hand) and seeing if the author has updated it.

Cheers.</description>
		<content:encoded><![CDATA[<p>Peter,</p>
<p>I haven&#8217;t actually tried these instructions myself - too much trouble when I have a perfectly good Ubuntu machine already running with everything I need. I&#8217;d suggest googling for the original source (sorry, I don&#8217;t have the link off-hand) and seeing if the author has updated it.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-1913</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Sat, 22 Dec 2007 21:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.postal-code.com/binarycode/2007/11/12/leopard-also-breaks-php/#comment-1913</guid>
		<description>Hi Cris
I am tryning to follow your instruction but get stuck.

When I run: ./configure –enable-layout=Darwin –enable-mods-shared=all

I get the message: configure: error: invalid variable name: –enable-layout

I am a newbee in unix can you please help me?

Thanks in advance

Peter</description>
		<content:encoded><![CDATA[<p>Hi Cris<br />
I am tryning to follow your instruction but get stuck.</p>
<p>When I run: ./configure –enable-layout=Darwin –enable-mods-shared=all</p>
<p>I get the message: configure: error: invalid variable name: –enable-layout</p>
<p>I am a newbee in unix can you please help me?</p>
<p>Thanks in advance</p>
<p>Peter</p>
]]></content:encoded>
	</item>
</channel>
</rss>
