Hello,
Please apologize the use of an antique and Y2K-buggy elm mailer.
That's why I want to switch to mutt!
I am trying to compile mutt on solaris.
I retrieved mutt-1.1.tar.gz, made
./configure --prefix=/users/model/roegel/mutt --with-sharedir=/users/model/roegel/mutt
--with-mailpath=/mail --disable-fcntl --with-docdir=/users/model/roegel/mutt
make keymap_defs.h
make install
and then I get:
...
Making install in doc
test -f manual.html || make manual.html || cp
/users/model/roegel/elmtmp/mutt-1.1-us/doc/manual*.html ./
test -f manual.txt || make manual.txt || cp
/users/model/roegel/elmtmp/mutt-1.1-us/doc/manual.txt ./
(cd .. && make makedoc)
cd /users/model/roegel/elmtmp/mutt-1.1-us && aclocal -I m4
aclocal: macro `E_SET at /usr/local/gnu/bin/aclocal line 319, <CONFIGURE> line 82.
*** Error code 1
make: Fatal error: Command failed for target
`/users/model/roegel/elmtmp/mutt-1.1-us/aclocal.m4'
Current working directory /users/model/roegel/elmtmp/mutt-1.1-us
*** Error code 1
make: Fatal error: Command failed for target `../makedoc'
Current working directory /users/model/roegel/elmtmp/mutt-1.1-us/doc
*** Error code 1
make: Fatal error: Command failed for target `install-recursive'
bar mutt-1.1-us 367 %
The file /usr/local/gnu/bin/aclocal has the following around line 319:
# Add a macro to the output.
sub add_macro
{
local ($macro) = @_;
# We want to ignore AC_ macros. However, if an AC_ macro is
# defined in (eg) acinclude.m4, then we want to make sure we mark
# it as seen.
return if $macro =~ /^AC_/ && ! defined $map{$macro};
if (! defined $map{$macro})
{
warn "aclocal: macro \`$macro' required but not defined\n";
$exit_status = 1;
return;
}
print STDERR "saw macro $macro\n" if $verbosity;
$macro_seen{$macro} = 1;
&add_file ($map{$macro});
}
I would welcome any help! Thanks.
Denis Roegel