unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* idlwave won't byte compile
@ 2004-09-03 13:54 Jeff Berry
  2004-09-03 17:41 ` Kevin Rodgers
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff Berry @ 2004-09-03 13:54 UTC (permalink / raw)


Good morning,

I'm trying to install idlwave-5.3 for a user at my site, and it
won't byte compile.  I'm running AIX4.3 and emacs-21.3, and when
I try to make idlwave, I get this:
===================
emacs-21.3 -batch -no-init-file -l lpath.el -f batch-byte-compile idlwave.el idlw-help.el idlw-shell.el idlw-rinfo.el idlw-toolbar.el idlw-complete-structtag.el idlw-roprompt.el 
While compiling toplevel forms in file /mnt/src/idlwave-5.3/idlwave.el:
  !! error (("Required feature idlw-help was not provided"))
Wrote /mnt/src/idlwave-5.3/idlw-help.elc
While compiling toplevel forms in file /mnt/src/idlwave-5.3/idlw-shell.el:
  !! error (("Required feature idlw-help was not provided"))
Wrote /mnt/src/idlwave-5.3/idlw-rinfo.elc
Wrote /mnt/src/idlwave-5.3/idlw-toolbar.elc
Wrote /mnt/src/idlwave-5.3/idlw-complete-structtag.elc
Wrote /mnt/src/idlwave-5.3/idlw-roprompt.elc
Done
gmake: *** [lisp] Error 1
===================

The file idlw-help.el is in the local directory and the file lpath.el
looks like this:
=============
;; IDLWAVE helper file for batch compiles -- Make sure we get the right files.
(setq load-path (cons "." load-path)
      byte-compile-warnings nil)
===============

Am I, not being a lisp programmer or much of emacs user, missing something
obvious here?

Jeff Berry / jberry@giss.nasa.gov

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

* Re: idlwave won't byte compile
  2004-09-03 13:54 idlwave won't byte compile Jeff Berry
@ 2004-09-03 17:41 ` Kevin Rodgers
  2004-09-07 12:08   ` Jeff Berry
  0 siblings, 1 reply; 3+ messages in thread
From: Kevin Rodgers @ 2004-09-03 17:41 UTC (permalink / raw)


Jeff Berry wrote:
 > I'm trying to install idlwave-5.3 for a user at my site, and it
 > won't byte compile.  I'm running AIX4.3 and emacs-21.3, and when
 > I try to make idlwave, I get this:
 > ===================
 > emacs-21.3 -batch -no-init-file -l lpath.el -f batch-byte-compile idlwave.el idlw-help.el idlw-shell.el idlw-rinfo.el idlw-toolbar.el idlw-complete-structtag.el idlw-roprompt.el
 > While compiling toplevel forms in file /mnt/src/idlwave-5.3/idlwave.el:
 >   !! error (("Required feature idlw-help was not provided"))
 > Wrote /mnt/src/idlwave-5.3/idlw-help.elc
 > While compiling toplevel forms in file /mnt/src/idlwave-5.3/idlw-shell.el:
 >   !! error (("Required feature idlw-help was not provided"))
 > Wrote /mnt/src/idlwave-5.3/idlw-rinfo.elc
 > Wrote /mnt/src/idlwave-5.3/idlw-toolbar.elc
 > Wrote /mnt/src/idlwave-5.3/idlw-complete-structtag.elc
 > Wrote /mnt/src/idlwave-5.3/idlw-roprompt.elc
 > Done
 > gmake: *** [lisp] Error 1
 > ===================
 >
 > The file idlw-help.el is in the local directory and the file lpath.el
 > looks like this:
 > =============
 > ;; IDLWAVE helper file for batch compiles -- Make sure we get the right files.
 > (setq load-path (cons "." load-path)
 >       byte-compile-warnings nil)
 > ===============
 >
 > Am I, not being a lisp programmer or much of emacs user, missing something
 > obvious here?

No, idlwave's author did: idlwave.el and idlw-shell.el must have
(require 'idlw-help), but idlw-help.el does not have (provide 'idlw-help);
so add it at the end of the file.

-- 
Kevin Rodgers

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

* Re: idlwave won't byte compile
  2004-09-03 17:41 ` Kevin Rodgers
@ 2004-09-07 12:08   ` Jeff Berry
  0 siblings, 0 replies; 3+ messages in thread
From: Jeff Berry @ 2004-09-07 12:08 UTC (permalink / raw)


In article <4138ACC3.7020000@yahoo.com>,
Kevin Rodgers  <ihs_4664@yahoo.com> wrote:
>Jeff Berry wrote:
> > I'm trying to install idlwave-5.3 for a user at my site, and it
> > won't byte compile.  I'm running AIX4.3 and emacs-21.3, and when
> > I try to make idlwave, I get this:
> > Am I, not being a lisp programmer or much of emacs user, missing something
> > obvious here?
>No, idlwave's author did: idlwave.el and idlw-shell.el must have
>(require 'idlw-help), but idlw-help.el does not have (provide 'idlw-help);
>so add it at the end of the file.
>Kevin Rodgers

Thanks very much.  That was pretty much it.  I actually had to add two
lines:
(provide 'idlw-help)
(provide 'idlwave-help)


But once I knew what I was looking for, it was easy to sort out.

Thanks again,

Jeff Berry/NASA GISS

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

end of thread, other threads:[~2004-09-07 12:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-03 13:54 idlwave won't byte compile Jeff Berry
2004-09-03 17:41 ` Kevin Rodgers
2004-09-07 12:08   ` Jeff Berry

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).