Mariano Mateos Alberdi wrote:
It works great. Thank you


Jens Lippmann wrote:
> 
> > Hello from Spain!
> 
> Hello Mariano!
> 
> > (is this the right place to write to?)
> Not really, listen to the mailing list, I'll send you a help mail later.
> 
> > I always get a core dumped. Here I send to you a transcription of what
> > latex2html does
> > I have already make latex (LaTeX2e) succesfully on report. I have perl
> > 5.003 and I have selected gif images. I have no problem during the
> > process instalation.
> >
> [...]
> > OPENING /usr/local/src/latex2html/example/report.tex
> >
> >  ***  `texexpand' done ***
> >
> > Segmentation fault (core dumped)
> 
> Ok, try first this patch:
> Insert to the latex2html script near line 11 this:
> use Fcntl;
> use SDBM_File;
> 
> sub DBMopen {
>   my ($hash, $file, $mode) = @_;
>   tie (%$hash, SDBM_File, $file, O_RDWR | O_CREAT, $mode)
>     or die "DBMopen: cannot open $file: $!\n";
> }
> 
> sub DBMClose {
>   my ($hash) = @_;
>   untie %$hash;
> }
> 
> and then replace all occurrences of
>    dbmopen(%hash) resp. dbmclose(%hash)
> by
>    DBMopen(\%hash) resp. DBMclose(\%hash)
> 
> in the latex2html script, too.
> 
> If this does not help, run it with -debug.
> I'm *not* on the mailing list, excuse me, but I'm currently too busy to
> spend time on searching/fixing bugs in l2h...
> but there are people who might help. (No, really, there are.)
> 
> Some bit of advice.
> Regards,
> Jens Lippmann.


# Jens Lippmann                     [EMAIL PROTECTED]
#                                  http://www.informatik.tu-darmstadt.de/TI
#
# Technische Hochschule Darmstadt                http://www.tu-darmstadt.de

Reply via email to