utf8
#1
Salut a tous. Je roule le eggdrop 1.6.21 que j'ai d'abord compilé avec ceci :

en remplaçant dans main.h
Code :
#if (((TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION >= 1)) || (TCL_MAJOR_VERSION > 8))
#  define USE_TCL_BYTE_ARRAYS
#  define USE_TCL_ENCODING
#endif

par

Code :
#if (((TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION >= 1)) || (TCL_MAJOR_VERSION > 8))
#  undef USE_TCL_BYTE_ARRAYS
#  define USE_TCL_ENCODING
#endif

et en modifiant dans tcl.c

Code :
if (encoding == NULL) {
  encoding = "iso8859-1";
}

par ceci

Code :
if (encoding == NULL) {
  encoding = "iso8859-1";
  encoding = "utf-8";
}

sans succès alors j'ai essayé

Code :
if (encoding == NULL) {
  encoding = "iso8859-1";
}
encoding = "utf-8";

sans succès alors j'ai essayé

Code :
if (encoding == NULL) {
  encoding = "utf-8";
}

sans succès non plus. j'ai donc utilisé le script tcl du site http://eggwiki.org/Bugs/Utf-8
Je l'ai chargé après les modules et avant tout les scripts mais ne marche pas!

Avez-vous une idée?

Merci
Répondre


Messages dans ce sujet
utf8 - par pascal10 - 15/01/2015, 06:30
RE: utf8 - par CrazyCat - 15/01/2015, 12:54
RE: utf8 - par pascal10 - 15/01/2015, 20:33

Atteindre :


Utilisateur(s) parcourant ce sujet : 1 visiteur(s)
Tchat 100% gratuit -Discutez en toute liberté