aboutsummaryrefslogtreecommitdiff
path: root/net/lambdamoo/files
diff options
context:
space:
mode:
authorSeiichirou Hiraoka <flathill@FreeBSD.org>2000-01-05 20:27:21 +0000
committerSeiichirou Hiraoka <flathill@FreeBSD.org>2000-01-05 20:27:21 +0000
commitb7081b5e8f921b791377b1021cf5c9dc72af73f5 (patch)
tree3dfe581f71eff3b85cf5322ff80cf8f87778960d /net/lambdamoo/files
parent45a5c96017adee316fe728450e2ba52ecae9ec42 (diff)
Notes
Diffstat (limited to 'net/lambdamoo/files')
-rw-r--r--net/lambdamoo/files/README.FreeBSD27
-rw-r--r--net/lambdamoo/files/patch-aa11
2 files changed, 38 insertions, 0 deletions
diff --git a/net/lambdamoo/files/README.FreeBSD b/net/lambdamoo/files/README.FreeBSD
new file mode 100644
index 000000000000..6161e988965f
--- /dev/null
+++ b/net/lambdamoo/files/README.FreeBSD
@@ -0,0 +1,27 @@
+How to play LambdaMOO
+
+1. Get core database,
+ ftp://ftp.lambda.moo.mud.org/pub/MOO/LambdaMOO-latest.tar.gz.
+
+ If you want to get other two commonly used core databases, visit
+ http://www.moo.mud.org/.
+
+2. /usr/local/sbin/moo INITIAL-DB-FILE CHECKPOINT-DB-FILE.
+
+!NOTICE!
+
+According to MOO-Cows FAQ in http://www.moo.mud.org/moo-faq/,
+LambdaCore-latest.db has password problem on FreeBSD.
+Apply following patch to resolve.
+
+--- LambdaCore-latest.db.orig Sun Jul 4 08:34:16 1999
++++ LambdaCore-latest.db Sun Jul 4 14:05:25 1999
+@@ -227748,7 +227748,7 @@
+ elseif (length(args) != 2)
+ player:notify(tostr("Usage: ", verb, " <old-password> <new-password>"));
+ return;
+-elseif (player.password != crypt(tostr(args[1]), player.password))
++elseif (player.password != crypt(tostr(args[1]), player.password[4..5]))
+ player:notify("That's not your old password.");
+ return;
+ elseif (is_clear_property(player, "password"))
diff --git a/net/lambdamoo/files/patch-aa b/net/lambdamoo/files/patch-aa
new file mode 100644
index 000000000000..d9522357c30d
--- /dev/null
+++ b/net/lambdamoo/files/patch-aa
@@ -0,0 +1,11 @@
+--- config.h.in.orig Sun Jul 4 16:45:44 1999
++++ config.h.in Sun Jul 4 16:45:54 1999
+@@ -163,7 +163,7 @@
+ * system provides the named functions.
+ */
+
+-#undef HAVE_CRYPT
++/* #undef HAVE_CRYPT */
+ #undef HAVE_MATHERR
+ #undef HAVE_MKFIFO
+ #undef HAVE_REMOVE