Wataru Saito <wataru(a)sdlew52.ulsys.lsi.nec.co.jp> writes:
> > 2.lib-src 下のコンパイル。
>
> よくある環境では、src/alloca.c は使われないようです。落ちる、
> というのはどういう error なのか、詳しく説明していただけない
lib-src の movemail リンク時に、alloca.o に xmalloc が
定義されていないよ、と怒られるのです。
なるほど。テストできる環境が無いので未確認ですが、以下の
patch でどうですか?
# 大丈夫だったら、後で xemacs-patches に送ってしばらくしてか
# ら patch をあてます。が、今日は修羅場であんまり現実逃避し
# ていられないのでちょっと遅れると思います。
Index: alloca.c
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/src/alloca.c,v
retrieving revision 1.4.2.3
diff -u -r1.4.2.3 alloca.c
--- alloca.c 2000/09/20 02:38:39 1.4.2.3
+++ alloca.c 2000/12/07 05:32:46
@@ -100,7 +100,7 @@
Callers below should use malloc. */
-#ifndef emacs
+#ifdef emacs
#define malloc xmalloc
#endif
#ifndef WIN32_NATIVE
--
Yoshiki Hayashi