summaryrefslogtreecommitdiff
path: root/wiki/muds/tinyfugue-on-yosemite.md
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2020-01-28 20:49:17 -0500
committerOwen Jacobson <owen@grimoire.ca>2020-01-28 23:23:18 -0500
commit0d6f58c54a7af6c8b4e6cd98663eb36ec4e3accc (patch)
treea2af4dc93f09a920b0ca375c1adde6d8f64eb6be /wiki/muds/tinyfugue-on-yosemite.md
parentacf6f5d3bfa748e2f8810ab0fe807f82efcf3eb6 (diff)
Editorial pass & migration to mkdocs.
There's a lot in grimoire.ca that I either no longer stand behind or feel pretty weird about having out there.
Diffstat (limited to 'wiki/muds/tinyfugue-on-yosemite.md')
-rw-r--r--wiki/muds/tinyfugue-on-yosemite.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/wiki/muds/tinyfugue-on-yosemite.md b/wiki/muds/tinyfugue-on-yosemite.md
deleted file mode 100644
index 1754436..0000000
--- a/wiki/muds/tinyfugue-on-yosemite.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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.