news about the Qt integration?

2009-11-01 Thread Gergely Risko
Hi Ralf, Have you managed to look into my patches about the Qt MOC integration? Thanks, Gergely

[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
@@ -1,3 +1,9 @@ +2009-07-07 Gergely Risko gerg...@risko.hu + + * automake.in (handle_source_transform): added support for Qt, via + the new prog_QTSOURCES variable. + * NEWS: updated. + 2009-06-07 Ralf Wildenhues ralf.wildenh...@gmx.de AM_PROG_GCJ: use AC_CHECK_TOOLS

[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