From 8ac8dc5fbb18aac8d7660aeff91a54f022170bdc Mon Sep 17 00:00:00 2001 From: Marco Peereboom Date: Sun, 17 Jan 2010 16:54:12 +0000 Subject: [PATCH] Clarify osx 10.5 build process. --- html/osx.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/html/osx.html b/html/osx.html index a545bdb..a4887fa 100644 --- a/html/osx.html +++ b/html/osx.html @@ -16,6 +16,18 @@ Compile scrotwm from the osx directory of the snapshot: cd osx make +

+To compile scrotwm on OSX 10.5 edit the Makefile and replace: +

+libswmhack.so.$(LVERS): swm_hack.so
+	$(CC) -shared -fpic -o libswmhack.so.$(LVERS) $(LDADD) swm_hack.so
+
+With: +
+libswmhack.so.$(LVERS): swm_hack.so
+	$(CC) -shared -bundle -fpic -o libswmhack.so.$(LVERS) $(LDADD) swm_hack.so
+
+

Install scrotwm:

sudo make install

-- 1.7.10.4