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

2009-07-09 Thread RISKÓ Gergely
On Thu, 9 Jul 2009 20:41:38 +0200, Ralf Wildenhues writes: > 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 >> sourc

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

[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 a/Change

[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 ++ test

[PATCH 5/8] Qt: another major cleanup, support for per-executable flags and subdir-objects, silent rules.

2009-07-09 Thread Gergely Risko
Moved the moc handling from handle_source_transform to handle_single_transform. Things like subdir-objects and perexec flags are much easier to handle there. --- ChangeLog |2 +- automake.in | 107 +-- 2 files changed, 61 insertions(+

[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 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 lib

[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 @@ -1,

[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 0/8] Qt's Meta Object Compiler (MOC) integration

2009-07-09 Thread Gergely Risko
Hi, 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. Please note that this is my first automake patch so probably it is totally wrong, please g

[PATCH 2/8] Qt: cleanup, introduction of AM_MOCFLGS, libtool libraries support.

2009-07-09 Thread Gergely Risko
Cleanup: merged output rule creation into handle_source_transform, so this branch only modifies this, and this way we can get rid of lang_header_finish. --- automake.in | 73 ++ 1 files changed, 18 insertions(+), 55 deletions(-) diff --git