From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Persian RTL problem Date: Sat, 24 Sep 2011 18:21:52 +0300 Message-ID: <83wrcyrmnj.fsf@gnu.org> References: <83y5xero5e.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1316877730 25709 80.91.229.12 (24 Sep 2011 15:22:10 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 24 Sep 2011 15:22:10 +0000 (UTC) Cc: emacs-devel@gnu.org To: mehran khajavi , Kenichi Handa Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 24 17:22:02 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1R7U3F-0005Sa-KZ for ged-emacs-devel@m.gmane.org; Sat, 24 Sep 2011 17:22:01 +0200 Original-Received: from localhost ([::1]:38795 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R7U3E-0001Cf-J0 for ged-emacs-devel@m.gmane.org; Sat, 24 Sep 2011 11:22:00 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:51295) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R7U3B-0001C0-Tz for emacs-devel@gnu.org; Sat, 24 Sep 2011 11:21:58 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R7U39-0007J3-Rm for emacs-devel@gnu.org; Sat, 24 Sep 2011 11:21:57 -0400 Original-Received: from mtaout22.012.net.il ([80.179.55.172]:45979) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R7U39-0007Il-LT for emacs-devel@gnu.org; Sat, 24 Sep 2011 11:21:55 -0400 Original-Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0LS1002009ARXQ00@a-mtaout22.012.net.il> for emacs-devel@gnu.org; Sat, 24 Sep 2011 18:21:53 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([84.228.8.215]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0LS1002UV9CGVS20@a-mtaout22.012.net.il>; Sat, 24 Sep 2011 18:21:53 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-Received-From: 80.179.55.172 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:144251 Archived-At: > From: mehran khajavi > Date: Sat, 24 Sep 2011 18:36:06 +0330 > Cc: emacs-devel@gnu.org > > $ grep "TOOLKIT_LIBW" src/Makefile > TOOLKIT_LIBW=-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 > -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lm -lcairo -lpng14 > -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 > -lgthread-2.0 -lrt -lglib-2.0 I think you are missing some or all of the following, mentioned in the file INSTALL: * Complex Text Layout support libraries Emacs needs the optional libraries "m17n-db", "libm17n-flt", "libotf" to correctly display such complex scripts as Indic and Khmer. On some systems, particularly GNU/Linux, these libraries may be already present or available as additional packages. Note that if there is a separate `dev' or `devel' package, for use at compilation time rather than run time, you will need that as well as the corresponding run time package; typically the dev package will contain header files and a library archive. Otherwise, you can download and build libraries from sources. The sources of these libraries are available by anonymous CVS from cvs.m17n.org. % cvs -d :pserver:anonymous@cvs.m17n.org:/cvs/m17n login % cvs -d :pserver:anonymous@cvs.m17n.org:/cvs/m17n co m17n-db % cvs -d :pserver:anonymous@cvs.m17n.org:/cvs/m17n co m17n-lib % cvs -d :pserver:anonymous@cvs.m17n.org:/cvs/m17n co libotf For m17n-lib, if you have problems with making the whole package because you lack some other packages on which m17n-lib depends, try to configure it with the option "--without-gui". Handa-san, can you please tell which ones of these, if any, are needed for Arabic shaping support? I think at least libotf is needed, but I'm not sure.