<?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: Compiling MySQL, Apache and PHP in 64 bits</title>
	<atom:link href="http://diymacserver.com/2008/09/19/compiling-mysql-apache-and-php-in-64-bits/feed/" rel="self" type="application/rss+xml" />
	<link>http://diymacserver.com/2008/09/19/compiling-mysql-apache-and-php-in-64-bits/</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 16:07:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: vakantieland.nl</title>
		<link>http://diymacserver.com/2008/09/19/compiling-mysql-apache-and-php-in-64-bits/comment-page-1/#comment-2081</link>
		<dc:creator>vakantieland.nl</dc:creator>
		<pubDate>Tue, 23 Sep 2008 12:20:07 +0000</pubDate>
		<guid isPermaLink="false">http://diymacserver.com/?p=202#comment-2081</guid>
		<description>After reading http://dev.mysql.com/doc/refman/4.1/en/configure-options.html
a new configure line was used, that seems to do it&#039;s thing without errors:

CFLAGS=&quot;-arch x86_64 -m64 -O3 -isysroot /Developer/SDKs/MacOSX10.5.sdk&quot; CXX=gcc CXXFLAGS=&quot;-arch x86_64 -m64 -O3 -isysroot /Developer/SDKs/MacOSX10.5.sdk -felide-constructors -fno-exceptions -fno-rtti&quot; ./configure --prefix=/usr/local/mysql --enable-assembler --with-mysqld-ldflags=-all-static --localstatedir=/usr/local/mysql/data --libexecdir=/usr/local/mysql/bin --libdir=/usr/local/mysql/lib --with-server-suffix=-standard --enable-thread-safe-client --enable-local-infile --enable-shared --with-zlib-dir=bundled --with-big-tables --with-readline --with-archive-storage-engine --with-innodb --without-docs --without-bench</description>
		<content:encoded><![CDATA[<p>After reading <a href="http://dev.mysql.com/doc/refman/4.1/en/configure-options.html" rel="nofollow">http://dev.mysql.com/doc/refman/4.1/en/configure-options.html</a><br />
a new configure line was used, that seems to do it&#8217;s thing without errors:</p>
<p>CFLAGS=&#8221;-arch x86_64 -m64 -O3 -isysroot /Developer/SDKs/MacOSX10.5.sdk&#8221; CXX=gcc CXXFLAGS=&#8221;-arch x86_64 -m64 -O3 -isysroot /Developer/SDKs/MacOSX10.5.sdk -felide-constructors -fno-exceptions -fno-rtti&#8221; ./configure &#8211;prefix=/usr/local/mysql &#8211;enable-assembler &#8211;with-mysqld-ldflags=-all-static &#8211;localstatedir=/usr/local/mysql/data &#8211;libexecdir=/usr/local/mysql/bin &#8211;libdir=/usr/local/mysql/lib &#8211;with-server-suffix=-standard &#8211;enable-thread-safe-client &#8211;enable-local-infile &#8211;enable-shared &#8211;with-zlib-dir=bundled &#8211;with-big-tables &#8211;with-readline &#8211;with-archive-storage-engine &#8211;with-innodb &#8211;without-docs &#8211;without-bench</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vakantieland.nl</title>
		<link>http://diymacserver.com/2008/09/19/compiling-mysql-apache-and-php-in-64-bits/comment-page-1/#comment-2075</link>
		<dc:creator>vakantieland.nl</dc:creator>
		<pubDate>Mon, 22 Sep 2008 20:12:51 +0000</pubDate>
		<guid isPermaLink="false">http://diymacserver.com/?p=202#comment-2075</guid>
		<description>Environment: 10.5.5, x86_64, mysql-5.0.67

Due to 10.5, the ./configure line has been changed a little: $ CFLAGS=&quot;-arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk&quot; ./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data --libexecdir=/usr/local/mysql/bin --libdir=/usr/local/mysql/lib --with-server-suffix=-standard --enable-thread-safe-client --enable-local-infile --enable-shared --with-zlib-dir=bundled --with-big-tables --with-readline --with-archive-storage-engine --with-innodb --without-docs --without-bench

The make returns some errors:
---
if gcc -DUNDEF_THREADS_HACK -DHAVE_CONFIG_H -DNO_KILL_INTR -I. -I. -I../../include -I../../include -I../../include -I../..    -DDBUG_OFF -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk   -D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ -DIGNORE_SIGHUP_SIGQUIT -MT bind.o -MD -MP -MF &quot;.deps/bind.Tpo&quot; -c -o bind.o bind.c; \
	then mv -f &quot;.deps/bind.Tpo&quot; &quot;.deps/bind.Po&quot;; else rm -f &quot;.deps/bind.Tpo&quot;; exit 1; fi
bind.c: In function </description>
		<content:encoded><![CDATA[<p>Environment: 10.5.5, x86_64, mysql-5.0.67</p>
<p>Due to 10.5, the ./configure line has been changed a little: $ CFLAGS=&#8221;-arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk&#8221; ./configure &#8211;prefix=/usr/local/mysql &#8211;localstatedir=/usr/local/mysql/data &#8211;libexecdir=/usr/local/mysql/bin &#8211;libdir=/usr/local/mysql/lib &#8211;with-server-suffix=-standard &#8211;enable-thread-safe-client &#8211;enable-local-infile &#8211;enable-shared &#8211;with-zlib-dir=bundled &#8211;with-big-tables &#8211;with-readline &#8211;with-archive-storage-engine &#8211;with-innodb &#8211;without-docs &#8211;without-bench</p>
<p>The make returns some errors:<br />
&#8212;<br />
if gcc -DUNDEF_THREADS_HACK -DHAVE_CONFIG_H -DNO_KILL_INTR -I. -I. -I../../include -I../../include -I../../include -I../..    -DDBUG_OFF -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk   -D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ -DIGNORE_SIGHUP_SIGQUIT -MT bind.o -MD -MP -MF &#8220;.deps/bind.Tpo&#8221; -c -o bind.o bind.c; \<br />
	then mv -f &#8220;.deps/bind.Tpo&#8221; &#8220;.deps/bind.Po&#8221;; else rm -f &#8220;.deps/bind.Tpo&#8221;; exit 1; fi<br />
bind.c: In function</p>
]]></content:encoded>
	</item>
</channel>
</rss>

