From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/7155 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: libintl: stubs or working functions? Date: Fri, 6 Mar 2015 17:24:15 -0500 Message-ID: <20150306222415.GR23507@brightrain.aerifal.cx> References: <20150305163649.05a14b30@sibserver.ru> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1425680678 19035 80.91.229.3 (6 Mar 2015 22:24:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 6 Mar 2015 22:24:38 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-7168-gllmg-musl=m.gmane.org@lists.openwall.com Fri Mar 06 23:24:38 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1YU0fd-000507-Kq for gllmg-musl@m.gmane.org; Fri, 06 Mar 2015 23:24:37 +0100 Original-Received: (qmail 22231 invoked by uid 550); 6 Mar 2015 22:24:34 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 22196 invoked from network); 6 Mar 2015 22:24:30 -0000 Content-Disposition: inline In-Reply-To: <20150305163649.05a14b30@sibserver.ru> User-Agent: Mutt/1.5.21 (2010-09-15) Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:7155 Archived-At: On Thu, Mar 05, 2015 at 04:36:49PM +0700, Рысь wrote: > I noticed that musl had got some gettext functions as a lightweight and > more saner interface. However, I now have a couple questions about them > as ordinary user. > > A bit of history. > I had successfully built and used custom x86 musl based X11 root which > uses both Xfbdev and Xorg servers on different machines. It is based on > my previous musl on servers experience, just added X11 and major gui > libraries on top of it. > > My root attracted a user because of it's small size to fit into budget > netbook with very small disk size (about 4GB I think). The problem is > that user does not speak (and understand) English at all, but he accepts > my preferred program set which I preinstalled into root. > > So I faced a problem: I had built this root for myself and everywhere I > did seen "--disable-nls" in configure scripts I used it. Now, I tried > to rebuild untranslated programs, noticed that translation files (.po > -> *.gmo) were created and installed in /local/share/locale/. > > However, trying to define LC_ALL and LANG environment variables as in > most of glibc systems does not change anything. The programs still > English translated. > > And a couple questions here: > > * Did I understand that right that I do not need GNU gettext anymore and > I can use musl's interface for that? Yes, modulo some GNU software (coreutils for example) that probes for glibc/gnu-libintl internals at configure time and depends on poorly-designed and undocumented features (SYSDEP strings). These programs will not work without either GNU libintl or patching out the bad parts of configure and using a version of msgfmt that works around the need for SYSDEP strings. I believe the one from sabotage gettext-tiny does. > * Do I still need original GNU gettext to translate *.po's to *.gmo's? > (I used gettext-tiny) gettext-tiny is preferable as long as it works. As mentioned above it even works around the SYSDEP strings issue. > * If musl can handle that, how I should configure it? Are environment > variables work? For translations of musl itself (which don't exist yet) the MUSL_LOCPATH environment variable needs to be set. But most programs that use gettext hard-code their own pathnames for passing to bindtextdomain, and this is the documented correct way to use the API. So there is no default gettext path in musl. > Whole story and questions may be stupid if I misunderstand the purpose > of those functions, so sorry. Not stupid at all. Hope the above helps. Let me know if you have any more questions. If you find that lack of translations for the messages from musl itself (errno strings, etc.) is a problem, I can try to help you with producing a locale file for musl. I want to get a musl-locales project started and it would be nice to have a trial run-through. Rich