<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Weez.com &#187; installing</title>
	<atom:link href="http://www.weez.com/tag/installing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weez.com</link>
	<description>Solving everyday practical LAMP problems... one at a time</description>
	<lastBuildDate>Sat, 11 Feb 2012 03:24:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>David Shrewsbury: Installing Drizzle from Source on OS X</title>
		<link>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</link>
		<comments>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 21:09:15 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Drizzle]]></category>
		<category><![CDATA[David]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[Shrewsbury]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</guid>
		<description><![CDATA[Installing Drizzle on OS X 10.6 is pretty simple. We have a page on our wiki that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&#160;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Drizzle on OS X 10.6 is pretty simple. <a href="http://wiki.drizzle.org/Compiling/MacOS_X">We have a page on our wiki</a> that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&nbsp;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use that version anymore, so YMMV with these instructions. Also, these instructions assume that you have the Xcode package already installed. I have Xcode 4 installed, but these instructions should work with Xcode 3, too. If they don&#8217;t, let me know.</p>
<p>I used to use MacPorts on my Macs to install the necessary libraries that are needed by Drizzle. I&#8217;ve recently dumped that because I didn&#8217;t like all of the extra stuff that was installed (do you <i>really</i>&nbsp;need to install a separate Perl installation?). And a recent b0rk of their Perl installations was the final straw.</p>
<p>It turns out that all you really need are just a few extra packages to build Drizzle on your Mac. Here are the packages that I currently have installed on my machines:</p>
<ul>
<li><a href="http://www.gnu.org/software/autoconf/">autoconf</a></li>
<li><a href="http://www.gnu.org/software/automake/">automake</a></li>
<li><a href="http://www.gnu.org/software/libtool/">libtool</a></li>
<li><a href="http://www.pcre.org/">pcre</a></li>
<li><a href="http://www.boost.org/users/download/">boost</a></li>
<li><a href="http://code.google.com/p/protobuf/downloads/list">protobuf</a></li>
</ul>
<div>The first three (autoconf, automake, and libtool) aren&#8217;t strictly necessary. I install those because I want newer versions of those tools than what OS X provides by default. It makes building a little bit nicer (the output is much cleaner). The last three are what you really need.</div>
<div></div>
<div>Each package has its own instructions for how to compile and install. I use the default installation path (/usr/local) for each. Basically, building and installing for each is simply:</div>
<div>
<ul>
<li>./configure</li>
<li>make</li>
<li>sudo make install</li>
</ul>
<div>The Boost package is the lone exception:</div>
</div>
<div>
<ul>
<li>./bootstrap.sh</li>
<li>./bjam</li>
<li>sudo ./bjam install</li>
</ul>
<div>If you install the <i>libtool</i>&nbsp;package, there is one additional step you should do. That package installs the binaries <i>libtool</i>&nbsp;and <i>libtoolize</i>&nbsp;into /usr/local/bin. I rename these to <i>glibtool</i>&nbsp;and <i>glibtoolize</i>, respectively. The Drizzle build system looks for these program names.</div>
</div>
<div></div>
<div>The last thing I do is to make sure that /usr/local/bin is in my path. So in <i>$HOME/.bash_profile</i>, I have this line:</div>
<blockquote><p>export PATH=/usr/local/bin:$PATH</p></blockquote>
<p>With all that in place, to build Drizzle is just:</p>
<ul>
<li>./config/autorun.sh</li>
<li>./configure</li>
</ul>
<div>No need to add any extra options to <i>configure</i>&nbsp;to find libraries.</div>
<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3514705510593466065-7097639777431127330?l=dshrewsbury.blogspot.com" alt="" /></div>
<p>View full post on <a href="http://dshrewsbury.blogspot.com/2011/03/installing-drizzle-from-source-on-os-x.html">Planet Drizzle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>David Shrewsbury: Installing Drizzle from Source on OS X</title>
		<link>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</link>
		<comments>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 21:09:15 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Drizzle]]></category>
		<category><![CDATA[David]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[Shrewsbury]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</guid>
		<description><![CDATA[Installing Drizzle on OS X 10.6 is pretty simple. We have a page on our wiki that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&#160;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Drizzle on OS X 10.6 is pretty simple. <a href="http://wiki.drizzle.org/Compiling/MacOS_X">We have a page on our wiki</a> that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&nbsp;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use that version anymore, so YMMV with these instructions. Also, these instructions assume that you have the Xcode package already installed. I have Xcode 4 installed, but these instructions should work with Xcode 3, too. If they don&#8217;t, let me know.</p>
<p>I used to use MacPorts on my Macs to install the necessary libraries that are needed by Drizzle. I&#8217;ve recently dumped that because I didn&#8217;t like all of the extra stuff that was installed (do you <i>really</i>&nbsp;need to install a separate Perl installation?). And a recent b0rk of their Perl installations was the final straw.</p>
<p>It turns out that all you really need are just a few extra packages to build Drizzle on your Mac. Here are the packages that I currently have installed on my machines:</p>
<ul>
<li><a href="http://www.gnu.org/software/autoconf/">autoconf</a></li>
<li><a href="http://www.gnu.org/software/automake/">automake</a></li>
<li><a href="http://www.gnu.org/software/libtool/">libtool</a></li>
<li><a href="http://www.pcre.org/">pcre</a></li>
<li><a href="http://www.boost.org/users/download/">boost</a></li>
<li><a href="http://code.google.com/p/protobuf/downloads/list">protobuf</a></li>
</ul>
<div>The first three (autoconf, automake, and libtool) aren&#8217;t strictly necessary. I install those because I want newer versions of those tools than what OS X provides by default. It makes building a little bit nicer (the output is much cleaner). The last three are what you really need.</div>
<div></div>
<div>Each package has its own instructions for how to compile and install. I use the default installation path (/usr/local) for each. Basically, building and installing for each is simply:</div>
<div>
<ul>
<li>./configure</li>
<li>make</li>
<li>sudo make install</li>
</ul>
<div>The Boost package is the lone exception:</div>
</div>
<div>
<ul>
<li>./bootstrap.sh</li>
<li>./bjam</li>
<li>sudo ./bjam install</li>
</ul>
<div>If you install the <i>libtool</i>&nbsp;package, there is one additional step you should do. That package installs the binaries <i>libtool</i>&nbsp;and <i>libtoolize</i>&nbsp;into /usr/local/bin. I rename these to <i>glibtool</i>&nbsp;and <i>glibtoolize</i>, respectively. The Drizzle build system looks for these program names.</div>
</div>
<div></div>
<div>The last thing I do is to make sure that /usr/local/bin is in my path. So in <i>$HOME/.bash_profile</i>, I have this line:</div>
<blockquote><p>export PATH=/usr/local/bin:$PATH</p></blockquote>
<p>With all that in place, to build Drizzle is just:</p>
<ul>
<li>./config/autorun.sh</li>
<li>./configure</li>
</ul>
<div>No need to add any extra options to <i>configure</i>&nbsp;to find libraries.</div>
<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3514705510593466065-7097639777431127330?l=dshrewsbury.blogspot.com" alt="" /></div>
<p>View full post on <a href="http://dshrewsbury.blogspot.com/2011/03/installing-drizzle-from-source-on-os-x.html">Planet Drizzle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>David Shrewsbury: Installing Drizzle from Source on OS X</title>
		<link>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</link>
		<comments>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 21:09:15 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Drizzle]]></category>
		<category><![CDATA[David]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[Shrewsbury]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</guid>
		<description><![CDATA[Installing Drizzle on OS X 10.6 is pretty simple. We have a page on our wiki that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&#160;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Drizzle on OS X 10.6 is pretty simple. <a href="http://wiki.drizzle.org/Compiling/MacOS_X">We have a page on our wiki</a> that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&nbsp;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use that version anymore, so YMMV with these instructions. Also, these instructions assume that you have the Xcode package already installed. I have Xcode 4 installed, but these instructions should work with Xcode 3, too. If they don&#8217;t, let me know.</p>
<p>I used to use MacPorts on my Macs to install the necessary libraries that are needed by Drizzle. I&#8217;ve recently dumped that because I didn&#8217;t like all of the extra stuff that was installed (do you <i>really</i>&nbsp;need to install a separate Perl installation?). And a recent b0rk of their Perl installations was the final straw.</p>
<p>It turns out that all you really need are just a few extra packages to build Drizzle on your Mac. Here are the packages that I currently have installed on my machines:</p>
<ul>
<li><a href="http://www.gnu.org/software/autoconf/">autoconf</a></li>
<li><a href="http://www.gnu.org/software/automake/">automake</a></li>
<li><a href="http://www.gnu.org/software/libtool/">libtool</a></li>
<li><a href="http://www.pcre.org/">pcre</a></li>
<li><a href="http://www.boost.org/users/download/">boost</a></li>
<li><a href="http://code.google.com/p/protobuf/downloads/list">protobuf</a></li>
</ul>
<div>The first three (autoconf, automake, and libtool) aren&#8217;t strictly necessary. I install those because I want newer versions of those tools than what OS X provides by default. It makes building a little bit nicer (the output is much cleaner). The last three are what you really need.</div>
<div></div>
<div>Each package has its own instructions for how to compile and install. I use the default installation path (/usr/local) for each. Basically, building and installing for each is simply:</div>
<div>
<ul>
<li>./configure</li>
<li>make</li>
<li>sudo make install</li>
</ul>
<div>The Boost package is the lone exception:</div>
</div>
<div>
<ul>
<li>./bootstrap.sh</li>
<li>./bjam</li>
<li>sudo ./bjam install</li>
</ul>
<div>If you install the <i>libtool</i>&nbsp;package, there is one additional step you should do. That package installs the binaries <i>libtool</i>&nbsp;and <i>libtoolize</i>&nbsp;into /usr/local/bin. I rename these to <i>glibtool</i>&nbsp;and <i>glibtoolize</i>, respectively. The Drizzle build system looks for these program names.</div>
</div>
<div></div>
<div>The last thing I do is to make sure that /usr/local/bin is in my path. So in <i>$HOME/.bash_profile</i>, I have this line:</div>
<blockquote><p>export PATH=/usr/local/bin:$PATH</p></blockquote>
<p>With all that in place, to build Drizzle is just:</p>
<ul>
<li>./config/autorun.sh</li>
<li>./configure</li>
</ul>
<div>No need to add any extra options to <i>configure</i>&nbsp;to find libraries.</div>
<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3514705510593466065-7097639777431127330?l=dshrewsbury.blogspot.com" alt="" /></div>
<p>View full post on <a href="http://dshrewsbury.blogspot.com/2011/03/installing-drizzle-from-source-on-os-x.html">Planet Drizzle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>David Shrewsbury: Installing Drizzle from Source on OS X</title>
		<link>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</link>
		<comments>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 21:09:15 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Drizzle]]></category>
		<category><![CDATA[David]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[Shrewsbury]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</guid>
		<description><![CDATA[Installing Drizzle on OS X 10.6 is pretty simple. We have a page on our wiki that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&#160;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Drizzle on OS X 10.6 is pretty simple. <a href="http://wiki.drizzle.org/Compiling/MacOS_X">We have a page on our wiki</a> that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&nbsp;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use that version anymore, so YMMV with these instructions. Also, these instructions assume that you have the Xcode package already installed. I have Xcode 4 installed, but these instructions should work with Xcode 3, too. If they don&#8217;t, let me know.</p>
<p>I used to use MacPorts on my Macs to install the necessary libraries that are needed by Drizzle. I&#8217;ve recently dumped that because I didn&#8217;t like all of the extra stuff that was installed (do you <i>really</i>&nbsp;need to install a separate Perl installation?). And a recent b0rk of their Perl installations was the final straw.</p>
<p>It turns out that all you really need are just a few extra packages to build Drizzle on your Mac. Here are the packages that I currently have installed on my machines:</p>
<ul>
<li><a href="http://www.gnu.org/software/autoconf/">autoconf</a></li>
<li><a href="http://www.gnu.org/software/automake/">automake</a></li>
<li><a href="http://www.gnu.org/software/libtool/">libtool</a></li>
<li><a href="http://www.pcre.org/">pcre</a></li>
<li><a href="http://www.boost.org/users/download/">boost</a></li>
<li><a href="http://code.google.com/p/protobuf/downloads/list">protobuf</a></li>
</ul>
<div>The first three (autoconf, automake, and libtool) aren&#8217;t strictly necessary. I install those because I want newer versions of those tools than what OS X provides by default. It makes building a little bit nicer (the output is much cleaner). The last three are what you really need.</div>
<div></div>
<div>Each package has its own instructions for how to compile and install. I use the default installation path (/usr/local) for each. Basically, building and installing for each is simply:</div>
<div>
<ul>
<li>./configure</li>
<li>make</li>
<li>sudo make install</li>
</ul>
<div>The Boost package is the lone exception:</div>
</div>
<div>
<ul>
<li>./bootstrap.sh</li>
<li>./bjam</li>
<li>sudo ./bjam install</li>
</ul>
<div>If you install the <i>libtool</i>&nbsp;package, there is one additional step you should do. That package installs the binaries <i>libtool</i>&nbsp;and <i>libtoolize</i>&nbsp;into /usr/local/bin. I rename these to <i>glibtool</i>&nbsp;and <i>glibtoolize</i>, respectively. The Drizzle build system looks for these program names.</div>
</div>
<div></div>
<div>The last thing I do is to make sure that /usr/local/bin is in my path. So in <i>$HOME/.bash_profile</i>, I have this line:</div>
<blockquote><p>export PATH=/usr/local/bin:$PATH</p></blockquote>
<p>With all that in place, to build Drizzle is just:</p>
<ul>
<li>./config/autorun.sh</li>
<li>./configure</li>
</ul>
<div>No need to add any extra options to <i>configure</i>&nbsp;to find libraries.</div>
<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3514705510593466065-7097639777431127330?l=dshrewsbury.blogspot.com" alt="" /></div>
<p>View full post on <a href="http://dshrewsbury.blogspot.com/2011/03/installing-drizzle-from-source-on-os-x.html">Planet Drizzle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>David Shrewsbury: Installing Drizzle from Source on OS X</title>
		<link>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</link>
		<comments>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 21:09:15 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Drizzle]]></category>
		<category><![CDATA[David]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[Shrewsbury]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</guid>
		<description><![CDATA[Installing Drizzle on OS X 10.6 is pretty simple. We have a page on our wiki that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&#160;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Drizzle on OS X 10.6 is pretty simple. <a href="http://wiki.drizzle.org/Compiling/MacOS_X">We have a page on our wiki</a> that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&nbsp;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use that version anymore, so YMMV with these instructions. Also, these instructions assume that you have the Xcode package already installed. I have Xcode 4 installed, but these instructions should work with Xcode 3, too. If they don&#8217;t, let me know.</p>
<p>I used to use MacPorts on my Macs to install the necessary libraries that are needed by Drizzle. I&#8217;ve recently dumped that because I didn&#8217;t like all of the extra stuff that was installed (do you <i>really</i>&nbsp;need to install a separate Perl installation?). And a recent b0rk of their Perl installations was the final straw.</p>
<p>It turns out that all you really need are just a few extra packages to build Drizzle on your Mac. Here are the packages that I currently have installed on my machines:</p>
<ul>
<li><a href="http://www.gnu.org/software/autoconf/">autoconf</a></li>
<li><a href="http://www.gnu.org/software/automake/">automake</a></li>
<li><a href="http://www.gnu.org/software/libtool/">libtool</a></li>
<li><a href="http://www.pcre.org/">pcre</a></li>
<li><a href="http://www.boost.org/users/download/">boost</a></li>
<li><a href="http://code.google.com/p/protobuf/downloads/list">protobuf</a></li>
</ul>
<div>The first three (autoconf, automake, and libtool) aren&#8217;t strictly necessary. I install those because I want newer versions of those tools than what OS X provides by default. It makes building a little bit nicer (the output is much cleaner). The last three are what you really need.</div>
<div></div>
<div>Each package has its own instructions for how to compile and install. I use the default installation path (/usr/local) for each. Basically, building and installing for each is simply:</div>
<div>
<ul>
<li>./configure</li>
<li>make</li>
<li>sudo make install</li>
</ul>
<div>The Boost package is the lone exception:</div>
</div>
<div>
<ul>
<li>./bootstrap.sh</li>
<li>./bjam</li>
<li>sudo ./bjam install</li>
</ul>
<div>If you install the <i>libtool</i>&nbsp;package, there is one additional step you should do. That package installs the binaries <i>libtool</i>&nbsp;and <i>libtoolize</i>&nbsp;into /usr/local/bin. I rename these to <i>glibtool</i>&nbsp;and <i>glibtoolize</i>, respectively. The Drizzle build system looks for these program names.</div>
</div>
<div></div>
<div>The last thing I do is to make sure that /usr/local/bin is in my path. So in <i>$HOME/.bash_profile</i>, I have this line:</div>
<blockquote><p>export PATH=/usr/local/bin:$PATH</p></blockquote>
<p>With all that in place, to build Drizzle is just:</p>
<ul>
<li>./config/autorun.sh</li>
<li>./configure</li>
</ul>
<div>No need to add any extra options to <i>configure</i>&nbsp;to find libraries.</div>
<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3514705510593466065-7097639777431127330?l=dshrewsbury.blogspot.com" alt="" /></div>
<p>View full post on <a href="http://dshrewsbury.blogspot.com/2011/03/installing-drizzle-from-source-on-os-x.html">Planet Drizzle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>David Shrewsbury: Installing Drizzle from Source on OS X</title>
		<link>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</link>
		<comments>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 21:09:15 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Drizzle]]></category>
		<category><![CDATA[David]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[Shrewsbury]]></category>
		<category><![CDATA[Source]]></category>

		<guid isPermaLink="false">http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/</guid>
		<description><![CDATA[Installing Drizzle on OS X 10.6 is pretty simple. We have a page on our wiki that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&#160;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Drizzle on OS X 10.6 is pretty simple. <a href="http://wiki.drizzle.org/Compiling/MacOS_X">We have a page on our wiki</a> that has the basic steps, but I thought that I&#8217;d detail what I do on my Macs in the hope that it may make someone&#8217;s life easier.&nbsp;Note that we don&#8217;t build on any 10.5 machines, and I don&#8217;t use that version anymore, so YMMV with these instructions. Also, these instructions assume that you have the Xcode package already installed. I have Xcode 4 installed, but these instructions should work with Xcode 3, too. If they don&#8217;t, let me know.</p>
<p>I used to use MacPorts on my Macs to install the necessary libraries that are needed by Drizzle. I&#8217;ve recently dumped that because I didn&#8217;t like all of the extra stuff that was installed (do you <i>really</i>&nbsp;need to install a separate Perl installation?). And a recent b0rk of their Perl installations was the final straw.</p>
<p>It turns out that all you really need are just a few extra packages to build Drizzle on your Mac. Here are the packages that I currently have installed on my machines:</p>
<ul>
<li><a href="http://www.gnu.org/software/autoconf/">autoconf</a></li>
<li><a href="http://www.gnu.org/software/automake/">automake</a></li>
<li><a href="http://www.gnu.org/software/libtool/">libtool</a></li>
<li><a href="http://www.pcre.org/">pcre</a></li>
<li><a href="http://www.boost.org/users/download/">boost</a></li>
<li><a href="http://code.google.com/p/protobuf/downloads/list">protobuf</a></li>
</ul>
<div>The first three (autoconf, automake, and libtool) aren&#8217;t strictly necessary. I install those because I want newer versions of those tools than what OS X provides by default. It makes building a little bit nicer (the output is much cleaner). The last three are what you really need.</div>
<div></div>
<div>Each package has its own instructions for how to compile and install. I use the default installation path (/usr/local) for each. Basically, building and installing for each is simply:</div>
<div>
<ul>
<li>./configure</li>
<li>make</li>
<li>sudo make install</li>
</ul>
<div>The Boost package is the lone exception:</div>
</div>
<div>
<ul>
<li>./bootstrap.sh</li>
<li>./bjam</li>
<li>sudo ./bjam install</li>
</ul>
<div>If you install the <i>libtool</i>&nbsp;package, there is one additional step you should do. That package installs the binaries <i>libtool</i>&nbsp;and <i>libtoolize</i>&nbsp;into /usr/local/bin. I rename these to <i>glibtool</i>&nbsp;and <i>glibtoolize</i>, respectively. The Drizzle build system looks for these program names.</div>
</div>
<div></div>
<div>The last thing I do is to make sure that /usr/local/bin is in my path. So in <i>$HOME/.bash_profile</i>, I have this line:</div>
<blockquote><p>export PATH=/usr/local/bin:$PATH</p></blockquote>
<p>With all that in place, to build Drizzle is just:</p>
<ul>
<li>./config/autorun.sh</li>
<li>./configure</li>
</ul>
<div>No need to add any extra options to <i>configure</i>&nbsp;to find libraries.</div>
<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3514705510593466065-7097639777431127330?l=dshrewsbury.blogspot.com" alt="" /></div>
<p>View full post on <a href="http://dshrewsbury.blogspot.com/2011/03/installing-drizzle-from-source-on-os-x.html">Planet Drizzle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2011/03/david-shrewsbury-installing-drizzle-from-source-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial 1 &#8211; Installing software in Ubuntu 8.04</title>
		<link>http://www.weez.com/2010/09/tutorial-1-installing-software-in-ubuntu-8-04/</link>
		<comments>http://www.weez.com/2010/09/tutorial-1-installing-software-in-ubuntu-8-04/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 21:36:55 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[8.04]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.weez.com/2010/09/tutorial-1-installing-software-in-ubuntu-8-04/</guid>
		<description><![CDATA[This video will show you the basics on how to install software in linux. More in-depth tutorials soon]]></description>
			<content:encoded><![CDATA[<p>					<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Ctaj8kBA1Qo?fs=1"></param><param name="allowFullScreen" value="true"></param>
					<embed src="http://www.youtube.com/v/Ctaj8kBA1Qo?fs=1" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object><br />
This video will show you the basics on how to install software in linux. More in-depth tutorials soon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2010/09/tutorial-1-installing-software-in-ubuntu-8-04/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Installing OpenSuSe 11.1</title>
		<link>http://www.weez.com/2010/08/installing-opensuse-11-1/</link>
		<comments>http://www.weez.com/2010/08/installing-opensuse-11-1/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 03:18:52 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[11.1]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://www.weez.com/2010/08/installing-opensuse-11-1/</guid>
		<description><![CDATA[i Can Install Linuxx?????]]></description>
			<content:encoded><![CDATA[<p>					<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/OQ-PeKEv8Uc?fs=1"></param><param name="allowFullScreen" value="true"></param>
					<embed src="http://www.youtube.com/v/OQ-PeKEv8Uc?fs=1" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object><br />
i Can Install Linuxx?????</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2010/08/installing-opensuse-11-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installing Debian on the N900</title>
		<link>http://www.weez.com/2010/08/installing-debian-on-the-n900/</link>
		<comments>http://www.weez.com/2010/08/installing-debian-on-the-n900/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 17:23:06 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[N900]]></category>

		<guid isPermaLink="false">http://www.weez.com/2010/08/installing-debian-on-the-n900/</guid>
		<description><![CDATA[Installing Debian on the N900. FilmsByKris.com WARNING!!! I say in the video that you can use Debain and since it&#8217;s in a chroot you don&#8217;t need to worry about screwing up your Maemo OS. This is mostly true. But, you can still access your Maemo OS partition so you can still screw files up. So, [...]]]></description>
			<content:encoded><![CDATA[<p>					<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/U6zNfBczub8?fs=1"></param><param name="allowFullScreen" value="true"></param>
					<embed src="http://www.youtube.com/v/U6zNfBczub8?fs=1" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object><br />
Installing Debian on the N900. FilmsByKris.com WARNING!!! I say in the video that you can use Debain and since it&#8217;s in a chroot you don&#8217;t need to worry about screwing up your Maemo OS. This is mostly true. But, you can still access your Maemo OS partition so you can still screw files up. So, still be careful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2010/08/installing-debian-on-the-n900/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>A walkthrough installing Ubuntu Linux</title>
		<link>http://www.weez.com/2010/08/a-walkthrough-installing-ubuntu-linux/</link>
		<comments>http://www.weez.com/2010/08/a-walkthrough-installing-ubuntu-linux/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 15:43:29 +0000</pubDate>
		<dc:creator>Abidoon</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Walkthrough]]></category>

		<guid isPermaLink="false">http://www.weez.com/2010/08/a-walkthrough-installing-ubuntu-linux/</guid>
		<description><![CDATA[Beyourownit shows you step by step how to install one of the most popular Linux distributions. Find more helpful videos and our Computer Repair Home Study Course at www.beyourownit.com]]></description>
			<content:encoded><![CDATA[<p>					<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/UFoK6Oycsrg?fs=1"></param><param name="allowFullScreen" value="true"></param>
					<embed src="http://www.youtube.com/v/UFoK6Oycsrg?fs=1" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object><br />
Beyourownit shows you step by step how to install one of the most popular Linux distributions. Find more helpful videos and our Computer Repair Home Study Course at www.beyourownit.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weez.com/2010/08/a-walkthrough-installing-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

