<?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: rTorrent and wTorrent on OSX</title>
	<atom:link href="http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/</link>
	<description>Shall man be given marvels only when he is beyond all wonder?</description>
	<lastBuildDate>Thu, 18 Feb 2010 04:40:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Haruspex</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-98</link>
		<dc:creator>Haruspex</dc:creator>
		<pubDate>Thu, 18 Feb 2010 04:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-98</guid>
		<description>sudo apxs -Wc,&quot;-arch ppc7400 -arch x86_64 -arch i386&quot; -Wl,&quot;-arch ppc7400 -arch x86_64 -arch i386&quot; -i -a -c -o mod_scgi.so *.c

worked for me, just make sure the quote marks are actually quote marks</description>
		<content:encoded><![CDATA[<p>sudo apxs -Wc,&#8221;-arch ppc7400 -arch x86_64 -arch i386&#8243; -Wl,&#8221;-arch ppc7400 -arch x86_64 -arch i386&#8243; -i -a -c -o mod_scgi.so *.c</p>
<p>worked for me, just make sure the quote marks are actually quote marks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-97</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Sat, 13 Feb 2010 00:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-97</guid>
		<description>on snow, to make the universal binary, I used the following command in the apache2 directory of mod_scgi-1.14

apxs -Wc,&quot;-arch ppc7400 -arch x86_64 -arch i386&quot; -Wl,&quot;-arch ppc7400 -arch x86_64 -arch i386&quot; -i -a -c -o mod_scgi.so *.c</description>
		<content:encoded><![CDATA[<p>on snow, to make the universal binary, I used the following command in the apache2 directory of mod_scgi-1.14</p>
<p>apxs -Wc,&#8221;-arch ppc7400 -arch x86_64 -arch i386&#8243; -Wl,&#8221;-arch ppc7400 -arch x86_64 -arch i386&#8243; -i -a -c -o mod_scgi.so *.c</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-95</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 30 Sep 2009 04:29:13 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-95</guid>
		<description>So, I gave in and trimmed the fat apache binary.  I&#039;m trying to get wTorrent/rTorrent running on a Power Mac G5 with 10.5.8, though, so rather than making a new i386 binary, I made a ppc binary.  So far, so good.  This worked:

sudo lipo ./httpd.fat -thin ppc7400 -output ./httpd.ppc7400
sudo ln -s ./httpd.ppc7400 ./httpd

Oddly enough, my binary only has two architectures:

$ file httpd-1.3
httpd-1.3: Mach-O universal binary with 2 architectures
httpd-1.3 (for architecture i386):	Mach-O executable i386
httpd-1.3 (for architecture ppc7400):	Mach-O executable ppc

So, I couldn&#039;t have tried 32-bit PowerPC, even if I wanted to.

Unfortunately, when starting apache with the mod_scgi module enabled, I get this error:

httpd: Syntax error on line 172 of /private/etc/apache2/httpd.conf: Can&#039;t locate API module structure `mod_scgi&#039; in file /usr/libexec/apache2/mod_scgi.so: dlsym(0x111210, mod_scgi): symbol not found

Any idea at all?  I can&#039;t find anything for this error on Google.  Line 172 of httpd.conf just enables/disables mod_scgi, nothing more.  Heck, Server Admin created that line, not me.

Besides this, I guess the only thing left I can try to get wTorrent working is to install lighttpd, but that seems like a tremendous task to me.  Help?</description>
		<content:encoded><![CDATA[<p>So, I gave in and trimmed the fat apache binary.  I&#8217;m trying to get wTorrent/rTorrent running on a Power Mac G5 with 10.5.8, though, so rather than making a new i386 binary, I made a ppc binary.  So far, so good.  This worked:</p>
<p>sudo lipo ./httpd.fat -thin ppc7400 -output ./httpd.ppc7400<br />
sudo ln -s ./httpd.ppc7400 ./httpd</p>
<p>Oddly enough, my binary only has two architectures:</p>
<p>$ file httpd-1.3<br />
httpd-1.3: Mach-O universal binary with 2 architectures<br />
httpd-1.3 (for architecture i386):	Mach-O executable i386<br />
httpd-1.3 (for architecture ppc7400):	Mach-O executable ppc</p>
<p>So, I couldn&#8217;t have tried 32-bit PowerPC, even if I wanted to.</p>
<p>Unfortunately, when starting apache with the mod_scgi module enabled, I get this error:</p>
<p>httpd: Syntax error on line 172 of /private/etc/apache2/httpd.conf: Can&#8217;t locate API module structure `mod_scgi&#8217; in file /usr/libexec/apache2/mod_scgi.so: dlsym(0&#215;111210, mod_scgi): symbol not found</p>
<p>Any idea at all?  I can&#8217;t find anything for this error on Google.  Line 172 of httpd.conf just enables/disables mod_scgi, nothing more.  Heck, Server Admin created that line, not me.</p>
<p>Besides this, I guess the only thing left I can try to get wTorrent working is to install lighttpd, but that seems like a tremendous task to me.  Help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-94</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 14 Sep 2009 09:54:49 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-94</guid>
		<description>Thanks for getting me this far, but I&#039;m utterly confused.  I&#039;ve managed to install rTorrent on Mac OS X Server 10.5.8.  I can&#039;t seem to find its configuration file, but I haven&#039;t done much digging there.

My bigger problem, though, is installing SCGI.  It sounds like the wTorrent page you link to once contained SCGI installation instructions, but doesn&#039;t anymore.

I&#039;d prefer to use Don&#039;s instructions from the comments, but I can&#039;t get them to work.  Would you still recommend trimming the fat apache binary?  I&#039;m concerned the Mac OS X installer might break this in the future.

I&#039;d really really appreciate it if you could expand on installing SCGI.  That seems to be my stumbling point - I&#039;m not a complete newbie with the command line, but compiling is still pretty foreign to me.

Thank you for an otherwise great tutorial!  I&#039;m really excited to get this working.</description>
		<content:encoded><![CDATA[<p>Thanks for getting me this far, but I&#8217;m utterly confused.  I&#8217;ve managed to install rTorrent on Mac OS X Server 10.5.8.  I can&#8217;t seem to find its configuration file, but I haven&#8217;t done much digging there.</p>
<p>My bigger problem, though, is installing SCGI.  It sounds like the wTorrent page you link to once contained SCGI installation instructions, but doesn&#8217;t anymore.</p>
<p>I&#8217;d prefer to use Don&#8217;s instructions from the comments, but I can&#8217;t get them to work.  Would you still recommend trimming the fat apache binary?  I&#8217;m concerned the Mac OS X installer might break this in the future.</p>
<p>I&#8217;d really really appreciate it if you could expand on installing SCGI.  That seems to be my stumbling point &#8211; I&#8217;m not a complete newbie with the command line, but compiling is still pretty foreign to me.</p>
<p>Thank you for an otherwise great tutorial!  I&#8217;m really excited to get this working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-92</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Mon, 07 Sep 2009 14:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-92</guid>
		<description>I haven&#039;t been able to upgrade my server to snow leopard yet, but I&#039;ll update the guide as soon as I do.  I&#039;m curious to see how the new 64 bit kernel effects the binaries, like apache, to see whether they still need to be lipo&#039;d.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t been able to upgrade my server to snow leopard yet, but I&#8217;ll update the guide as soon as I do.  I&#8217;m curious to see how the new 64 bit kernel effects the binaries, like apache, to see whether they still need to be lipo&#8217;d.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-91</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 02 Sep 2009 17:11:59 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-91</guid>
		<description>updated guide for Snow Leopard?</description>
		<content:encoded><![CDATA[<p>updated guide for Snow Leopard?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-82</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Thu, 19 Feb 2009 21:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-82</guid>
		<description>Thanks for the make file don, that really helps to preserve the setup even with future (most likely) universal updates to apache from Apple.  For any others looking to head down that path if you want to further automate the make process you can add the &quot;-a&quot; flag after &quot;-i&quot; in the install_universal make command and apxs will automatically add LoadModule entries to your httpd.conf.</description>
		<content:encoded><![CDATA[<p>Thanks for the make file don, that really helps to preserve the setup even with future (most likely) universal updates to apache from Apple.  For any others looking to head down that path if you want to further automate the make process you can add the &#8220;-a&#8221; flag after &#8220;-i&#8221; in the install_universal make command and apxs will automatically add LoadModule entries to your httpd.conf.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: don rikter</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-72</link>
		<dc:creator>don rikter</dc:creator>
		<pubDate>Tue, 21 Oct 2008 20:49:47 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-72</guid>
		<description>sorry for the double post but i found the 1.13 release which compiles from here:
http://python.ca/scgi/
also I found a modified Makefile to use rather than lipo&#039;ing the fat binary:
http://osdir.com/ml/python.qp/2008-07/msg00000.html

APXS=apxs

# Extra args for building a multi-architecture version OS X 10.5.
UNIVERSAL=&quot;-arch ppc7400 -arch ppc64 -arch i386 -arch x86_64&quot;

all:
        $(APXS) -c mod_scgi.c

install:
        $(APXS) -i -c mod_scgi.c

universal:
        $(APXS) -c -Wl,$(UNIVERSAL) -Wc,$(UNIVERSAL) mod_scgi.c

install_universal:
        $(APXS) -i -c -Wl,$(UNIVERSAL) -Wc,$(UNIVERSAL) mod_scgi.c

clean:
        rm -rf mod_scgi.o mod_scgi.lo mod_scgi.slo mod_scgi.la .libs</description>
		<content:encoded><![CDATA[<p>sorry for the double post but i found the 1.13 release which compiles from here:<br />
<a href="http://python.ca/scgi/" rel="nofollow">http://python.ca/scgi/</a><br />
also I found a modified Makefile to use rather than lipo&#8217;ing the fat binary:<br />
<a href="http://osdir.com/ml/python.qp/2008-07/msg00000.html" rel="nofollow">http://osdir.com/ml/python.qp/2008-07/msg00000.html</a></p>
<p>APXS=apxs</p>
<p># Extra args for building a multi-architecture version OS X 10.5.<br />
UNIVERSAL=&#8221;-arch ppc7400 -arch ppc64 -arch i386 -arch x86_64&#8243;</p>
<p>all:<br />
        $(APXS) -c mod_scgi.c</p>
<p>install:<br />
        $(APXS) -i -c mod_scgi.c</p>
<p>universal:<br />
        $(APXS) -c -Wl,$(UNIVERSAL) -Wc,$(UNIVERSAL) mod_scgi.c</p>
<p>install_universal:<br />
        $(APXS) -i -c -Wl,$(UNIVERSAL) -Wc,$(UNIVERSAL) mod_scgi.c</p>
<p>clean:<br />
        rm -rf mod_scgi.o mod_scgi.lo mod_scgi.slo mod_scgi.la .libs</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: don rikter</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-71</link>
		<dc:creator>don rikter</dc:creator>
		<pubDate>Tue, 21 Oct 2008 18:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-71</guid>
		<description>I&#039;ve managed to get rtorrent installed with macports along with xmlrpc-c, but mod_scgi is failing on my 10.5.5.  I got the source from here: http://www.mems-exchange.org/software/files/mod_scgi/scgi-1.9.tar.gz  

since I couldn&#039;t find a macport.

but my vanilla 10.5.5 has a mod_scgi_pubsub.so is mod_scgi already installed and/or is there a package already modified to compile on 10.5.5?  

Thanks,
Don</description>
		<content:encoded><![CDATA[<p>I&#8217;ve managed to get rtorrent installed with macports along with xmlrpc-c, but mod_scgi is failing on my 10.5.5.  I got the source from here: <a href="http://www.mems-exchange.org/software/files/mod_scgi/scgi-1.9.tar.gz" rel="nofollow">http://www.mems-exchange.org/software/files/mod_scgi/scgi-1.9.tar.gz</a>  </p>
<p>since I couldn&#8217;t find a macport.</p>
<p>but my vanilla 10.5.5 has a mod_scgi_pubsub.so is mod_scgi already installed and/or is there a package already modified to compile on 10.5.5?  </p>
<p>Thanks,<br />
Don</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Casual Norb</title>
		<link>http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/comment-page-1/#comment-49</link>
		<dc:creator>Casual Norb</dc:creator>
		<pubDate>Mon, 25 Aug 2008 20:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://multipleentendre.com/rtorrent-and-wtorrent-on-osx/#comment-49</guid>
		<description>If you did a search/replace of DIR_DOWNLOAD with &quot;/&quot; in wtorrent/cls/rtorrent.cls.php, would that result in a combination of no errors, correct disk space reporting, and not having to type out the data location manually whenever you add a torrent?

I&#039;d test it, but I&#039;m not running it on a Mac :p</description>
		<content:encoded><![CDATA[<p>If you did a search/replace of DIR_DOWNLOAD with &#8220;/&#8221; in wtorrent/cls/rtorrent.cls.php, would that result in a combination of no errors, correct disk space reporting, and not having to type out the data location manually whenever you add a torrent?</p>
<p>I&#8217;d test it, but I&#8217;m not running it on a Mac :p</p>
]]></content:encoded>
	</item>
</channel>
</rss>
