Re: Errorcodes ?
Denis Barbier <[email protected]>
| Newsgroups | gmane.comp.web.wml |
|---|---|
| Message-ID | <[email protected]> |
On Fri, May 30, 2003 at 05:43:50PM +0200, Thomas Roser wrote:
> Hello,
>
> i've got a problem with wml since updating from SuSE 8.0 to 8.1 and i can't
> find the source of this problem :
>
> Every time i start wmk i get the following message
>
> ** WML:Break: Error in Pass 3 (rc=139).
> ** WMk:Break: Error in WML (rc=256)
>
> i tried real .wml files with includes, inline-perl and so on and i tried to
> use wmk with simple .html-files. The same Return Code.
>
> I can't find the Return Codes in the Manpages or in the Online-Doc.
>
> What can i do ?
> I want to work with WML like the time before i upgraded.
Hi,
pass 3 is called via the Perl 'system' function.
$ perldoc -f system
...
You can check all the failure possibilities by inspecting $?
like this:
$exit_value = $? >> 8;
$signal_num = $? & 127;
$dumped_core = $? & 128;
As 139&127=11, it looks like wml_p3_eperl segfaults.
Problems have been reported wrt locales, maybe this is the case here.
Which Perl versions are shipped by SuSE 8.0 and 8.1?
Did you try to compile WML on 8.1?
--
Denis Barbier
WML Maintainer
_____________________________________________________________________
Website META Language (WML) http://thewml.org
User Support Mailing List [email protected]
Automated List Manager [email protected]