Re: [PATCH] pkgconfig files should be installed to $(libdir)

2011-11-24 Thread Gaetan Nadon
On Wed, 2011-11-23 at 19:31 -0600, Yaakov (Cygwin/X) wrote: On Thu, 2011-11-17 at 07:43 -0800, Alan Coopersmith wrote: Those are bugs then, they should all use $(datadir). I know I've had to override some in the past when building distro packages, but I thought we'd gotten all those

Re: [PATCH] pkgconfig files should be installed to $(libdir)

2011-11-23 Thread Mark Kettenis
From: Gaetan Nadon mems...@videotron.ca Date: Thu, 17 Nov 2011 09:04:36 -0500 We need to comply with the FHS standard. If we don't, other installations will break as they use a /usr/share as a common filesystem for architecture independent data. The location is not really a project

Re: [PATCH] pkgconfig files should be installed to $(libdir)

2011-11-23 Thread Gaetan Nadon
On Wed, 2011-11-23 at 16:50 +0100, Mark Kettenis wrote: From: Gaetan Nadon mems...@videotron.ca Date: Thu, 17 Nov 2011 09:04:36 -0500 We need to comply with the FHS standard. If we don't, other installations will break as they use a /usr/share as a common filesystem for architecture

Re: [PATCH] pkgconfig files should be installed to $(libdir)

2011-11-23 Thread Yaakov (Cygwin/X)
On Thu, 2011-11-17 at 07:43 -0800, Alan Coopersmith wrote: Those are bugs then, they should all use $(datadir). I know I've had to override some in the past when building distro packages, but I thought we'd gotten all those fixes in to git by now. No, they must NOT go into

[PATCH] pkgconfig files should be installed to $(libdir)

2011-11-17 Thread Dmitry Shatrov
--- Makefile.am |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.am b/Makefile.am index 9ff1723..7ce7cbf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,7 @@ Xtransinclude_HEADERS = \ aclocaldir = $(datadir)/aclocal aclocal_DATA = xtrans.m4

Re: [PATCH] pkgconfig files should be installed to $(libdir)

2011-11-17 Thread Daniel Stone
Hi, On 17 November 2011 11:10, Dmitry Shatrov shat...@gmail.com wrote: --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,7 @@ Xtransinclude_HEADERS = \  aclocaldir = $(datadir)/aclocal  aclocal_DATA = xtrans.m4 -pkgconfigdir = $(datadir)/pkgconfig +pkgconfigdir = $(libdir)/pkgconfig  

Re: [PATCH] pkgconfig files should be installed to $(libdir)

2011-11-17 Thread Dmitry Shatrov
Daniel, I looked at several other protocol modules, and all of them use $(libdir) for their pkgconfig files. I'm building a self-contained binary distribution which includes several libraries from x.org, and libxtrans is the only module with such problem. I don't add share/pkgconfig to

Re: [PATCH] pkgconfig files should be installed to $(libdir)

2011-11-17 Thread Gaetan Nadon
On Thu, 2011-11-17 at 15:37 +0400, Dmitry Shatrov wrote: Daniel, I looked at several other protocol modules, and all of them use $(libdir) for their pkgconfig files. I'm building a self-contained binary distribution which includes several libraries from x.org, and libxtrans is the only

Re: [PATCH] pkgconfig files should be installed to $(libdir)

2011-11-17 Thread Alan Coopersmith
On 11/17/11 03:37, Dmitry Shatrov wrote: Daniel, I looked at several other protocol modules, and all of them use $(libdir) for their pkgconfig files. Those are bugs then, they should all use $(datadir). I know I've had to override some in the past when building distro packages, but I thought