From 76aed6ef732de38d82245b3d674f70bab30221e5 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Fri, 3 Jul 2015 22:31:49 -0400 Subject: Fuck it, serve the files directly. --- .html/muds/_list.html | 88 ++++++++++++++++++++++++++++ .html/muds/index.html | 88 ++++++++++++++++++++++++++++ .html/muds/tinyfugue-on-yosemite.html | 106 ++++++++++++++++++++++++++++++++++ 3 files changed, 282 insertions(+) create mode 100644 .html/muds/_list.html create mode 100644 .html/muds/index.html create mode 100644 .html/muds/tinyfugue-on-yosemite.html (limited to '.html/muds') diff --git a/.html/muds/_list.html b/.html/muds/_list.html new file mode 100644 index 0000000..a36d276 --- /dev/null +++ b/.html/muds/_list.html @@ -0,0 +1,88 @@ + + + + + The Codex » + ls /muds + + + + + + + + +
+ + + + + +
+

ls /muds

+ + + + +
+

Pages

+ +
+ + + +
+ + + + + + + + +
+ + \ No newline at end of file diff --git a/.html/muds/index.html b/.html/muds/index.html new file mode 100644 index 0000000..a36d276 --- /dev/null +++ b/.html/muds/index.html @@ -0,0 +1,88 @@ + + + + + The Codex » + ls /muds + + + + + + + + +
+ + + + + +
+

ls /muds

+ + + + +
+

Pages

+ +
+ + + +
+ + + + + + + + +
+ + \ No newline at end of file diff --git a/.html/muds/tinyfugue-on-yosemite.html b/.html/muds/tinyfugue-on-yosemite.html new file mode 100644 index 0000000..d5c6a32 --- /dev/null +++ b/.html/muds/tinyfugue-on-yosemite.html @@ -0,0 +1,106 @@ + + + + + The Codex » + Compiling TinyFugue on Yosemite + + + + + + + + +
+ + + + + +
+

Compiling TinyFugue on Yosemite

+

TinyFugue's site claims that it works on OS X. This is largely true, but the +switch from gcc to clang has eliminated support for some deeply legacy +symbols.

+

Since SourceForge is a death zone, I'll post my fix here. To get TinyFugue to +compile, apply the following patch:

+
--- src/malloc.c.orig   2015-02-13 23:45:44.000000000 -0500
++++ src/malloc.c    2015-02-13 23:45:28.000000000 -0500
+@@ -12,7 +12,6 @@
+ #include "signals.h"
+ #include "malloc.h"
+
+-caddr_t mmalloc_base = NULL;
+ int low_memory_warning = 0;
+ static char *reserve = NULL;
+
+

This symbol appears to be unused. Certainly I haven't been able to find any +references, and tf works well enough.

+
+ + + +
+
+ + +comments powered by Disqus +
+ + + + + +
+ + \ No newline at end of file -- cgit v1.2.3