unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Error compiling mh stuff
@ 2007-07-17 10:18 Juanma Barranquero
  2007-07-18 14:26 ` Bill Wohler
  0 siblings, 1 reply; 6+ messages in thread
From: Juanma Barranquero @ 2007-07-17 10:18 UTC (permalink / raw)
  To: emacs-devel

In toplevel form:
gnus/gnus-mh.el:39:1:Error: Symbol's function definition is void: mh-require-cl

In toplevel form:
mh-e/mh-alias.el:34:1:Error: Symbol's function definition is void: mh-require-cl

etc.

             Juanma

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Error compiling mh stuff
  2007-07-17 10:18 Error compiling mh stuff Juanma Barranquero
@ 2007-07-18 14:26 ` Bill Wohler
  2007-07-18 15:22   ` Juanma Barranquero
  0 siblings, 1 reply; 6+ messages in thread
From: Bill Wohler @ 2007-07-18 14:26 UTC (permalink / raw)
  To: emacs-devel

"Juanma Barranquero" <lekktu@gmail.com> writes:

> In toplevel form:
> gnus/gnus-mh.el:39:1:Error: Symbol's function definition is void: mh-require-cl
>
> In toplevel form:
> mh-e/mh-alias.el:34:1:Error: Symbol's function definition is void: mh-require-cl

There haven't been any changes to these (or other files) in a year
(other than a docstring fix a few months ago), so I suspect that you
have a .elc mismatch. Try to remove lisp/mh-e/*.elc and make
recompile. Failing that, try make bootstrap. If that fails, then there
is probably some compilation error in there somewhere. Please find it
and report it and I'll try to reproduce it here.

I suppose it's also possible that a recent change in macro handling
might have broken things...

-- 
Bill Wohler <wohler@newt.com>  http://www.newt.com/wohler/  GnuPG ID:610BD9AD

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Error compiling mh stuff
  2007-07-18 14:26 ` Bill Wohler
@ 2007-07-18 15:22   ` Juanma Barranquero
  2007-07-18 16:07     ` Dan Nicolaescu
  2007-07-18 18:41     ` Eli Zaretskii
  0 siblings, 2 replies; 6+ messages in thread
From: Juanma Barranquero @ 2007-07-18 15:22 UTC (permalink / raw)
  To: Bill Wohler; +Cc: emacs-devel

On 7/18/07, Bill Wohler <wohler@newt.com> wrote:

> so I suspect that you
> have a .elc mismatch. Try to remove lisp/mh-e/*.elc and make
> recompile. Failing that, try make bootstrap.

I found this problem while bootstrapping :)

Specifically, I do (I'm on Windows, using MinGW 3.4.5):

  cd nt
  make realclean
  cd ../src
  make distclean
  cd ../nt
  configure --with-gcc --no-cygwin
  make bootstrap install

If that fails, then there
> is probably some compilation error in there somewhere. Please find it
> and report it and I'll try to reproduce it here.

In the full output of the bootstrap, the only errors are these:

   3196:gnus/gnus-mh.el:39:1:Error: Symbol's function definition is
void: mh-require-cl
   3605:mh-e/mh-alias.el:34:1:Error: Symbol's function definition is
void: mh-require-cl
   3609:mh-e/mh-comp.el:39:1:Error: Symbol's function definition is
void: mh-require-cl
   3617:mh-e/mh-folder.el:35:1:Error: Symbol's function definition is
void: mh-require-cl
   3620:mh-e/mh-funcs.el:41:1:Error: Symbol's function definition is
void: mh-require-cl
   3623:mh-e/mh-identity.el:42:1:Error: Symbol's function definition
is void: mh-require-cl
   3626:mh-e/mh-inc.el:37:1:Error: Symbol's function definition is
void: mh-require-cl
   3629:mh-e/mh-junk.el:35:1:Error: Symbol's function definition is
void: mh-require-cl
   3632:mh-e/mh-letter.el:41:1:Error: Symbol's function definition is
void: mh-require-cl
   3635:mh-e/mh-limit.el:35:1:Error: Symbol's function definition is
void: mh-require-cl
   3638:mh-e/mh-mime.el:47:1:Error: Symbol's function definition is
void: mh-require-cl
   3641:mh-e/mh-print.el:33:1:Error: Symbol's function definition is
void: mh-require-cl
   3644:mh-e/mh-scan.el:37:1:Error: Symbol's function definition is
void: mh-require-cl
   3647:mh-e/mh-search.el:49:1:Error: Symbol's function definition is
void: mh-require-cl
   3650:mh-e/mh-seq.el:37:1:Error: Symbol's function definition is
void: mh-require-cl
   3653:mh-e/mh-show.el:36:1:Error: Symbol's function definition is
void: mh-require-cl
   3656:mh-e/mh-speed.el:35:1:Error: Symbol's function definition is
void: mh-require-cl
   3659:mh-e/mh-thread.el:76:1:Error: Symbol's function definition is
void: mh-require-cl
   3662:mh-e/mh-tool-bar.el:33:1:Error: Symbol's function definition
is void: mh-require-cl
   3665:mh-e/mh-utils.el:34:1:Error: Symbol's function definition is
void: mh-require-cl
   3668:mh-e/mh-xface.el:33:1:Error: Symbol's function definition is
void: mh-require-cl

After the bootstrap, the only .elc files in lisp/mh-e/ are
mh-buffers.elc and mh-e.elc.

             Juanma

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Error compiling mh stuff
  2007-07-18 15:22   ` Juanma Barranquero
@ 2007-07-18 16:07     ` Dan Nicolaescu
  2007-07-18 18:41     ` Eli Zaretskii
  1 sibling, 0 replies; 6+ messages in thread
From: Dan Nicolaescu @ 2007-07-18 16:07 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Bill Wohler, emacs-devel

"Juanma Barranquero" <lekktu@gmail.com> writes:

  > On 7/18/07, Bill Wohler <wohler@newt.com> wrote:
  > 
  > > so I suspect that you
  > > have a .elc mismatch. Try to remove lisp/mh-e/*.elc and make
  > > recompile. Failing that, try make bootstrap.
  > 
  > I found this problem while bootstrapping :)

I got the same problem a couple of times on a Fedora machine when
using make -j2. In a different thread Andreas posted this patch:


--- Makefile.in	24 Apr 2007 10:31:30 +0200	1.85
+++ Makefile.in	27 Jun 2007 19:01:20 +0200	
@@ -239,7 +239,7 @@ MH_E_SRC = $(lisp)/mh-e/mh-acros.el $(li
 	$(lisp)/mh-e/mh-xface.el
 
 mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el
-$(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC)
+$(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el $(MH_E_SRC)
 	echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@
 	echo "" >> $@
 	echo ";; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc." >> $@

that seemed to help. Does it fix your issue too? 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Error compiling mh stuff
  2007-07-18 15:22   ` Juanma Barranquero
  2007-07-18 16:07     ` Dan Nicolaescu
@ 2007-07-18 18:41     ` Eli Zaretskii
  2007-07-23  9:15       ` Juanma Barranquero
  1 sibling, 1 reply; 6+ messages in thread
From: Eli Zaretskii @ 2007-07-18 18:41 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: wohler, emacs-devel

> Date: Wed, 18 Jul 2007 17:22:02 +0200
> From: "Juanma Barranquero" <lekktu@gmail.com>
> Cc: emacs-devel@gnu.org
> 
> On 7/18/07, Bill Wohler <wohler@newt.com> wrote:
> 
> > so I suspect that you
> > have a .elc mismatch. Try to remove lisp/mh-e/*.elc and make
> > recompile. Failing that, try make bootstrap.
> 
> I found this problem while bootstrapping :)
> 
> Specifically, I do (I'm on Windows, using MinGW 3.4.5):
> 
>   cd nt
>   make realclean
>   cd ../src
>   make distclean
>   cd ../nt
>   configure --with-gcc --no-cygwin
>   make bootstrap install

FWIW, I don't have this problem (also on Windows).

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Error compiling mh stuff
  2007-07-18 18:41     ` Eli Zaretskii
@ 2007-07-23  9:15       ` Juanma Barranquero
  0 siblings, 0 replies; 6+ messages in thread
From: Juanma Barranquero @ 2007-07-23  9:15 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: wohler, emacs-devel

On 7/18/07, Eli Zaretskii <eliz@gnu.org> wrote:

> FWIW, I don't have this problem (also on Windows).

Well, the problem just disappeared, and I haven't changed anything on
my side, just updated from CVS and bootstrapped again.

             Juanma

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-07-23  9:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-17 10:18 Error compiling mh stuff Juanma Barranquero
2007-07-18 14:26 ` Bill Wohler
2007-07-18 15:22   ` Juanma Barranquero
2007-07-18 16:07     ` Dan Nicolaescu
2007-07-18 18:41     ` Eli Zaretskii
2007-07-23  9:15       ` Juanma Barranquero

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).