Re: [PATCH] manual: fix a trivial grammar error.

2009-07-09 Thread Ralf Wildenhues
Hi Jim, * Jim Meyering wrote on Wed, Jul 08, 2009 at 09:24:26PM CEST: +2009-07-08 Jim Meyering meyer...@redhat.com + + manual: fix a trivial grammar error. + * doc/automake.texi (Invoking aclocal): Fix grammar. Thanks! Ralf

[PATCH 1/8] Qt integration

2009-07-09 Thread Gergely Risko
--- automake.in | 86 ++- 1 files changed, 85 insertions(+), 1 deletions(-) diff --git a/automake.in b/automake.in index bab8c42..415d883 100755 --- a/automake.in +++ b/automake.in @@ -809,7 +809,7 @@ register_language ('name' = 'header',

[PATCH 3/8] Qt: documentation added, NEWS and ChangeLog updated.

2009-07-09 Thread Gergely Risko
--- ChangeLog |6 NEWS |3 ++ doc/automake.texi | 75 + 3 files changed, 84 insertions(+), 0 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7b8a2f6..c780be4 100644 --- a/ChangeLog +++ b/ChangeLog @@

[PATCH 4/8] Qt: documentation typo fixes

2009-07-09 Thread Gergely Risko
--- doc/automake.texi |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/automake.texi b/doc/automake.texi index a9495e7..c46d08f 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -6684,14 +6684,14 @@ the build system. For checking the existence of the Qt

[PATCH 6/8] Qt: documentation update.

2009-07-09 Thread Gergely Risko
--- doc/automake.texi | 15 --- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/doc/automake.texi b/doc/automake.texi index c46d08f..aa92729 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -6730,9 +6730,18 @@ class InCodeClass : public QObject @{ #include

[PATCH 7/8] Qt: tests added

2009-07-09 Thread Gergely Risko
--- tests/Makefile.am |5 tests/Makefile.in |5 tests/qt.test | 55 tests/qt2.test| 56 + tests/qt3.test| 57 ++

[PATCH 8/8] Qt: added AM_PROG_MOC, updated Changelog and documentation.

2009-07-09 Thread Gergely Risko
--- ChangeLog |8 doc/automake.texi | 18 -- m4/Makefile.am|1 + m4/Makefile.in|1 + m4/qt.m4 | 32 5 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 m4/qt.m4 diff --git

Re: [PATCH 0/8] Qt's Meta Object Compiler (MOC) integration

2009-07-09 Thread Ralf Wildenhues
Hello Gergely, * Gergely Risko wrote on Thu, Jul 09, 2009 at 01:16:19PM CEST: I've patched automake to include support for Qt's MOC. I've introduced a new prog_QTSOURCES variable for the user to specify the Qt based sources. I've modified the texinfo documentation, added tests. Thank you

problem with make maintainer-clean while doing static linking

2009-07-09 Thread Vincent Torri
Hey, We have a library that uses modules. These modules can be shared lib or can be statically linked to the library. We use that tree structure: evas src lib modules loaders png the library itself is in evas/src/lib the modules (here the png loader) is in

subdirs that should not be configured

2009-07-09 Thread Nicolas Bock
Hello list, I have the following problem: I want to add an external package to our own package. The external package is already configured in the sense that its maintainer ran make dist and I simply untared the tar file into some directory underneath our source tree. I add that directory to

Re: subdirs that should not be configured

2009-07-09 Thread John Calcote
Hi Nicolas, On 7/9/2009 11:13 AM, Nicolas Bock wrote: Hello list, I have the following problem: I want to add an external package to our own package. The external package is already configured in the sense that its maintainer ran make dist and I simply untared the tar file into some directory

Re: problem with make maintainer-clean while doing static linking

2009-07-09 Thread Ralf Wildenhues
Hi Vincent, * Vincent Torri wrote on Thu, Jul 09, 2009 at 08:28:50AM CEST: We have a library that uses modules. These modules can be shared lib or can be statically linked to the library. We use that tree structure: evas src lib modules loaders png the library

Re: subdirs that should not be configured

2009-07-09 Thread Nicolas Bock
Hi John, thanks for the advice. I thought there might be a mechanism built into automake and autoconf to express this paradigm, but the command line option solution is great! Thanks, nick On Thu, 2009-07-09 at 11:39 -0600, John Calcote wrote: Hi Nicolas, On 7/9/2009 11:13 AM, Nicolas Bock