diff options
author | Thiago Macieira <thiago.macieira@trolltech.com> | 2006-06-09 21:43:14 +0000 |
---|---|---|
committer | John Palmieri <johnp@remedyz.boston.redhat.com> | 2006-06-28 08:15:18 -0400 |
commit | b7d95a26759ec2dd0989c33f65114f8bd554d13a (patch) | |
tree | 0a16ff3e3a7176ebc1fdaa52361d12eb3a9fb325 | |
parent | 786b31518cfca376ca8ff03ad805082f3f10e992 (diff) |
Patch from Timo Hoenig <thoenig@suse.de>.
* qt/dbus/Makefile.am: New file. Fix "make dist", add all
headers required during build to EXTRA_DIST.
* qt/src/Makefile.am: Fix "make dist", add 'qdbus.h' to
EXTRA_DIST.
* qt/Makefile.am: Fix "make dist", add 'dbus' to DIST_SUBDIRS.
* configure.in: Fix "make dist", take care that the Makefile
for qt/dbus is being generated.
-rw-r--r-- | qt/Makefile.am | 2 | ||||
-rw-r--r-- | qt/dbus/Makefile.am | 23 | ||||
-rw-r--r-- | qt/src/Makefile.am | 2 |
3 files changed, 26 insertions, 1 deletions
diff --git a/qt/Makefile.am b/qt/Makefile.am index 835059b..83d3d9f 100644 --- a/qt/Makefile.am +++ b/qt/Makefile.am @@ -1,4 +1,4 @@ -DIST_SUBDIRS = src tools examples +DIST_SUBDIRS = dbus src tools examples if HAVE_QT QT_SUBDIRS = src tools examples diff --git a/qt/dbus/Makefile.am b/qt/dbus/Makefile.am new file mode 100644 index 0000000..071234d --- /dev/null +++ b/qt/dbus/Makefile.am @@ -0,0 +1,23 @@ +EXTRA_DIST = qdbusabstractadaptor.h \ + qdbusabstractadaptor_p.h \ + qdbusabstractinterface.h \ + qdbusabstractinterface_p.h \ + qdbusbus.h \ + qdbusconnection.h \ + qdbusconnection_p.h \ + qdbuserror.h \ + qdbus.h \ + qdbusinterface.h \ + qdbusinterface_p.h \ + qdbusintrospection_p.h \ + qdbusmacros.h \ + qdbusmarshall_p.h \ + qdbusmessage.h \ + qdbusmessage_p.h \ + qdbusmetaobject_p.h \ + qdbusreply.h \ + qdbusserver.h \ + qdbustypehelper_p.h \ + qdbustype_p.h \ + qdbusutil.h \ + qdbusxmlparser_p.h diff --git a/qt/src/Makefile.am b/qt/src/Makefile.am index 99b1788..a142011 100644 --- a/qt/src/Makefile.am +++ b/qt/src/Makefile.am @@ -64,5 +64,7 @@ libdbus_qt4_1_la_LIBADD= $(DBUS_QT_LIBS) $(top_builddir)/dbus/libdbus-1.la libdbus_qt4_1_la_LDFLAGS= -version-info 1:0 -no-undefined libdbus_qt4_1_la_CPPFLAGS= -DQDBUS_MAKEDLL +EXTRA_DIST = qdbus.h + %.moc: %.h $(QT_MOC) $< > $@ |