<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>DIYMacServer &#187; Tag: Snow Leopard - Recent Topics</title>
<link>http://diymacserver.com/forum/</link>
<description>DIYMacServer &#187; Tag: Snow Leopard - Recent Topics</description>
<language>en</language>
<pubDate>Wed, 08 Feb 2012 07:15:33 +0000</pubDate>

<item>
<title>Michael on "snow leopard and 32 bit apps"</title>
<link>http://diymacserver.com/forum/topic/snow-leopard-and-32-bit-apps#post-814</link>
<pubDate>Sat, 08 May 2010 22:23:12 +0000</pubDate>
<dc:creator>Michael</dc:creator>
<guid isPermaLink="false">814@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hi Richard,&#60;/p&#62;
&#60;p&#62;My Mac Mini is older, but my copy of snow leopard has been burning a hole in my pocket for a while.  I haven't upgraded to it, but I'm starting to think it's time.&#60;/p&#62;
&#60;p&#62;Are there any special things I should know about upgrading to snow leopard and compiling 32 bit apps?  Obviously, I'd want to back up the config files it changes (should've backed it up before now, really...).&#60;/p&#62;
&#60;p&#62;Should I convert from courier to dovecot?  I don't see instructions for doing so, but that could be a bad search on my part...
&#60;/p&#62;</description>
</item>
<item>
<title>zerustech on "Compile Apache+MySQL+php on Snow Leopard"</title>
<link>http://diymacserver.com/forum/topic/compile-apachemysqlphp-on-snow-leopard#post-716</link>
<pubDate>Sun, 27 Sep 2009 06:40:01 +0000</pubDate>
<dc:creator>zerustech</dc:creator>
<guid isPermaLink="false">716@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hi Guys,&#60;/p&#62;
&#60;p&#62;I was trying to compile Apache+MySQL+PHP on Snow Leopard according to the instructions on this website, but unfortunately none of them worked. &#60;/p&#62;
&#60;p&#62;I tried different solutions and finally succeeded. So I'm just posting the instructions here and hopefully it will be helpful to you.&#60;/p&#62;
&#60;p&#62;1. First of all, you should download apache 2.2.13 (the apxs in its previous releases does not work)&#60;/p&#62;
&#60;p&#62;2. Install xcode from Snow Leopard installation DVD (I guess you have already installed)&#60;/p&#62;
&#60;p&#62;3. Install MacPorts and the following port libs:&#60;br /&#62;
- zlib&#60;br /&#62;
- curl&#60;br /&#62;
- xsl&#60;br /&#62;
- gd&#60;br /&#62;
- openjpeg&#60;br /&#62;
- libpng&#60;br /&#62;
- freetype&#60;br /&#62;
- xpm&#60;br /&#62;
- exif&#60;br /&#62;
- libiconv&#60;/p&#62;
&#60;p&#62;4. Compile MySQL (5.1.39) as follows:&#60;/p&#62;
&#60;p&#62;#!/bin/sh&#60;br /&#62;
MYSQLVERSION=&#34;5.1.39&#34;&#60;br /&#62;
MYSQLDIR=&#34;/opt/mysql/$MYSQLVERSION&#34;&#60;br /&#62;
make distclean&#60;br /&#62;
./configure \&#60;br /&#62;
--prefix=$MYSQLDIR \&#60;br /&#62;
--with-server-suffix=--standard \&#60;br /&#62;
--enable-thread-safe-client \&#60;br /&#62;
--enable-local-infile \&#60;br /&#62;
--enable-shared \&#60;br /&#62;
--with-zlib-dir=bundled \&#60;br /&#62;
--with-big-tables \&#60;br /&#62;
--with-readline \&#60;br /&#62;
--with-plugins=all \&#60;br /&#62;
--with-mysqld-user=mysql \&#60;br /&#62;
--with-extra-charsets=all \&#60;br /&#62;
--with-unix-socket-path=$MYSQLDIR/var/mysql.sock \&#60;br /&#62;
--without-docs&#60;br /&#62;
make&#60;br /&#62;
make install&#60;/p&#62;
&#60;p&#62;5. Compile Apache (2.2.13) as follows:&#60;br /&#62;
#!/bin/sh&#60;br /&#62;
APACHEVERSION=&#34;2.2.13&#34;&#60;br /&#62;
APACHEDIR=&#34;/opt/apache/$APACHEVERSION&#34;&#60;br /&#62;
make distclean&#60;br /&#62;
./configure -prefix=$APACHEDIR \&#60;br /&#62;
 -enable-mods-shared=all \&#60;br /&#62;
 -with-ssl \&#60;br /&#62;
 -with-mpm=prefork \&#60;br /&#62;
 -disable-unique-id \&#60;br /&#62;
 -enable-ssl \&#60;br /&#62;
 -enable-dav \&#60;br /&#62;
 -enable-cache \&#60;br /&#62;
 -enable-proxy \&#60;br /&#62;
 -enable-logio \&#60;br /&#62;
 -enable-deflate \&#60;br /&#62;
 -with-included-apr \&#60;br /&#62;
 -enable-cgi \&#60;br /&#62;
 -enable-cgid \&#60;br /&#62;
 -enable-suexec&#60;/p&#62;
&#60;p&#62;6. Compile PHP (4.4.9 or 5.3.0) as follows:&#60;br /&#62;
#!/bin/sh&#60;br /&#62;
PHPVERSION=4.4.9&#60;br /&#62;
MYSQLVERSION=5.1.39&#60;br /&#62;
APACHEVERSION=2.2.13&#60;br /&#62;
BUILDTAG=$PHPVERSION.mysql.$MYSQLVERSION&#60;br /&#62;
PHPDIR=/opt/php/$BUILDTAG&#60;br /&#62;
MYSQLDIR=/opt/mysql/$MYSQLVERSION&#60;br /&#62;
make distclean&#60;br /&#62;
./configure \&#60;br /&#62;
--prefix=$PHPDIR \&#60;br /&#62;
--with-apxs2=/opt/apache/$APACHEVERSION/bin/apxs \&#60;br /&#62;
--with-config-file-path=$PHPDIR/etc \&#60;br /&#62;
--with-mysql=$MYSQLDIR \&#60;br /&#62;
--with-mysqli=$MYSQLDIR/bin/mysql_config \&#60;br /&#62;
--with-pdo-mysql=$MYSQLDIR \&#60;br /&#62;
--with-zlib=/opt/local \&#60;br /&#62;
--with-curl=/opt/local \&#60;br /&#62;
--with-mcrypt=/opt/local \&#60;br /&#62;
--with-xsl=/opt/local \&#60;br /&#62;
--with-gd=/opt/local \&#60;br /&#62;
--with-jpeg-dir=/opt/local \&#60;br /&#62;
--with-png-dir=/opt/local \&#60;br /&#62;
--with-zlib-dir=/opt/local \&#60;br /&#62;
--with-xpm-dir=/opt/local \&#60;br /&#62;
--with-freetype-dir=/opt/local \&#60;br /&#62;
--with-iconv=/opt/local \&#60;br /&#62;
--enable-mbstring \&#60;br /&#62;
--enable-exif \&#60;br /&#62;
--enable-cli \&#60;br /&#62;
--enable-pcntl \&#60;br /&#62;
--enable-sockets \&#60;br /&#62;
--enable-ftp \&#60;br /&#62;
--enable-soap&#60;br /&#62;
export EXTRA_CFLAGS=&#34;-lresolv&#34;&#60;br /&#62;
make&#60;br /&#62;
make install
&#60;/p&#62;</description>
</item>
<item>
<title>abton on "Compiling Postfix on Snow Leopard"</title>
<link>http://diymacserver.com/forum/topic/compiling-postfix-on-snow-leopard#post-702</link>
<pubDate>Mon, 07 Sep 2009 10:35:17 +0000</pubDate>
<dc:creator>abton</dc:creator>
<guid isPermaLink="false">702@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;I tried following the instructions on this site to compile Postfix on Snow Leopard and noticed that it tries to use an include file (nameser8_compat.h) that has been removed from the latest XCode SDK.&#60;/p&#62;
&#60;p&#62;After a bit of looking around I found out that this can easily be resolved if you don't mind a little bit of source code editing.&#60;/p&#62;
&#60;p&#62;Find the file src/util/sys_defs.h and then remove the line:&#60;/p&#62;
&#60;p&#62;#define RESOLVE_H_NEEDS_NAMESER8_COMPAT_H&#60;/p&#62;
&#60;p&#62;When you try and build Postfix it will no longer try and include nameser8_compat.h and it will compile happily.&#60;/p&#62;
&#60;p&#62;Just thought I would share this.  I use this site as a reference all the time and it's nice to give something back!
&#60;/p&#62;</description>
</item>
<item>
<title>RobLewis on "What&#039;s the minimal, simplest config?"</title>
<link>http://diymacserver.com/forum/topic/whats-the-minimal-simplest-config#post-699</link>
<pubDate>Wed, 02 Sep 2009 18:50:45 +0000</pubDate>
<dc:creator>RobLewis</dc:creator>
<guid isPermaLink="false">699@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;I'm getting ready to migrate from Tiger Server on a G4 to Snow Leopard (not server) on a Mac Mini. &#60;/p&#62;
&#60;p&#62;I want mail service for a few Macs, a PC, and a couple of &#34;Audrey&#34; internet appliances on my local domain. Except for the Audreys, which are POP-only, I could use an all-IMAP system. &#60;/p&#62;
&#60;p&#62;What do I need to install? I only need to handle one domain (though I'd like the ability to handle others). Thanks for any tips. &#60;/p&#62;
&#60;p&#62;Also: what's a good setup for running a local DNS to replace OS X Server's?
&#60;/p&#62;</description>
</item>

</channel>
</rss>

