[HACKERS] Versioned mo file installation

2008-12-05 Thread Peter Eisentraut
One issue with packaged multiple-version installations (practiced by Debian, Solaris, and soon Fedora?) is that the mo files (translation files) should be in a fixed location like /usr/share/locale, which does not allow PostgreSQL-version specific subdirectories. The Debian packages solve

Re: [HACKERS] Versioned mo file installation

2008-12-05 Thread Zdenek Kotala
Solaris currently stores messages into separate directories like /usr/postgres/8.3/share/locale which solves multiversion problem, but it brings another problem, because gettext on solaris needs extra directory infrastructure. I think debians patch is good approach. Zdenek

Re: [HACKERS] Versioned mo file installation

2008-12-05 Thread Alvaro Herrera
Peter Eisentraut wrote: http://bazaar.launchpad.net/~pitti/postgresql/debian-8.3/annotate/127?file_id=03gettextdomains.pat-20060925215343-vp3e1xxgtg0tzea6-45 Solaris packaging is currently looking for a solution, and the Fedora initiative might as well? So I figured we could adopt

Re: [HACKERS] Versioned mo file installation

2008-12-05 Thread Devrim GÜNDÜZ
On Fri, 2008-12-05 at 16:20 +0200, Peter Eisentraut wrote: Solaris packaging is currently looking for a solution, and the Fedora initiative might as well? So I figured we could adopt something like the above patch as a built-in solution, as a build option or even by default. Comments?

Re: [HACKERS] Versioned mo file installation

2008-12-05 Thread Alvaro Herrera
Peter Eisentraut wrote: The Debian packages solve this by appending a version number to the mo files themselves, as can be seen in this patch: http://bazaar.launchpad.net/~pitti/postgresql/debian-8.3/annotate/127?file_id=03gettextdomains.pat-20060925215343-vp3e1xxgtg0tzea6-45 Of course, as

Re: [HACKERS] Versioned mo file installation

2008-12-05 Thread Martin Pitt
Hi Alvaro, Alvaro Herrera [2008-12-05 14:06 -0300]: Of course, as is it's not acceptable; the version number should be obtained from PG_VERSION or some such. Right, it has actually been on my long-term wishlist to replace that patch with an autoconfiscated one with a non-hardcoded version