Précédent   Forum des professionnels en informatique > Systèmes > Autres systèmes > Unix > Solaris
Solaris Forum d'entraide sur le système Solaris.
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
Vieux 18/01/2010, 14h58   #1
Invité régulier
 
Inscription : mai 2009
Messages : 40
Détails du profil
Informations forums :
Inscription : mai 2009
Messages : 40
Points : 6
Points : 6
Par défaut Problème d'intallation de Html-Parser

Bonjour,

Mon problème est dans le titre, lorsque je fais un make pour commencer l'installation j'obtiens ceci.

Code :
1
2
3
4
5
6
7
8
9
$  /usr/ccs/bin/make
Makefile built with ExtUtils::MakeMaker v 5.42 Current Version is 5.45.
cc -c  -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xO3 -xdepend     -DVERSION=\"3.62\"  -DXS_VERSION=\"3.62\" -KPIC -I/usr/perl5/5.6.1/lib/sun4-solaris-64int/CORE -DMARKED_SECTION Parser.c
"Parser.c", line 778: argument #1 is incompatible with prototype:
        prototype: pointer to const char : "/usr/include/iso/string_iso.h", line 65
        argument : double
cc: acomp failed for Parser.c
*** Error code 2
make: Fatal error: Command failed for target `Parser.o'
voila si vous avez des idées sur la question.
nkta1 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 18/01/2010, 18h24   #2
Membre Expert
 
Avatar de jlliagre
 
Inscription : juin 2007
Messages : 912
Détails du profil
Informations personnelles :
Localisation : France, Paris (Île de France)

Informations forums :
Inscription : juin 2007
Messages : 912
Points : 1 263
Points : 1 263
Et il y a quoi à la ligne 778 de Parser.c ?
__________________
ɹǝsn *sıɹɐlos*
jlliagre est actuellement connecté   Envoyer un message privé Réponse avec citation 00
Vieux 19/01/2010, 09h41   #3
Invité régulier
 
Inscription : mai 2009
Messages : 40
Détails du profil
Informations forums :
Inscription : mai 2009
Messages : 40
Points : 6
Points : 6
Merci de m'avoir répondu

J'ai regardé à la ligne 778 mais il n'y a rien à cette ligne.

Je te mets quand même le bout de code
Code :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifdef __cplusplus
extern "C"
#endif
XS(boot_HTML__Parser)
{
    dXSARGS;
    char* file = __FILE__;

    XS_VERSION_BOOTCHECK ;
LIGNE 778
    {
        CV * cv ;

        newXS("HTML::Parser::_alloc_pstate", XS_HTML__Parser__alloc_pstate, file);
        newXS("HTML::Parser::parse", XS_HTML__Parser_parse, file);
        newXS("HTML::Parser::eof", XS_HTML__Parser_eof, file);
        cv = newXS("HTML::Parser::empty_element_tags", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 11 ;
        cv = newXS("HTML::Parser::closing_plaintext", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 9 ;
        cv = newXS("HTML::Parser::unbroken_text", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 4 ;
        cv = newXS("HTML::Parser::utf8_mode", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 10 ;
        cv = newXS("HTML::Parser::marked_sections", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 5 ;
        cv = newXS("HTML::Parser::strict_comment", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 1 ;
        cv = newXS("HTML::Parser::xml_pic", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 12 ;
        cv = newXS("HTML::Parser::attr_encoded", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 6 ;
        cv = newXS("HTML::Parser::strict_names", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 2 ;
        cv = newXS("HTML::Parser::backquote", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 13 ;
        cv = newXS("HTML::Parser::strict_end", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 8 ;
        cv = newXS("HTML::Parser::xml_mode", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 3 ;
        cv = newXS("HTML::Parser::case_sensitive", XS_HTML__Parser_strict_comment, file);
        XSANY.any_i32 = 7 ;
        newXS("HTML::Parser::boolean_attribute_value", XS_HTML__Parser_boolean_attribute_value, file);
        cv = newXS("HTML::Parser::report_tags", XS_HTML__Parser_ignore_tags, file);
        XSANY.any_i32 = 1 ;
        cv = newXS("HTML::Parser::ignore_elements", XS_HTML__Parser_ignore_tags, file);
        XSANY.any_i32 = 3 ;
        cv = newXS("HTML::Parser::ignore_tags", XS_HTML__Parser_ignore_tags, file);
        XSANY.any_i32 = 2 ;
        newXS("HTML::Parser::handler", XS_HTML__Parser_handler, file);
        newXS("HTML::Entities::decode_entities", XS_HTML__Entities_decode_entities, file);
        newXS("HTML::Entities::_decode_entities", XS_HTML__Entities__decode_entities, file);
        newXS("HTML::Entities::_probably_utf8_chunk", XS_HTML__Entities__probably_utf8_chunk, file);
        newXSproto("HTML::Entities::UNICODE_SUPPORT", XS_HTML__Entities_UNICODE_SUPPORT, file, "");
    }
    ST(0) = &sv_yes;
    XSRETURN(1);
}
nkta1 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 21/01/2010, 16h05   #4
Invité régulier
 
Inscription : mai 2009
Messages : 40
Détails du profil
Informations forums :
Inscription : mai 2009
Messages : 40
Points : 6
Points : 6
C'est bon j'ai résolu mon problème
nkta1 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 21/01/2010, 17h55   #5
Membre Expert
 
Avatar de jlliagre
 
Inscription : juin 2007
Messages : 912
Détails du profil
Informations personnelles :
Localisation : France, Paris (Île de France)

Informations forums :
Inscription : juin 2007
Messages : 912
Points : 1 263
Points : 1 263
Comment ?

Partager ta solution pourrait aider ceux qui tomberaient sur le même problème.
__________________
ɹǝsn *sıɹɐlos*
jlliagre est actuellement connecté   Envoyer un message privé Réponse avec citation 00
Vieux 22/01/2010, 14h37   #6
Invité régulier
 
Inscription : mai 2009
Messages : 40
Détails du profil
Informations forums :
Inscription : mai 2009
Messages : 40
Points : 6
Points : 6
Le problème venait du fait que le programme perl qu'utilisait le server n'était pas compatible avec html-parser, donc j'ai installé activeperl et ça a fonctioné.
nkta1 est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité Cette discussion est résolue.
Outils de la discussion



Fuseau horaire GMT +1. Il est actuellement 01h35.


 
 
 
 
Partenaires

Hébergement Web