Re: [PATCH 0/3] Fix some makefile problems discovered by distcheck

2012-03-05 Thread Gaetan Nadon
On 12-03-04 06:01 PM, Kristian Hoegsberg wrote: > On Sat, Mar 03, 2012 at 05:32:56PM -0500, Gaetan Nadon wrote: >> There is yet another one which I have not found the cause: >> >> It appears that libffi.so cannot found while running distcheck. >> On my system, it is loc

[PATCH 4/4] check: connection-test fails to link to ffi

2012-03-04 Thread Gaetan Nadon
This prevents distcheck from completing. Moving the -lffi at the end of the command fixes the problem. Signed-off-by: Gaetan Nadon --- Some expert should take a look at is. The patch may just hide the real problem deeper. tests/Makefile.am |2 +- 1 files changed, 1

[PATCH 3/3] tests: makefile error: missing test-runner.h

2012-03-04 Thread Gaetan Nadon
Detected by running distcheck Signed-off-by: Gaetan Nadon --- tests/Makefile.am |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index c6e1007..5003348 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -3,7 +3,7 @@ TESTS

[PATCH 2/3] publican: support out-of-source tree build

2012-03-04 Thread Gaetan Nadon
-off-by: Gaetan Nadon --- doc/Wayland/.gitignore |2 +- doc/Wayland/Makefile.am| 98 +++ doc/Wayland/{en-US => en_US}/Architecture.xml |0 doc/Wayland/{en-US => en_US}/Author_Group.xml |0 doc/Wayla

[PATCH 1/3] Fix distcheck where protocol.xsl was missing in the tarball

2012-03-04 Thread Gaetan Nadon
To reproduce, invoke distcheck from an out-of-source tree. Reviewed-by: Peter Hutterer Signed-off-by: Gaetan Nadon --- protocol/.gitignore |1 + protocol/Makefile.am |5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 protocol/.gitignore diff --git a

[PATCH 0/3] Fix some makefile problems discovered by distcheck

2012-03-04 Thread Gaetan Nadon
n/xorg/src/wayland/wayland-master/_build/src/../../src/connection.c:417: undefined reference to `ffi_type_uint32' [...] The first two patches have beeen reviewed and all three of them are needed to get at the fourth problem. Gaetan Nadon (3): Fix distcheck where protocol.xsl was missing

Re: [PATCH 6/6] Hack up distcheck for publican

2012-03-01 Thread Gaetan Nadon
On 12-02-29 07:40 PM, Peter Hutterer wrote: > I failed to figure out a sensible way to convince automake to install "every > file in this directory". Every instance I found on various forums yesterday > came down to the developer knowing the file list. I think having to maintain > the file list man

Re: [PATCH 6/6] Hack up distcheck for publican

2012-03-01 Thread Gaetan Nadon
On 12-02-29 07:40 PM, Peter Hutterer wrote: >> +# Copy the en_US source files into en-US destination >> > +# This is required for out-of-source-tree build as publican does not >> > allow us >> > +# to specify the location of the source code. >> > +$(builddir)/en-US/%: $(srcdir)/en_US/% $(builddir)

Re: [PATCH 6/6] Hack up distcheck for publican

2012-02-29 Thread Gaetan Nadon
tree too (we'd have > to do this anyway since automake creates a read-only source tree, so we > can't just link). > > CC: Gaetan Nadon > Signed-off-by: Peter Hutterer > --- > Gaetan, if you have any better suggestions I'd love to hear them. I have attached

Re: [PATCH 6/6] Hack up distcheck for publican

2012-02-29 Thread Gaetan Nadon
tree too (we'd have > to do this anyway since automake creates a read-only source tree, so we > can't just link). > > CC: Gaetan Nadon > Signed-off-by: Peter Hutterer > --- > Gaetan, if you have any better suggestions I'd love to hear them. > > doc/Way