Index: iniparser3.0b/Makefile
===================================================================
--- iniparser3.0b/Makefile	(revision 17801)
+++ iniparser3.0b/Makefile	(working copy)
@@ -11,7 +11,7 @@
 ARFLAGS = rcv
 
 SHLD = ${CC} ${CFLAGS}
-LDSHFLAGS = -shared -Wl,-Bsymbolic  -Wl,-rpath -Wl,/usr/lib -Wl,-rpath,/usr/lib
+#LDSHFLAGS = -shared -Wl,-Bsymbolic  -Wl,-rpath -Wl,/usr/lib -Wl,-rpath,/usr/lib
 LDFLAGS = -Wl,-rpath -Wl,/usr/lib -Wl,-rpath,/usr/lib
 
 # Set RANLIB to ranlib on systems that require it (Sun OS < 4, Mac OSX)
@@ -37,15 +37,15 @@
 OBJS = $(SRCS:.c=.o)
 
 
-default:	libiniparser.a libiniparser.so
+default:	libiniparser.a #libiniparser.so
 
 libiniparser.a:	$(OBJS)
 	@($(AR) $(ARFLAGS) libiniparser.a $(OBJS))
 	@($(RANLIB) libiniparser.a)
 
-libiniparser.so:	$(OBJS)
-	@$(SHLD) $(LDSHFLAGS) -o $@.0 $(OBJS) $(LDFLAGS) \
-		-Wl,-soname=`basename $@`.0
+#libiniparser.so:	$(OBJS)
+#	@$(SHLD) $(LDSHFLAGS) -o $@.0 $(OBJS) $(LDFLAGS) \
+#		-Wl,-soname=`basename $@`.0
 
 clean:
 	$(RM) $(OBJS)
Index: render_config.h
===================================================================
--- render_config.h	(revision 17801)
+++ render_config.h	(working copy)
@@ -12,7 +12,7 @@
 
 // TILE_PATH is where Openlayers with try to fetch the "z/x/y.png" tiles from
 // this is now only used if DIRECTORY_HASH is undefined
-//#define TILE_PATH "/var/www/html/osm_tiles2"
+#define TILE_PATH "/Library/WebServer/Documents/osm_tiles2"
 
 // MAX_LOAD_OLD: if tile is out of date, don't re-render it if past this load threshold (users gets old tile)
 // (This is the default value. Can be overwritten in Apache config with ModTileMaxLoadOld.)
@@ -31,10 +31,10 @@
 #define XMLCONFIGS_MAX 10
 
 // Mapnik input plugins (will need to adjust for 32 bit libs)
-#define MAPNIK_PLUGINS "/usr/local/lib64/mapnik/input"
+#define MAPNIK_PLUGINS "/usr/local/lib/mapnik/input"
 
 // Default directory to search for fonts. Recursion can be enabled if desired.
-#define FONT_DIR "/usr/local/lib64/mapnik/fonts"
+#define FONT_DIR "/usr/local/lib/mapnik/fonts"
 #define FONT_RECURSE 0
 
 // Typical interval between planet imports, used as basis for tile expiry times
Index: renderd.py
===================================================================
--- renderd.py	(revision 17801)
+++ renderd.py	(working copy)
@@ -543,7 +543,7 @@
 
     # Unifont has a better character coverage and is used as a fallback for DejaVu
     # if you use a style based on the osm-template-fonset.xml
-    mapnik.FontEngine.instance().register_font("/home/jburgess/osm/fonts/unifont-5.1.20080706.ttf")
+    #mapnik.FontEngine.instance().register_font("/home/jburgess/osm/fonts/unifont-5.1.20080706.ttf")
 
     default_cfg = StringIO("""
 [renderd]
Index: Makefile
===================================================================
--- Makefile	(revision 17801)
+++ Makefile	(working copy)
@@ -33,10 +33,11 @@
 
 RENDER_CPPFLAGS += -g -O2 -Wall
 RENDER_CPPFLAGS += -I/usr/local/include/mapnik
+RENDER_CPPFLAGS += -I/static/include
 RENDER_CPPFLAGS += $(shell pkg-config --cflags freetype2)
 
 RENDER_LDFLAGS += -g
-RENDER_LDFLAGS += -lmapnik -L/usr/local/lib64 -Liniparser3.0b -liniparser
+RENDER_LDFLAGS += -lmapnik -L/usr/local/lib -Liniparser3.0b -liniparser
 
 renderd: store.c daemon.c gen_tile.cpp dir_utils.c protocol.h render_config.h dir_utils.h store.h iniparser3.0b/libiniparser.a
 	$(CXX) -o $@ $^ $(RENDER_LDFLAGS) $(RENDER_CPPFLAGS)
