<?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: MySQL with Sphinx storage engine</title>
	<atom:link href="http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/feed/" rel="self" type="application/rss+xml" />
	<link>http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/</link>
	<description>de arte technologiæ</description>
	<lastBuildDate>Fri, 26 Feb 2010 18:12:34 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Craig Burton</title>
		<link>http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/comment-page-1/#comment-5661</link>
		<dc:creator>Craig Burton</dc:creator>
		<pubDate>Tue, 18 Aug 2009 13:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://mark.ossdl.de/?p=247#comment-5661</guid>
		<description>Sorry Mark, scrap that. Found your link. Should look more carefully lol!</description>
		<content:encoded><![CDATA[<p>Sorry Mark, scrap that. Found your link. Should look more carefully lol!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Burton</title>
		<link>http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/comment-page-1/#comment-5660</link>
		<dc:creator>Craig Burton</dc:creator>
		<pubDate>Tue, 18 Aug 2009 13:19:01 +0000</pubDate>
		<guid isPermaLink="false">http://mark.ossdl.de/?p=247#comment-5660</guid>
		<description>Hi marl, you mention you have compiled a 32 bit version, where is the downloads page?

Thanks
Craig</description>
		<content:encoded><![CDATA[<p>Hi marl, you mention you have compiled a 32 bit version, where is the downloads page?</p>
<p>Thanks<br />
Craig</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark</title>
		<link>http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/comment-page-1/#comment-5353</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Wed, 29 Jul 2009 10:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://mark.ossdl.de/?p=247#comment-5353</guid>
		<description>Manoj, I&#039;ve compiled 32bit versions for you. See the downloads page.</description>
		<content:encoded><![CDATA[<p>Manoj, I&#8217;ve compiled 32bit versions for you. See the downloads page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark</title>
		<link>http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/comment-page-1/#comment-5189</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Sun, 19 Jul 2009 14:41:23 +0000</pubDate>
		<guid isPermaLink="false">http://mark.ossdl.de/?p=247#comment-5189</guid>
		<description>Renz, your tip is good, installing a GNU system with 64bit libraries only spares the admin a lot headaches due to incompatibilities. I&#039;ve found compiling packages with &lt;code&gt;--with-pic&lt;/code&gt; solves some issues, too.

BTW, my MySQL build instructions do look like these (I prefer Gentoo, but these are for OpenSuSE):
&lt;pre class=&quot;brush: bash&quot;&gt;
# replace these with settings suitable for your architecture:
export CHOST=&quot;x86_64-pc-linux-gnu&quot;
export CFLAGS=&quot;-march=k8 -O3 -pipe -mno-tls-direct-seg-refs -fomit-frame-pointer -fno-exceptions&quot;
export CXXFLAGS=&quot;${CFLAGS} -felide-constructors -fno-rtti&quot;
export SRCS=&quot;/usr/src/packages/SOURCES&quot;

cd /tmp
tar -xzf ${SRCS}/sphinx-*.tar.gz
tar -xzf ${SRCS}/sourcecode/mysql-5.4*.tar.gz
cd /tmp/mysql*
cp -ra ../sphinx-*/mysqlse storage/sphinx

patch -p1 &lt; ${SRCS}/kubacki_-_mysql-5.4.1-beta_fnv_64.patch
patch -p1 &lt; ${SRCS}/kubacki_-_mysql_sphinx_additional_settings.patch

BUILD/autorun.sh \
&amp;&amp; ./configure \
--prefix=/usr --sysconfdir=/etc --build=x86_64-pc-linux-gnu --cache-file=./config.cache \
--libdir=/usr/lib64 --with-unix-socket-path=/var/run/mysql/mysql.sock \
--enable-assembler --enable-local-infile --enable-thread-safe-client --with-atomic-ops=up --with-pthread \
--with-mysqld-user=mysql --without-bench --without-docs --without-debug \
--with-pic --with-readline \
--with-charset=utf8 --with-extra-charsets=utf8,latin1,ascii \
--with-myisam --with-heap --with-csv --with-archive-storage-engine --with-blackhole-storage-engine --with-partition \
--with-sphinx --with-plugins=sphinx --with-server-suffix=-qkai \
&amp;&amp; make \
&amp;&amp; sudo -- make install
&lt;/pre&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Renz, your tip is good, installing a GNU system with 64bit libraries only spares the admin a lot headaches due to incompatibilities. I&#8217;ve found compiling packages with <code>--with-pic</code> solves some issues, too.</p>
<p>BTW, my MySQL build instructions do look like these (I prefer Gentoo, but these are for OpenSuSE):</p>
<pre class="brush: bash">
# replace these with settings suitable for your architecture:
export CHOST="x86_64-pc-linux-gnu"
export CFLAGS="-march=k8 -O3 -pipe -mno-tls-direct-seg-refs -fomit-frame-pointer -fno-exceptions"
export CXXFLAGS="${CFLAGS} -felide-constructors -fno-rtti"
export SRCS="/usr/src/packages/SOURCES"

cd /tmp
tar -xzf ${SRCS}/sphinx-*.tar.gz
tar -xzf ${SRCS}/sourcecode/mysql-5.4*.tar.gz
cd /tmp/mysql*
cp -ra ../sphinx-*/mysqlse storage/sphinx

patch -p1 < ${SRCS}/kubacki_-_mysql-5.4.1-beta_fnv_64.patch
patch -p1 < ${SRCS}/kubacki_-_mysql_sphinx_additional_settings.patch

BUILD/autorun.sh \
&#038;&#038; ./configure \
--prefix=/usr --sysconfdir=/etc --build=x86_64-pc-linux-gnu --cache-file=./config.cache \
--libdir=/usr/lib64 --with-unix-socket-path=/var/run/mysql/mysql.sock \
--enable-assembler --enable-local-infile --enable-thread-safe-client --with-atomic-ops=up --with-pthread \
--with-mysqld-user=mysql --without-bench --without-docs --without-debug \
--with-pic --with-readline \
--with-charset=utf8 --with-extra-charsets=utf8,latin1,ascii \
--with-myisam --with-heap --with-csv --with-archive-storage-engine --with-blackhole-storage-engine --with-partition \
--with-sphinx --with-plugins=sphinx --with-server-suffix=-qkai \
&#038;&#038; make \
&#038;&#038; sudo -- make install
</pre>
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manoj</title>
		<link>http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/comment-page-1/#comment-5055</link>
		<dc:creator>Manoj</dc:creator>
		<pubDate>Tue, 14 Jul 2009 07:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://mark.ossdl.de/?p=247#comment-5055</guid>
		<description>Hi,

Could you please let me know if you have precompiled binary (MySQL 5.1 + SphinxSE) for 32 bit systems? I am having hard time compiling the sources.

Thanks in advance
Manoj</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Could you please let me know if you have precompiled binary (MySQL 5.1 + SphinxSE) for 32 bit systems? I am having hard time compiling the sources.</p>
<p>Thanks in advance<br />
Manoj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: renz</title>
		<link>http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/comment-page-1/#comment-5019</link>
		<dc:creator>renz</dc:creator>
		<pubDate>Mon, 13 Jul 2009 09:16:39 +0000</pubDate>
		<guid isPermaLink="false">http://mark.ossdl.de/?p=247#comment-5019</guid>
		<description>if you will compile mysql with 64 bit, try to install the 64bit dependency only. example openssl.x86_64  openssl-devel.x86_64

another will be some programs dont detect lib64 or it goes to lib instead so you should add a parameter --with-libdir=/lib64</description>
		<content:encoded><![CDATA[<p>if you will compile mysql with 64 bit, try to install the 64bit dependency only. example openssl.x86_64  openssl-devel.x86_64</p>
<p>another will be some programs dont detect lib64 or it goes to lib instead so you should add a parameter &#8211;with-libdir=/lib64</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark</title>
		<link>http://mark.ossdl.de/2009/05/mysql-with-sphinx-storage-engine/comment-page-1/#comment-2931</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Sat, 09 May 2009 01:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://mark.ossdl.de/?p=247#comment-2931</guid>
		<description>Another source for customized MySQL builds I&#039;ve found is http://ourdelta.org/. Unfortunately it seems to be down at the moment.</description>
		<content:encoded><![CDATA[<p>Another source for customized MySQL builds I&#8217;ve found is <a href="http://ourdelta.org/" rel="nofollow">http://ourdelta.org/</a>. Unfortunately it seems to be down at the moment.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
