Hi To centerim-devel@centerim.org,

on 2009-09-01 at 12:05:02 CEST, you wrote:
> 
> Hi,
> 
> the pointyhad of freebsd ports has pointed out some build problems with
> FreeBSD:
> 
> http://32bit.miwibox.org//errors/8-FreeBSD/centerim-devel-4.22.8.3.g12.c83_1.log
> 
> conscommon.cc: In function 'std::string makebidi(const std::string&, int)':
> conscommon.cc:277: error: 'fribidi_iso8859_8_to_unicode' was not declared in 
> this scope
> conscommon.cc:279: error: 'fribidi_unicode_to_iso8859_8' was not declared in 
> this scope
> gmake[3]: *** [conscommon.o] Error 1
> 
> 
> Anyone that might look into this?

My pointyhat created a patch (attached) for this bug.
Would someone please apply it?


 
Le deagh dhùraghd,

        Frank Altpeter

-- 
FA-RIPE || http://www.altpeter.de/
Viva la evolution
|   Cum tacent, clamant. When they are silent, they shout. -Cicero

--- kkconsui/src/conscommon.cc.orig	2009-08-29 18:34:40.000000000 -0400
+++ kkconsui/src/conscommon.cc	2009-08-29 18:36:31.000000000 -0400
@@ -274,9 +274,9 @@ string makebidi(const string &buf, int l
 	// really sick thing
 
     base = FRIBIDI_TYPE_N;
-    fribidi_iso8859_8_to_unicode(cbuf, buf.size(), us);
+    fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_ISO8859_8,cbuf, buf.size(), us);
     fribidi_log2vis(us, buf.size(), &base, out_us, 0, 0, 0);
-    fribidi_unicode_to_iso8859_8(out_us, buf.size(), outstring);
+    fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_ISO8859_8, out_us, buf.size(), outstring);
 
     r = outstring;
 

Attachment: pgp78NTzXKUld.pgp
Description: PGP signature

--
_______________________________________________
Centerim-devel mailing list
Centerim-devel@centerim.org
http://centerim.org/mailman/listinfo/centerim-devel
http://www.centerim.org/

Reply via email to