From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Re: Symbol's function definition is void: get-load-suffixes Date: Mon, 3 Apr 2006 17:19:54 -0500 (CDT) Message-ID: <200604032219.k33MJs4E007558@jane.dms.auburn.edu> References: <7dbe73ed0604031438r12ed2ef0u286603e850c1f0cb@mail.gmail.com> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1144102861 8158 80.91.229.2 (3 Apr 2006 22:21:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 3 Apr 2006 22:21:01 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Apr 04 00:20:59 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FQXPm-00038F-KA for ged-emacs-devel@m.gmane.org; Tue, 04 Apr 2006 00:20:50 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FQXPm-0007ly-02 for ged-emacs-devel@m.gmane.org; Mon, 03 Apr 2006 18:20:50 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FQXP9-0007Wx-BV for emacs-devel@gnu.org; Mon, 03 Apr 2006 18:20:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FQXP7-0007Uo-9p for emacs-devel@gnu.org; Mon, 03 Apr 2006 18:20:10 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FQXP7-0007Ua-4k for emacs-devel@gnu.org; Mon, 03 Apr 2006 18:20:09 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FQXSG-0003KV-CZ for emacs-devel@gnu.org; Mon, 03 Apr 2006 18:23:24 -0400 Original-Received: from jane.dms.auburn.edu (jane.dms.auburn.edu [131.204.53.201]) by manatee.dms.auburn.edu (8.13.6/8.13.6) with ESMTP id k33MK5Iu027542; Mon, 3 Apr 2006 17:20:05 -0500 (CDT) Original-Received: from jane.dms.auburn.edu (localhost [127.0.0.1]) by jane.dms.auburn.edu (8.13.4+Sun/8.13.3) with ESMTP id k33MJtCt007561; Mon, 3 Apr 2006 17:19:55 -0500 (CDT) Original-Received: (from teirllm@localhost) by jane.dms.auburn.edu (8.13.4+Sun/8.13.3/Submit) id k33MJs4E007558; Mon, 3 Apr 2006 17:19:54 -0500 (CDT) X-Authentication-Warning: jane.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: mathias.dahl@gmail.com In-reply-to: <7dbe73ed0604031438r12ed2ef0u286603e850c1f0cb@mail.gmail.com> (mathias.dahl@gmail.com) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.1 (manatee.dms.auburn.edu [131.204.53.104]); Mon, 03 Apr 2006 17:20:05 -0500 (CDT) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:52385 Archived-At: Mathias Dahl wrote: It was some weeks since I last updated my CVS Emacs. You mean before February 6? /home/mathias/prj/emacs/lisp/./textmodes /home/mathias/prj/emac s/lisp/./toolbar /home/mathias/prj/emacs/lisp/./url Symbol's function definition is void: get-load-suffixes make[3]: *** [autoloads] Error 255 make[3]: Leaving directory `/home/mathias/prj/emacs/lisp' make[2]: *** [bootstrap-prepare] Error 2 make[2]: Leaving directory `/home/mathias/prj/emacs/lisp' make[1]: *** [bootstrap-build] Error 2 make[1]: Leaving directory `/home/mathias/prj/emacs' make: *** [bootstrap] Error 2 Here is the script I use when building: #!/bin/bash cd ~/prj/emacs cvs update ./configure make bootstrap It used to work fine so I would think that the commands are okay. Any idea what I have done wrong? Somehow lread.c does not seem to have been properly recompiled. Strange, I thought that `make bootstrap' automatically recompiled all C files. Anyway: make maintainer-clean ./configure make bootstrap should solve the problem (even though maybe `make maintainer-clean' is overkill). Or else you could have a sticky tag on lread.c. Sincerely, Luc.