Please keep this in sync with the upstream SVN git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-tqt@1225998 283d02a7-25f6-0310-bc7c-ecb5cbfe19dav3.5.13-sru
commit
8bf92ab485
@ -0,0 +1,16 @@
|
|||||||
|
Olivier Andrieu <oliv__a@users.sourceforge.net>
|
||||||
|
Philip Blundell <pb@nexus.co.uk>
|
||||||
|
Anders Carlsson <andersca@gnome.org>
|
||||||
|
Kristian Hogsberg <krh@redhat.com>
|
||||||
|
Alex Larsson <alexl@redhat.com>
|
||||||
|
Robert McQueen <robot101@debian.org>
|
||||||
|
Michael Meeks <michael@ximian.com>
|
||||||
|
Seth Nickell <seth@gnome.org>
|
||||||
|
John (J5) Palmieri <johnp@redhat.com>
|
||||||
|
Havoc Pennington <hp@redhat.com>
|
||||||
|
Harri Porten <porten@kde.org>
|
||||||
|
Matthew Rickard <mjricka@epoch.ncsc.mil>
|
||||||
|
Zack Rusin <zack@kde.org>
|
||||||
|
Joe Shaw <joe@assbarn.com>
|
||||||
|
Colin Walters <walters@verbum.org>
|
||||||
|
David Zeuthen <david@fubar.dk>
|
@ -0,0 +1,82 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010-2011 Serghei Amelian
|
||||||
|
# serghei (DOT) amelian (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
project( dbus-tqt-1 )
|
||||||
|
|
||||||
|
|
||||||
|
##### cmake setup ###############################
|
||||||
|
|
||||||
|
cmake_minimum_required( VERSION 2.8 )
|
||||||
|
|
||||||
|
include( FindPkgConfig )
|
||||||
|
include( CheckCXXSourceCompiles )
|
||||||
|
|
||||||
|
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
||||||
|
include( TDEMacros )
|
||||||
|
include( ConfigureChecks.cmake )
|
||||||
|
|
||||||
|
|
||||||
|
##### install paths setup #######################
|
||||||
|
|
||||||
|
tde_setup_install_path( EXEC_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}" )
|
||||||
|
tde_setup_install_path( LIB_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/lib${LIB_SUFFIX}" )
|
||||||
|
tde_setup_install_path( INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include" )
|
||||||
|
tde_setup_install_path( PKGCONFIG_INSTALL_DIR "${LIB_INSTALL_DIR}/pkgconfig" )
|
||||||
|
|
||||||
|
|
||||||
|
##### install headers ###########################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
dbus-qt.h message.h connection.h server.h
|
||||||
|
DESTINATION ${INCLUDE_INSTALL_DIR}/dbus-1.0/dbus )
|
||||||
|
|
||||||
|
|
||||||
|
##### write pkgconfig file ######################
|
||||||
|
|
||||||
|
# string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_EXEC_PREFIX ${EXEC_INSTALL_PREFIX} )
|
||||||
|
# string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_INCLUDE_DIR ${INCLUDE_INSTALL_DIR} )
|
||||||
|
# string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_LIB_DIR ${LIB_INSTALL_DIR} )
|
||||||
|
# configure_file( dbus-tqt.pc.cmake dbus-tqt.pc @ONLY )
|
||||||
|
# install( FILES ${CMAKE_CURRENT_BINARY_DIR}/dbus-tqt.pc DESTINATION ${PKGCONFIG_INSTALL_DIR} )
|
||||||
|
|
||||||
|
|
||||||
|
##### build setup ###############################
|
||||||
|
|
||||||
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include tqt.h" )
|
||||||
|
set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" )
|
||||||
|
|
||||||
|
add_definitions(
|
||||||
|
-DQT_THREAD_SUPPORT
|
||||||
|
${TQT_CFLAGS_OTHER}
|
||||||
|
)
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${DBUS_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### dbus-tqt-1 (shared) #########################
|
||||||
|
|
||||||
|
tde_add_library( dbus-tqt-1 SHARED AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
dbus-qthread.cpp message.cpp connection.cpp
|
||||||
|
integrator.cpp server.cpp
|
||||||
|
VERSION 0.0.0
|
||||||
|
LINK ${TQT_LIBRARIES} ${DBUS_LIBRARIES}
|
||||||
|
DESTINATION ${LIB_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,22 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010-2011 Serghei Amelian
|
||||||
|
# serghei (DOT) amelian (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
# dbus-1
|
||||||
|
pkg_search_module( DBUS dbus-1 )
|
||||||
|
if( NOT DBUS_FOUND )
|
||||||
|
tde_message_fatal( "dbus-1 is required, but was not found on your system" )
|
||||||
|
endif( )
|
||||||
|
|
||||||
|
# qt3
|
||||||
|
find_package( Qt )
|
||||||
|
|
||||||
|
# tqt
|
||||||
|
find_package( TQt )
|
@ -0,0 +1,200 @@
|
|||||||
|
The guidelines in this file are the ideals; it's better to send a
|
||||||
|
not-fully-following-guidelines patch than no patch at all, though. We
|
||||||
|
can always polish it up.
|
||||||
|
|
||||||
|
Mailing list
|
||||||
|
===
|
||||||
|
|
||||||
|
The D-BUS mailing list is message-bus-list@freedesktop.org; discussion
|
||||||
|
of patches, etc. should go there.
|
||||||
|
|
||||||
|
Security
|
||||||
|
===
|
||||||
|
|
||||||
|
Most of D-BUS is security sensitive. Guidelines related to that:
|
||||||
|
|
||||||
|
- avoid memcpy(), sprintf(), strlen(), snprintf, strlcat(),
|
||||||
|
strstr(), strtok(), or any of this stuff. Use DBusString.
|
||||||
|
If DBusString doesn't have the feature you need, add it
|
||||||
|
to DBusString.
|
||||||
|
|
||||||
|
There are some exceptions, for example
|
||||||
|
if your strings are just used to index a hash table
|
||||||
|
and you don't do any parsing/modification of them, perhaps
|
||||||
|
DBusString is wasteful and wouldn't help much. But definitely
|
||||||
|
if you're doing any parsing, reallocation, etc. use DBusString.
|
||||||
|
|
||||||
|
- do not include system headers outside of dbus-memory.c,
|
||||||
|
dbus-sysdeps.c, and other places where they are already
|
||||||
|
included. This gives us one place to audit all external
|
||||||
|
dependencies on features in libc, etc.
|
||||||
|
|
||||||
|
- do not use libc features that are "complicated"
|
||||||
|
and may contain security holes. For example, you probably shouldn't
|
||||||
|
try to use regcomp() to compile an untrusted regular expression.
|
||||||
|
Regular expressions are just too complicated, and there are many
|
||||||
|
different libc's out there.
|
||||||
|
|
||||||
|
- we need to design the message bus daemon (and any similar features)
|
||||||
|
to use limited privileges, run in a chroot jail, and so on.
|
||||||
|
|
||||||
|
http://vsftpd.beasts.org/ has other good security suggestions.
|
||||||
|
|
||||||
|
Coding Style
|
||||||
|
===
|
||||||
|
|
||||||
|
- The C library uses GNU coding conventions, with GLib-like
|
||||||
|
extensions (e.g. lining up function arguments). The
|
||||||
|
Qt wrapper uses KDE coding conventions.
|
||||||
|
|
||||||
|
- Write docs for all non-static functions and structs and so on. try
|
||||||
|
"doxygen Doxyfile" prior to commit and be sure there are no
|
||||||
|
warnings printed.
|
||||||
|
|
||||||
|
- All external interfaces (network protocols, file formats, etc.)
|
||||||
|
should have documented specifications sufficient to allow an
|
||||||
|
alternative implementation to be written. Our implementation should
|
||||||
|
be strict about specification compliance (should not for example
|
||||||
|
heuristically parse a file and accept not-well-formed
|
||||||
|
data). Avoiding heuristics is also important for security reasons;
|
||||||
|
if it looks funny, ignore it (or exit, or disconnect).
|
||||||
|
|
||||||
|
Making a release
|
||||||
|
===
|
||||||
|
|
||||||
|
To make a release of D-BUS, do the following:
|
||||||
|
|
||||||
|
- check out a fresh copy from CVS
|
||||||
|
|
||||||
|
- verify that the libtool versioning/library soname is
|
||||||
|
changed if it needs to be, or not changed if not
|
||||||
|
|
||||||
|
- update the file NEWS based on the ChangeLog
|
||||||
|
|
||||||
|
- add a ChangeLog entry containing the version number
|
||||||
|
you're releasing ("Released 0.3" or something)
|
||||||
|
so people can see which changes were before and after
|
||||||
|
a given release.
|
||||||
|
|
||||||
|
- "make distcheck" (DO NOT just "make dist" - pass the check!)
|
||||||
|
|
||||||
|
- if make distcheck fails, fix it.
|
||||||
|
|
||||||
|
- once distcheck succeeds, "cvs commit"
|
||||||
|
|
||||||
|
- if someone else made changes and the commit fails,
|
||||||
|
you have to "cvs up" and run "make distcheck" again
|
||||||
|
|
||||||
|
- once the commit succeeds, "cvs tag DBUS_X_Y_Z" where
|
||||||
|
X_Y_Z map to version X.Y.Z
|
||||||
|
|
||||||
|
- bump the version number up in configure.in, and commit
|
||||||
|
it. Make sure you do this *after* tagging the previous
|
||||||
|
release!
|
||||||
|
|
||||||
|
- scp your tarball to freedesktop.org server and copy it
|
||||||
|
to /srv/dbus.freedesktop.org/releases. This should
|
||||||
|
be possible if you're in group "dbus"
|
||||||
|
|
||||||
|
- update the wiki page http://www.freedesktop.org/Software/dbus by
|
||||||
|
adding the new release under the Download heading. Then, cut the
|
||||||
|
link and changelog for the previous that was there.
|
||||||
|
|
||||||
|
- update the wiki page
|
||||||
|
http://www.freedesktop.org/Software/DbusReleaseArchive pasting the
|
||||||
|
previous release. Note that bullet points for each of the changelog
|
||||||
|
items must be indented three more spaces to conform to the
|
||||||
|
formatting of the other releases there.
|
||||||
|
|
||||||
|
- post to dbus@lists.freedesktop.org announcing the release.
|
||||||
|
|
||||||
|
|
||||||
|
Environment variables
|
||||||
|
===
|
||||||
|
|
||||||
|
These are the environment variables that are used by the D-BUS client library
|
||||||
|
|
||||||
|
DBUS_VERBOSE=1
|
||||||
|
Turns on printing verbose messages. This only works if D-BUS has been
|
||||||
|
compiled with --enable-verbose-mode
|
||||||
|
|
||||||
|
DBUS_MALLOC_FAIL_NTH=n
|
||||||
|
Can be set to a number, causing every nth call to dbus_alloc or
|
||||||
|
dbus_realloc to fail. This only works if D-BUS has been compiled with
|
||||||
|
--enable-tests.
|
||||||
|
|
||||||
|
DBUS_MALLOC_FAIL_GREATER_THAN=n
|
||||||
|
Can be set to a number, causing every call to dbus_alloc or
|
||||||
|
dbus_realloc to fail if the number of bytes to be allocated is greater
|
||||||
|
than the specified number. This only works if D-BUS has been compiled with
|
||||||
|
--enable-tests.
|
||||||
|
|
||||||
|
DBUS_TEST_MALLOC_FAILURES=n
|
||||||
|
Many of the D-BUS tests will run over and over, once for each malloc
|
||||||
|
involved in the test. Each run will fail a different malloc, plus some
|
||||||
|
number of mallocs following that malloc (because a fair number of bugs
|
||||||
|
only happen if two or more mallocs fail in a row, e.g. error recovery
|
||||||
|
that itself involves malloc). This env variable sets the number of
|
||||||
|
mallocs to fail.
|
||||||
|
Here's why you care: If set to 0, then the malloc checking is skipped,
|
||||||
|
which makes the test suite a heck of a lot faster. Just run with this
|
||||||
|
env variable unset before you commit.
|
||||||
|
|
||||||
|
Tests
|
||||||
|
===
|
||||||
|
|
||||||
|
These are the test programs that are built if dbus is compiled using
|
||||||
|
--enable-tests.
|
||||||
|
|
||||||
|
dbus/dbus-test
|
||||||
|
This is the main unit test program that tests all aspects of the D-BUS
|
||||||
|
client library.
|
||||||
|
|
||||||
|
dbus/bus-test
|
||||||
|
This it the unit test program for the message bus.
|
||||||
|
|
||||||
|
test/break-loader
|
||||||
|
A test that tries to break the message loader by passing it randomly
|
||||||
|
created invalid messages.
|
||||||
|
|
||||||
|
"make check" runs all the deterministic test programs (i.e. not break-loader).
|
||||||
|
|
||||||
|
"make check-coverage" is available if you configure with --enable-gcov and
|
||||||
|
gives a complete report on test suite coverage. You can also run
|
||||||
|
"test/decode-gcov foo.c" on any source file to get annotated source,
|
||||||
|
after running make check with a gcov-enabled tree.
|
||||||
|
|
||||||
|
Patches
|
||||||
|
===
|
||||||
|
|
||||||
|
Please file them at http://bugzilla.freedesktop.org under component
|
||||||
|
dbus, and also post to the mailing list for discussion. The commit
|
||||||
|
rules are:
|
||||||
|
|
||||||
|
- for fixes that don't affect API or protocol, they can be committed
|
||||||
|
if any one qualified reviewer other than patch author
|
||||||
|
reviews and approves
|
||||||
|
|
||||||
|
- for fixes that do affect API or protocol, two people
|
||||||
|
in the reviewer group have to review and approve the commit, and
|
||||||
|
posting to the list is definitely mandatory
|
||||||
|
|
||||||
|
- if there's a live unresolved controversy about a change,
|
||||||
|
don't commit it while the argument is still raging.
|
||||||
|
|
||||||
|
- regardless of reviews, to commit a patch:
|
||||||
|
- make check must pass
|
||||||
|
- the test suite must be extended to cover the new code
|
||||||
|
as much as reasonably feasible
|
||||||
|
- the patch has to follow the portability, security, and
|
||||||
|
style guidelines
|
||||||
|
- the patch should as much as reasonable do one thing,
|
||||||
|
not many unrelated changes
|
||||||
|
No reviewer should approve a patch without these attributes, and
|
||||||
|
failure on these points is grounds for reverting the patch.
|
||||||
|
|
||||||
|
The reviewer group that can approve patches: Havoc Pennington, Michael
|
||||||
|
Meeks, Alex Larsson, Zack Rusin, Joe Shaw, Mikael Hallendal, Richard
|
||||||
|
Hult, Owen Fraser-Green, Olivier Andrieu, Colin Walters.
|
||||||
|
|
||||||
|
|
@ -0,0 +1,294 @@
|
|||||||
|
DBus Installation
|
||||||
|
=================
|
||||||
|
|
||||||
|
Quick start
|
||||||
|
===========
|
||||||
|
|
||||||
|
DBus uses GNU AutoTools for its build system, thus the basic install
|
||||||
|
procedure can be summarized as:
|
||||||
|
|
||||||
|
./configure --prefix=/usr
|
||||||
|
make
|
||||||
|
su make install
|
||||||
|
|
||||||
|
The configure script will automatically determine whether to try and
|
||||||
|
build bindings for GLib, Qt, Qt3, Python and Mono based on what tools
|
||||||
|
are installed on the host system. The default build behaviour can be
|
||||||
|
overridden using the --enable-XXX/--disable-XXX arguments to configure.
|
||||||
|
A typical scenario in which it is desirable to override automatic
|
||||||
|
detection, is during packaging of binary builds, where a predictable
|
||||||
|
dependancy chain is required. For more details on GNU AutoTools
|
||||||
|
installation, consult the generic instructions later in this document
|
||||||
|
|
||||||
|
External software dependancies
|
||||||
|
==============================
|
||||||
|
|
||||||
|
The only fundamental requirement to build DBus is an XML parser,
|
||||||
|
however, there are a number of other software packages which (if
|
||||||
|
present) will enhance functionality.
|
||||||
|
|
||||||
|
Core library
|
||||||
|
------------
|
||||||
|
|
||||||
|
Requisite:
|
||||||
|
|
||||||
|
- Gettext
|
||||||
|
- expat or libxml-2
|
||||||
|
|
||||||
|
NB, expat is the recommended XML parser because it has more robust
|
||||||
|
handling of OOM conditions.
|
||||||
|
|
||||||
|
Optional:
|
||||||
|
|
||||||
|
- libselinux (for SELinux integration)
|
||||||
|
- dnotify (for automatic service file reload)
|
||||||
|
- doxygen (for API documentation)
|
||||||
|
- xmlto (for Spec & other XML documentation)
|
||||||
|
|
||||||
|
GLib Bindings
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Requisite:
|
||||||
|
|
||||||
|
- GLib >= 2.4
|
||||||
|
|
||||||
|
Optional:
|
||||||
|
|
||||||
|
- GTK+ >= 2.4 (for dbus-viewer tool)
|
||||||
|
|
||||||
|
Qt Bindings
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Requisite:
|
||||||
|
|
||||||
|
- QtCore and QtXml >= 4.1.3
|
||||||
|
|
||||||
|
Optional:
|
||||||
|
|
||||||
|
- QtTest (for Qt Unit tests)
|
||||||
|
- QtGui >= 4.1.3 (for the chat example program)
|
||||||
|
|
||||||
|
Note: Qt 4.1.3 is not available in released form. You need to download
|
||||||
|
the 4.1.3 snapshots from Trolltech. However, the Qt binding compiles
|
||||||
|
and works in Qt 4.1.2, but not the dbusidl2cpp tool.
|
||||||
|
|
||||||
|
Note that DBus detects QtCore and QtXml during the configure process
|
||||||
|
using pkg-config. You may need to set the PKG_CONFIG_PATH to include
|
||||||
|
the Qt4 library directory. If you don't have your Qt4 installed, then
|
||||||
|
you may also need to use the --with-qt-tqmoc directive to point to the
|
||||||
|
Qt4 tqmoc executable (e.g. $QTDIR/bin/tqmoc).
|
||||||
|
|
||||||
|
|
||||||
|
Qt 3 Bindings
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Requisite:
|
||||||
|
|
||||||
|
- Qt >= 3.1
|
||||||
|
|
||||||
|
Mono Bindings
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Requisite:
|
||||||
|
|
||||||
|
- Mono >= 0.95
|
||||||
|
|
||||||
|
Optional:
|
||||||
|
|
||||||
|
- MonoDoc >= 0.16 (for API documentation)
|
||||||
|
|
||||||
|
Python Bindings
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Requisite:
|
||||||
|
|
||||||
|
- Python >= 2.4
|
||||||
|
- Pyrex
|
||||||
|
|
||||||
|
====================================================================
|
||||||
|
|
||||||
|
The rest of this document tqcontains the generic GNU AutoTools install
|
||||||
|
insructions....
|
||||||
|
|
||||||
|
Basic Installation
|
||||||
|
==================
|
||||||
|
|
||||||
|
These are generic installation instructions.
|
||||||
|
|
||||||
|
The `configure' shell script attempts to guess correct values for
|
||||||
|
various system-dependent variables used during compilation. It uses
|
||||||
|
those values to create a `Makefile' in each directory of the package.
|
||||||
|
It may also create one or more `.h' files containing system-dependent
|
||||||
|
definitions. Finally, it creates a shell script `config.status' that
|
||||||
|
you can run in the future to recreate the current configuration, a file
|
||||||
|
`config.cache' that saves the results of its tests to speed up
|
||||||
|
reconfiguring, and a file `config.log' containing compiler output
|
||||||
|
(useful mainly for debugging `configure').
|
||||||
|
|
||||||
|
If you need to do unusual things to compile the package, please try
|
||||||
|
to figure out how `configure' could check whether to do them, and mail
|
||||||
|
diffs or instructions to the address given in the `README' so they can
|
||||||
|
be considered for the next release. If at some point `config.cache'
|
||||||
|
tqcontains results you don't want to keep, you may remove or edit it.
|
||||||
|
|
||||||
|
The file `configure.in' is used to create `configure' by a program
|
||||||
|
called `autoconf'. You only need `configure.in' if you want to change
|
||||||
|
it or regenerate `configure' using a newer version of `autoconf'.
|
||||||
|
|
||||||
|
The simplest way to compile this package is:
|
||||||
|
|
||||||
|
1. `cd' to the directory containing the package's source code and type
|
||||||
|
`./configure' to configure the package for your system. If you're
|
||||||
|
using `csh' on an old version of System V, you might need to type
|
||||||
|
`sh ./configure' instead to prevent `csh' from trying to execute
|
||||||
|
`configure' itself.
|
||||||
|
|
||||||
|
Running `configure' takes awhile. While running, it prints some
|
||||||
|
messages telling which features it is checking for.
|
||||||
|
|
||||||
|
2. Type `make' to compile the package.
|
||||||
|
|
||||||
|
3. Optionally, type `make check' to run any self-tests that come with
|
||||||
|
the package.
|
||||||
|
|
||||||
|
4. Type `make install' to install the programs and any data files and
|
||||||
|
documentation.
|
||||||
|
|
||||||
|
5. You can remove the program binaries and object files from the
|
||||||
|
source code directory by typing `make clean'. To also remove the
|
||||||
|
files that `configure' created (so you can compile the package for
|
||||||
|
a different kind of computer), type `make distclean'. There is
|
||||||
|
also a `make maintainer-clean' target, but that is intended mainly
|
||||||
|
for the package's developers. If you use it, you may have to get
|
||||||
|
all sorts of other programs in order to regenerate files that came
|
||||||
|
with the distribution.
|
||||||
|
|
||||||
|
Compilers and Options
|
||||||
|
=====================
|
||||||
|
|
||||||
|
Some systems require unusual options for compilation or linking that
|
||||||
|
the `configure' script does not know about. You can give `configure'
|
||||||
|
initial values for variables by setting them in the environment. Using
|
||||||
|
a Bourne-compatible shell, you can do that on the command line like
|
||||||
|
this:
|
||||||
|
CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
|
||||||
|
|
||||||
|
Or on systems that have the `env' program, you can do it like this:
|
||||||
|
env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
|
||||||
|
|
||||||
|
Compiling For Multiple Architectures
|
||||||
|
====================================
|
||||||
|
|
||||||
|
You can compile the package for more than one kind of computer at the
|
||||||
|
same time, by placing the object files for each architecture in their
|
||||||
|
own directory. To do this, you must use a version of `make' that
|
||||||
|
supports the `VPATH' variable, such as GNU `make'. `cd' to the
|
||||||
|
directory where you want the object files and executables to go and run
|
||||||
|
the `configure' script. `configure' automatically checks for the
|
||||||
|
source code in the directory that `configure' is in and in `..'.
|
||||||
|
|
||||||
|
If you have to use a `make' that does not supports the `VPATH'
|
||||||
|
variable, you have to compile the package for one architecture at a time
|
||||||
|
in the source code directory. After you have installed the package for
|
||||||
|
one architecture, use `make distclean' before reconfiguring for another
|
||||||
|
architecture.
|
||||||
|
|
||||||
|
Installation Names
|
||||||
|
==================
|
||||||
|
|
||||||
|
By default, `make install' will install the package's files in
|
||||||
|
`/usr/local/bin', `/usr/local/man', etc. You can specify an
|
||||||
|
installation prefix other than `/usr/local' by giving `configure' the
|
||||||
|
option `--prefix=PATH'.
|
||||||
|
|
||||||
|
You can specify separate installation prefixes for
|
||||||
|
architecture-specific files and architecture-independent files. If you
|
||||||
|
give `configure' the option `--exec-prefix=PATH', the package will use
|
||||||
|
PATH as the prefix for installing programs and libraries.
|
||||||
|
Documentation and other data files will still use the regular prefix.
|
||||||
|
|
||||||
|
In addition, if you use an unusual directory tqlayout you can give
|
||||||
|
options like `--bindir=PATH' to specify different values for particular
|
||||||
|
kinds of files. Run `configure --help' for a list of the directories
|
||||||
|
you can set and what kinds of files go in them.
|
||||||
|
|
||||||
|
If the package supports it, you can cause programs to be installed
|
||||||
|
with an extra prefix or suffix on their names by giving `configure' the
|
||||||
|
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
||||||
|
|
||||||
|
Optional Features
|
||||||
|
=================
|
||||||
|
|
||||||
|
Some packages pay attention to `--enable-FEATURE' options to
|
||||||
|
`configure', where FEATURE indicates an optional part of the package.
|
||||||
|
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
||||||
|
is something like `gnu-as' or `x' (for the X Window System). The
|
||||||
|
`README' should mention any `--enable-' and `--with-' options that the
|
||||||
|
package recognizes.
|
||||||
|
|
||||||
|
For packages that use the X Window System, `configure' can usually
|
||||||
|
tqfind the X include and library files automatically, but if it doesn't,
|
||||||
|
you can use the `configure' options `--x-includes=DIR' and
|
||||||
|
`--x-libraries=DIR' to specify their locations.
|
||||||
|
|
||||||
|
Specifying the System Type
|
||||||
|
==========================
|
||||||
|
|
||||||
|
There may be some features `configure' can not figure out
|
||||||
|
automatically, but needs to determine by the type of host the package
|
||||||
|
will run on. Usually `configure' can figure that out, but if it prints
|
||||||
|
a message saying it can not guess the host type, give it the
|
||||||
|
`--host=TYPE' option. TYPE can either be a short name for the system
|
||||||
|
type, such as `sun4', or a canonical name with three fields:
|
||||||
|
CPU-COMPANY-SYSTEM
|
||||||
|
|
||||||
|
See the file `config.sub' for the possible values of each field. If
|
||||||
|
`config.sub' isn't included in this package, then this package doesn't
|
||||||
|
need to know the host type.
|
||||||
|
|
||||||
|
If you are building compiler tools for cross-compiling, you can also
|
||||||
|
use the `--target=TYPE' option to select the type of system they will
|
||||||
|
produce code for and the `--build=TYPE' option to select the type of
|
||||||
|
system on which you are compiling the package.
|
||||||
|
|
||||||
|
Sharing Defaults
|
||||||
|
================
|
||||||
|
|
||||||
|
If you want to set default values for `configure' scripts to share,
|
||||||
|
you can create a site shell script called `config.site' that gives
|
||||||
|
default values for variables like `CC', `cache_file', and `prefix'.
|
||||||
|
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
||||||
|
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||||
|
`CONFIG_SITE' environment variable to the location of the site script.
|
||||||
|
A warning: not all `configure' scripts look for a site script.
|
||||||
|
|
||||||
|
Operation Controls
|
||||||
|
==================
|
||||||
|
|
||||||
|
`configure' recognizes the following options to control how it
|
||||||
|
operates.
|
||||||
|
|
||||||
|
`--cache-file=FILE'
|
||||||
|
Use and save the results of the tests in FILE instead of
|
||||||
|
`./config.cache'. Set FILE to `/dev/null' to disable caching, for
|
||||||
|
debugging `configure'.
|
||||||
|
|
||||||
|
`--help'
|
||||||
|
Print a summary of the options to `configure', and exit.
|
||||||
|
|
||||||
|
`--quiet'
|
||||||
|
`--silent'
|
||||||
|
`-q'
|
||||||
|
Do not print messages saying which checks are being made. To
|
||||||
|
suppress all normal output, redirect it to `/dev/null' (any error
|
||||||
|
messages will still be shown).
|
||||||
|
|
||||||
|
`--srcdir=DIR'
|
||||||
|
Look for the package's source code in directory DIR. Usually
|
||||||
|
`configure' can determine that directory automatically.
|
||||||
|
|
||||||
|
`--version'
|
||||||
|
Print the version of Autoconf used to generate the `configure'
|
||||||
|
script, and exit.
|
||||||
|
|
||||||
|
`configure' also accepts some other, not widely useful, options.
|
@ -0,0 +1,504 @@
|
|||||||
|
D-BUS 0.62 (12 June 2006)
|
||||||
|
==
|
||||||
|
- Doc fixes
|
||||||
|
- Added support for all data-types for the dbus tools
|
||||||
|
- Fixed eavesdropping on method calls (dbus-monitor)
|
||||||
|
- Fixed silent dropping of method calls with interface=NULL
|
||||||
|
- Fixed console ownership problems in Solaris
|
||||||
|
- Fixed installation of dbus-signature.h and #include it in dbus/dbus.h
|
||||||
|
- Flush the user database cache on config reload
|
||||||
|
- GLib bindings:
|
||||||
|
- Fix memory leaks
|
||||||
|
- Fix properties in DBusGProxy so that they can be given in any
|
||||||
|
order
|
||||||
|
- Added lots of assertions to ensure correct use
|
||||||
|
- Remove duplicated code
|
||||||
|
- Fix static string pointer uses in GPtrArray-based collections
|
||||||
|
- Python bindings:
|
||||||
|
- Remove reference to sys/cdefs.h
|
||||||
|
- Qt4 bindings:
|
||||||
|
- Code reorganized
|
||||||
|
- Added the dbusidl2cpp, dbuscpp2xml and dbus tools
|
||||||
|
- Added example programs (ping-pong, complex ping-pong, listnames, chat)
|
||||||
|
- Updated selftests
|
||||||
|
- Fixed compilation and .tqmoc- and .ui-file processing and cleaning
|
||||||
|
- Made central classes derive from QObject
|
||||||
|
- Enhance error reporting
|
||||||
|
- Many bugfixes
|
||||||
|
- Mono bindings:
|
||||||
|
- Minor bugfixes
|
||||||
|
|
||||||
|
D-BUS 0.61 (24 Febuary 2006)
|
||||||
|
==
|
||||||
|
- Documentation all around
|
||||||
|
- dbus-launch now produces correct sh and csh syntax
|
||||||
|
- Nested arrays now work correctly
|
||||||
|
- GLib bindings:
|
||||||
|
- Inheriting from DBusGProxy is now possible
|
||||||
|
- GPtrArrays can now be marshalled
|
||||||
|
- org.freedesktop.DBus.GLib.ClientCSymbol annotation added
|
||||||
|
- Openning connections to arbitrary addresses now supported
|
||||||
|
- Python bindings:
|
||||||
|
- sender_keyword and path_keyword keywords added to signal listener API
|
||||||
|
- Byte types now demarshal to unsigned char
|
||||||
|
- calling methods now do the correct thing
|
||||||
|
- Qt bindings:
|
||||||
|
- both Qt3 and Qt4 bindings can be built at the same time
|
||||||
|
- Use the standard org.freedesktop.DBus.Method.NoReply annotation
|
||||||
|
for the "async" calls instead of creating one for us.
|
||||||
|
- Mono bindings:
|
||||||
|
- 64bit arch fixes
|
||||||
|
- Massive bug fixing all around
|
||||||
|
|
||||||
|
D-BUS 0.60 (30 November 2005)
|
||||||
|
==
|
||||||
|
|
||||||
|
- major ABI/API changes - sonames changed
|
||||||
|
- RequestName queuing behavior has changed (refer to dbus-specification)
|
||||||
|
- DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT has been removed and
|
||||||
|
DBUS_NAME_FLAG_ALLOW_REPLACEMENT has been added to the flags
|
||||||
|
- Q_SIGNALS emitted by the bus now show up in the introspect data
|
||||||
|
- auth EXTERNAL now supported on BSD varients
|
||||||
|
- ReleaseName method added to the bus to allow a service
|
||||||
|
to remove itself as owner of a bus name
|
||||||
|
- dbus_connection_read_write added for getting messages off the bus
|
||||||
|
in the absence of a mainloop
|
||||||
|
- Qt4 bindings added and the Qt3 bindings have been depricated
|
||||||
|
- python bindings:
|
||||||
|
- marshal using introspect data if available
|
||||||
|
- better exception handling and propigation
|
||||||
|
- private connections are now supported
|
||||||
|
- UTF-8 cleanups
|
||||||
|
- out_signature added to method decorators for specifying
|
||||||
|
how the return values should be marshaled
|
||||||
|
- sender_keyword added to method decorators for specifying
|
||||||
|
and argument to provide the unique name of the method caller
|
||||||
|
- async_callbacks added to method decorators
|
||||||
|
- multiple inheritance of classes now supported
|
||||||
|
- GLib bindings:
|
||||||
|
- respect NoReply annotations
|
||||||
|
- dbus_g_method_return_get_reply and dbus_g_method_return_send_reply
|
||||||
|
added to the lowlevel code for use when the dbus-glib marshalling
|
||||||
|
code is not adiquate
|
||||||
|
- numerous bug fixes all around
|
||||||
|
|
||||||
|
D-BUS 0.50 (06 September 2005)
|
||||||
|
===
|
||||||
|
This is a minor release from 0.36.2. The series number has changed
|
||||||
|
not because of any technical reasons but as an indication that we
|
||||||
|
are moving closer to 1.0. It is hoped that this will be the last
|
||||||
|
series to see major changes, most of which will be isolated to the
|
||||||
|
GLib and Python bindings, as we transition to concentrate more on
|
||||||
|
bug busting and code auditing.
|
||||||
|
|
||||||
|
- D-Bus builds on the Cygwin platform
|
||||||
|
- Makefile cleanups
|
||||||
|
- Various bug fixes
|
||||||
|
- Optimization of the dbus object tree
|
||||||
|
- Memleaks and GIL crasher bugs have been fixed in the Python bindings
|
||||||
|
|
||||||
|
D-BUS 0.36.2 (29 August 2005)
|
||||||
|
===
|
||||||
|
- Security: Restrict other users from connecting to another users
|
||||||
|
session bus
|
||||||
|
|
||||||
|
D-BUS 0.36.1 (24 August 2005)
|
||||||
|
===
|
||||||
|
- Python Bindings:
|
||||||
|
- fixed to work with hal-tqdevice-manager
|
||||||
|
- For 64bit builds everything is installed to lib64/python2.4/
|
||||||
|
since Python can't handle multilib
|
||||||
|
|
||||||
|
D-BUS 0.36 (23 August 2005)
|
||||||
|
===
|
||||||
|
- Maximum sized of cached messages have been reduced to 10K
|
||||||
|
- Match rules now allow matching on arguments inside the message
|
||||||
|
- introspect.xsl XSLT style sheet added for formatting introspection
|
||||||
|
data into XHTML for analysis
|
||||||
|
- Python bindings:
|
||||||
|
- now have working type objects for explicit
|
||||||
|
typecasting
|
||||||
|
- Variant type has been added
|
||||||
|
- Dictionaries, Variants and Arrays can all be passed the signiture or
|
||||||
|
type(s) of their tqchildren
|
||||||
|
- the optional timeout= keyword has been added when making method calls
|
||||||
|
- match on args has been implemented
|
||||||
|
- a .pth file has been added for dealing with libraries and python files
|
||||||
|
being in different directories such as in 64bit installs
|
||||||
|
- various bug fixes
|
||||||
|
- GLib bindings:
|
||||||
|
- deeply recursive types now supported
|
||||||
|
- many symbols are no longer exported as part of the public API
|
||||||
|
- various memleak and other bug fixes
|
||||||
|
|
||||||
|
D-BUS 0.35.2 (17 July 2005)
|
||||||
|
===
|
||||||
|
- Rename Unix Security Context to SELinux Security Context in API
|
||||||
|
- Fixed more dist errors that distcheck didn't pick up on
|
||||||
|
- Fixed various bugs in the python bindings that prevented them from working
|
||||||
|
|
||||||
|
D-BUS 0.35.1 (16 July 2005)
|
||||||
|
===
|
||||||
|
- Fixed dist error where python/dbus_bindings.pxd was being shipped
|
||||||
|
instead of dbus_bindings.pxd.in
|
||||||
|
- Use this instead of the 0.35 tarball
|
||||||
|
|
||||||
|
D-BUS 0.35 (15 July 2005)
|
||||||
|
===
|
||||||
|
- --with-dbus-user added to the configure scripts for configuring the
|
||||||
|
user the system bus runs on
|
||||||
|
- --with-console-auth-dir added to configure scripts for configuring the
|
||||||
|
directory to look in for console user locks
|
||||||
|
- service files for auto-starting D-Bus services now has the ability to pass
|
||||||
|
in command line arguments to the executable
|
||||||
|
- Huge auto-start bug squashed which caused some services not to start when
|
||||||
|
requested in rapid succession
|
||||||
|
- SE-Linux security contexts can now be appended to messages for inspection
|
||||||
|
by services that enforce their own security policies
|
||||||
|
- Colin says the GLib binding are ready for general consumption
|
||||||
|
- New GLib tutorial
|
||||||
|
- New GLib example code
|
||||||
|
- Python bindings are now version (0,42,0)
|
||||||
|
- Python bindings API has changed on the service side
|
||||||
|
- dbus.service has been split out as a seperate module
|
||||||
|
- dbus.service.Service is renamed to dbus.service.BusName
|
||||||
|
- dbus.service.Object has swapped the bus_name and object_path constructor
|
||||||
|
parameters to make it easier to do inheritance over the bus
|
||||||
|
- dbus.glib has been seperated out in order to lessen the dependency on glib
|
||||||
|
and to allow other mainloops to be integrated with the bindings including
|
||||||
|
a planned generic mainloop for non-gui apps.
|
||||||
|
- Python bindings now aquire the GIL when calling back into the python
|
||||||
|
interpreter. Fixes crashes when using threading and other random segfaults.
|
||||||
|
- New Python tutorial
|
||||||
|
- Numerous D-Bus bug fixes all around
|
||||||
|
|
||||||
|
D-BUS 0.34 (15 June 2005)
|
||||||
|
===
|
||||||
|
- dbus_connection_disconnect is deprecated in favor of dbus_connection_close
|
||||||
|
- The bus can now use D_NOTIFY (if available) to check when configuration files
|
||||||
|
have changed and reload them
|
||||||
|
- New dbus_message_has_path/member/interface API added
|
||||||
|
- The Ping message from the org.freedesktop.DBus.Peer interface is now handled
|
||||||
|
- Complete glib bindings overhaul (and are still under construction)
|
||||||
|
- Tutorial now has an updated GLib section
|
||||||
|
- GLib bindings can now send/receive hash tables, arrays and other complex types
|
||||||
|
- Python bindings overhaul (most public facing API's done)
|
||||||
|
- Python bindings have been split up into separate files
|
||||||
|
- Python added new type classes for hinting to the marshaler what type
|
||||||
|
to send over the wire
|
||||||
|
- Python bindings now have decorators for specifying exported methods and Q_SIGNALS
|
||||||
|
- Numerous bug fixes
|
||||||
|
|
||||||
|
D-BUS 0.33 (25 Apr 2005)
|
||||||
|
===
|
||||||
|
|
||||||
|
- downgrade requirement from GTK+-2.6 to 2.4 for building gtk components
|
||||||
|
- python binding API's have been overhalled to be more "pythonic" and cleaner
|
||||||
|
- python bindings now export dbus.version which is set to (0,40,0)
|
||||||
|
- python bindings now implement the org.freedesktop.DBus.Introspectable interface
|
||||||
|
- python binding match rules are now more flexable
|
||||||
|
- make check has been fixed
|
||||||
|
- many, many major bug fixes
|
||||||
|
|
||||||
|
D-BUS 0.32 (29 Mar 2005)
|
||||||
|
===
|
||||||
|
|
||||||
|
- mono bindings now compiles correctly
|
||||||
|
- mono binding cleanups
|
||||||
|
- glib bindings generates wrappers for bus methods in dbus-glib-bindings.h
|
||||||
|
- glib binding cleanus
|
||||||
|
- users and groups can now be specified by UID and GID in config files
|
||||||
|
- numerous memory leak fixes
|
||||||
|
- various other fixes
|
||||||
|
|
||||||
|
D-BUS 0.31 (07 Mar 2005)
|
||||||
|
===
|
||||||
|
|
||||||
|
- land the new message args API and recursive type system
|
||||||
|
- add docs and fixed Doxygen warnings throught source
|
||||||
|
- split out some functions not needed in libdbus to *-util.c source files
|
||||||
|
- take out type convienience functions
|
||||||
|
- libdbus now back below 150K
|
||||||
|
- booleans are now 32-bit instead of 8-bit
|
||||||
|
- specification updated
|
||||||
|
- grand renaming to strip out the use of "service"
|
||||||
|
just say "name" instead (or "bus name" when ambiguous)
|
||||||
|
- rename dbus-daemon-1 to dbus-daemon throughout
|
||||||
|
- rename activation to auto-start
|
||||||
|
- auto-start on by default now
|
||||||
|
- note that libdbus is the low-level API
|
||||||
|
- python bindings updated to the new API
|
||||||
|
- mono bindings updated to the new API
|
||||||
|
- add 16 bit types
|
||||||
|
- dictionaries are now ARRAYS of DICT_ENTRY
|
||||||
|
- dbus-glib-tool renamed to dbus-binding-tool
|
||||||
|
- massive rewrite of the glib bindings
|
||||||
|
- saner names for the dbus interface, object path and service defines
|
||||||
|
- new functions for handling type signitures
|
||||||
|
- bump sonames for libdbus and libdbus-glib
|
||||||
|
- various small fixes
|
||||||
|
|
||||||
|
D-BUS 0.23 (11 Jan 2005)
|
||||||
|
===
|
||||||
|
|
||||||
|
- add setgroups() to drop supplementary groups
|
||||||
|
- updated SELinux support
|
||||||
|
- add an "at console" security policy
|
||||||
|
- fix a bug where org.freedesktop.DBus wasn't recognized as an existing
|
||||||
|
service.
|
||||||
|
- error out if --enable-mono is explicitly set and mono libs can't be found
|
||||||
|
- set the max_match_rules_per_connection limit from the config file.
|
||||||
|
- removed dbus_bug_get_with_g_main since it's been tqreplaced by
|
||||||
|
dbus_g_bus_get
|
||||||
|
- fix fd leaks in socket code
|
||||||
|
- lots and lots of mono binding updates, including fixes to make it
|
||||||
|
compatible with Mono 1.1.3
|
||||||
|
- added --nofork option to override config file setting at runtime
|
||||||
|
- added support for int64 and uint64 to the python bindings
|
||||||
|
- lots of python binding updates
|
||||||
|
- config file DTD updates
|
||||||
|
- use SerivceOwnerChanges signal instead of ServiceCreated and
|
||||||
|
ServiceDeleted
|
||||||
|
- fixes to the authentication code
|
||||||
|
- new init script for Slackware
|
||||||
|
- print out the pid even when --fork is passed
|
||||||
|
- increase preallocation sizes in DBusMessage to heavily reduce
|
||||||
|
reallocs
|
||||||
|
- lots of performance enhancements
|
||||||
|
- lots more small bug fixes
|
||||||
|
|
||||||
|
D-BUS 0.22
|
||||||
|
===
|
||||||
|
|
||||||
|
- add --reply-timeout to dbus-send
|
||||||
|
- fix a memleak
|
||||||
|
- fix Solaris/Forte build
|
||||||
|
- switch to AFL 2.1 rather than 2.0 to address patent termination clause
|
||||||
|
concerns
|
||||||
|
- add SELinux support
|
||||||
|
- mostly repair libxml backend for config parser, still doesn't
|
||||||
|
pass out of memory tests
|
||||||
|
- fix distcheck to include language bindings
|
||||||
|
- add GetConnectionUnixUser method on bus driver
|
||||||
|
- also for UnixProcessID
|
||||||
|
- lots of Python, Mono, other binding fixes
|
||||||
|
- change GLib bindings to not include dbus/dbus.h (fully encapsulate libdbus)
|
||||||
|
- pass paths as strings, not arrays of string
|
||||||
|
- add message signature header field
|
||||||
|
- cleanups to marshaling code
|
||||||
|
- clean up authentication code
|
||||||
|
- reload conf files on SIGHUP
|
||||||
|
- rename SERVICE/SENDER_SERVICE to DESTINATION/SENDER
|
||||||
|
- fix circular conf file inclusion
|
||||||
|
- allow empty arrays
|
||||||
|
- tons of other small bugfixes
|
||||||
|
|
||||||
|
D-BUS 0.21
|
||||||
|
===
|
||||||
|
|
||||||
|
- implement "auto activation" flag on messages, so the destination
|
||||||
|
service can be launched automatically
|
||||||
|
- fix a bug in custom type marshaling
|
||||||
|
- optimize case where multiple apps activate the same service
|
||||||
|
(avoid "thundering herd")
|
||||||
|
- add dynamic service file discovery/reloading
|
||||||
|
- fix a busy loop when blocking for a reply
|
||||||
|
- fix a 64-bit crash involving varargs
|
||||||
|
- fix a bus crash when processing an AcquireService
|
||||||
|
- allow appending TYPE_BYTE via append_args_valist
|
||||||
|
- fix dicts-inside-dicts
|
||||||
|
- enhancements to Python and Qt bindings
|
||||||
|
|
||||||
|
D-BUS 0.20
|
||||||
|
===
|
||||||
|
|
||||||
|
This release lands some very large API changes and numerous bugfixes.
|
||||||
|
The list of changes is too large to fully document here; please refer
|
||||||
|
to the documentation, and message-bus-list archives.
|
||||||
|
|
||||||
|
D-BUS 0.13
|
||||||
|
===
|
||||||
|
|
||||||
|
This is probably the last release before landing the large API changes
|
||||||
|
on the "dbus-object-names" branch.
|
||||||
|
|
||||||
|
- fix system bus to always use filesystem socket; anyone
|
||||||
|
can create any abstract socket, which isn't secure
|
||||||
|
since if you can crash the system bus you'd be able
|
||||||
|
to tqreplace it.
|
||||||
|
- add DTD for configuration file
|
||||||
|
- improve specification a bit
|
||||||
|
|
||||||
|
D-BUS 0.12
|
||||||
|
===
|
||||||
|
|
||||||
|
- fix "service messagebus status" on Red Hat
|
||||||
|
- fix demarshaling of DBUS_TYPE_NAMED
|
||||||
|
- fix "eval `dbus-launch --exit-with-session`" to exit properly
|
||||||
|
- fix build without --prefix
|
||||||
|
- useless fooling with Mono bindings
|
||||||
|
- useless fooling with gcj bindings
|
||||||
|
- fix srcdir != builddir
|
||||||
|
- fix various compiler warnings and other issues
|
||||||
|
- add get/set data to DBusMessage
|
||||||
|
- fix headers for C++
|
||||||
|
- OS X build fixes
|
||||||
|
- abstract domain sockets support (Linux only)
|
||||||
|
- add dbus-cleanup-sockets utility for people
|
||||||
|
not using linux
|
||||||
|
- be consistent about defaulting to --session/--system
|
||||||
|
with command line tools
|
||||||
|
- merge in policies from included config files
|
||||||
|
- fix build on non-x86
|
||||||
|
- docs updates
|
||||||
|
- lots of other bugfixes
|
||||||
|
|
||||||
|
D-BUS 0.11
|
||||||
|
===
|
||||||
|
|
||||||
|
- add --enable-docs to turn off/on the docbook stuff
|
||||||
|
(doesn't cover doxygen stuff yet)
|
||||||
|
- make people define DBUS_API_SUBJECT_TO_CHANGE
|
||||||
|
and read warning in README so they don't
|
||||||
|
expect the API to be frozen already
|
||||||
|
- rename .pc files to "dbus-1.pc" instead of
|
||||||
|
"dbus-1.0.pc" etc. - this will require changing
|
||||||
|
pkg-config invocations
|
||||||
|
- some docs cleanups
|
||||||
|
- add man pages for all executables
|
||||||
|
- allow send to/from bus driver in the default system.conf
|
||||||
|
- fix user lookup bug
|
||||||
|
- implement dbus-launch to launch the session message bus
|
||||||
|
- fix some thread deadlocks
|
||||||
|
- some performance profiling/optimization
|
||||||
|
- add dbus_bus_activate_service() function
|
||||||
|
- fix some minor bugs here and there
|
||||||
|
- install Red Hat initscript in the right place
|
||||||
|
|
||||||
|
D-BUS 0.10
|
||||||
|
===
|
||||||
|
|
||||||
|
- reversed order of args to dbus_message_new()
|
||||||
|
- renamed dbus_message_name_is() and some other
|
||||||
|
functions
|
||||||
|
- change DBusWatch to have dbus_watch_handle()
|
||||||
|
similar to dbus_timeout_handle(), drop
|
||||||
|
connection/server-specific handle routines
|
||||||
|
- change message serials to be unsigned
|
||||||
|
- implemented <allow>/<deny>/<limit> features for
|
||||||
|
config file; system bus now has a deny-all policy
|
||||||
|
by default.
|
||||||
|
- system.conf has <includedir>system.d</includedir>
|
||||||
|
so packages can install additions to the default
|
||||||
|
policy to <allow> the messages they need. e.g.
|
||||||
|
CUPS might install a cups.conf - see
|
||||||
|
test/data/valid-config-files/system.d/test.conf
|
||||||
|
for an example.
|
||||||
|
- add timeouts for authentication, activation
|
||||||
|
- add glib-style "checks" on public API, enable
|
||||||
|
those by default, disable assertions by default
|
||||||
|
- add GMainContext argument to GLib setup functions,
|
||||||
|
can be NULL for default context. Needed for threads.
|
||||||
|
- add 64-bit integer type
|
||||||
|
- validate type of standard message header fields
|
||||||
|
- consider messages in the org.freedesktop.Local
|
||||||
|
namespace to be invalid (to avoid fake disconnect
|
||||||
|
messages for example)
|
||||||
|
- fix assorted memory leaks and other bugs in
|
||||||
|
the SHA-1 auth mechanism
|
||||||
|
- cache user database information (groups user is
|
||||||
|
in, etc.) helps a lot with NIS
|
||||||
|
- always store uid_t, pid_t, gid_t in "ulong"
|
||||||
|
rather than "int"
|
||||||
|
- implement config file settings for which
|
||||||
|
users can connect
|
||||||
|
- SHA-1 unit test
|
||||||
|
- dbus-send, dbus-monitor command line utilities
|
||||||
|
- fixed lots of misc crashes and other bugs
|
||||||
|
|
||||||
|
D-BUS 0.9
|
||||||
|
===
|
||||||
|
|
||||||
|
- implemented a test case for service activation,
|
||||||
|
and fixed many bugs exposed by that
|
||||||
|
- implemented recursive argument marshaling/demarshaling
|
||||||
|
for messages, allowing multidimensional arrays
|
||||||
|
- fixed up integration of message dispatch with
|
||||||
|
main loop by adding a callback on change of
|
||||||
|
dispatch status
|
||||||
|
- add a pidfile feature to daemon
|
||||||
|
- some build fixes
|
||||||
|
- clean up unix domain sockets on exit
|
||||||
|
- add --print-address and the ability
|
||||||
|
to create a random server address
|
||||||
|
in a temporary directory
|
||||||
|
|
||||||
|
D-BUS 0.8
|
||||||
|
===
|
||||||
|
|
||||||
|
- fix dumb bug in 0.7
|
||||||
|
|
||||||
|
D-BUS 0.7
|
||||||
|
===
|
||||||
|
|
||||||
|
- implement configuration file used to control bus characteristics
|
||||||
|
- implement daemon mode, changing user ID, and other system
|
||||||
|
bus features
|
||||||
|
- add init scripts for systemwide bus
|
||||||
|
- add "make check-coverage" target to check test coverage
|
||||||
|
- more test suite additions
|
||||||
|
- many, many bugfixes
|
||||||
|
- many API changes/fixes
|
||||||
|
|
||||||
|
D-BUS 0.6
|
||||||
|
===
|
||||||
|
- Vastly improved bus daemon test suite
|
||||||
|
- Lots of misc. bugfixes and memory leak fixes
|
||||||
|
- Support for marshalling key/value data
|
||||||
|
- Activation improvements.
|
||||||
|
|
||||||
|
D-BUS 0.5
|
||||||
|
===
|
||||||
|
|
||||||
|
- Specification updates
|
||||||
|
- port to OS X and other BSD variants
|
||||||
|
- port to Solaris
|
||||||
|
- Partial work on cookie-based authentication
|
||||||
|
- Thread safety fixes
|
||||||
|
- Lots of misc. bugfixes
|
||||||
|
- Support for more array types
|
||||||
|
- Add data Q_SLOTS to DBusServer
|
||||||
|
- DBusString security audit fixes
|
||||||
|
- Fix for systems (or valgrind) with unaligned malloc blocks
|
||||||
|
|
||||||
|
D-BUS 0.4
|
||||||
|
===
|
||||||
|
|
||||||
|
- Preliminary activation support.
|
||||||
|
- Better authentication test suite
|
||||||
|
- Bus test program
|
||||||
|
- Specification updates
|
||||||
|
- Thread safety
|
||||||
|
- Bug fixes
|
||||||
|
|
||||||
|
D-BUS 0.3
|
||||||
|
===
|
||||||
|
|
||||||
|
- Preliminary limitations
|
||||||
|
- Message sending works
|
||||||
|
- Bus client
|
||||||
|
- Array marshalling/demarshalling
|
||||||
|
- Services
|
||||||
|
- Better OOM handling in the bus
|
||||||
|
- In-proc debug transport
|
||||||
|
- Transport/server address support
|
||||||
|
|
||||||
|
D-BUS 0.2
|
||||||
|
===
|
||||||
|
|
||||||
|
- Include test code in the tarball.
|
||||||
|
|
||||||
|
D-BUS 0.1
|
||||||
|
===
|
||||||
|
|
||||||
|
- Initial release.
|
@ -0,0 +1,101 @@
|
|||||||
|
D-BUS is a simple IPC library based on messages.
|
||||||
|
|
||||||
|
See also the file HACKING for notes of interest to developers working on D-BUS.
|
||||||
|
|
||||||
|
See http://www.freedesktop.org/software/dbus/ for lots of documentation,
|
||||||
|
mailing lists, etc.
|
||||||
|
|
||||||
|
Note
|
||||||
|
===
|
||||||
|
|
||||||
|
A core concept of the D-BUS implementation is that "libdbus" is
|
||||||
|
intended to be a low-level API, similar to Xlib. Most programmers are
|
||||||
|
intended to use the bindings to GLib, Qt, Python, Mono, Java, or
|
||||||
|
whatever. These bindings have varying levels of completeness.
|
||||||
|
|
||||||
|
Configuration flags
|
||||||
|
===
|
||||||
|
|
||||||
|
These are the dbus-specific configuration flags that can be given to
|
||||||
|
the ./configure program.
|
||||||
|
|
||||||
|
--enable-qt enable Qt-friendly client library (note: Qt4)
|
||||||
|
--enable-qt-debug enable Qt-friendly client library, linked to debug
|
||||||
|
Qt libraries
|
||||||
|
--enable-qt3 enable Qt3-friendly client library
|
||||||
|
--enable-glib enable GLib-friendly client library
|
||||||
|
--enable-gtk enable GTK-requiring executables
|
||||||
|
--enable-tests enable unit test code
|
||||||
|
--enable-ansi enable -ansi -pedantic gcc flags
|
||||||
|
--enable-verbose-mode support verbose debug mode
|
||||||
|
--enable-asserts include assertion checks
|
||||||
|
--enable-checks include sanity checks on public API
|
||||||
|
--enable-xml-docs build XML documentation (requires xmlto)
|
||||||
|
--enable-doxygen-docs build DOXYGEN documentation (requires Doxygen)
|
||||||
|
--enable-gcov compile with coverage profiling instrumentation (gcc only)
|
||||||
|
--enable-abstract-sockets
|
||||||
|
use abstract socket namespace (linux only)
|
||||||
|
--enable-gcj build gcj bindings
|
||||||
|
--enable-mono build mono bindings
|
||||||
|
--enable-mono-docs build mono docs
|
||||||
|
--enable-python build python bindings
|
||||||
|
--enable-selinux build with SELinux support
|
||||||
|
--enable-dnotify build with dnotify support (linux only)
|
||||||
|
|
||||||
|
--with-qt-tqmoc=<path> tqmoc for Qt
|
||||||
|
--with-qt3-tqmoc=<path> tqmoc for Qt3
|
||||||
|
--with-xml=libxml/expat XML library to use
|
||||||
|
--with-init-scripts=redhat Style of init scripts to install
|
||||||
|
--with-session-socket-dir=dirname Where to put sockets for the per-login-session message bus
|
||||||
|
--with-test-socket-dir=dirname Where to put sockets for make check
|
||||||
|
--with-system-pid-file=pidfile PID file for systemwide daemon
|
||||||
|
--with-system-socket=filename UNIX domain socket for systemwide daemon
|
||||||
|
--with-console-auth-dir=dirname directory to check for console ownerhip
|
||||||
|
--with-dbus-user=<user> User for running the DBUS daemon (messagebus)
|
||||||
|
--with-gnu-ld assume the C compiler uses GNU ld [default=no]
|
||||||
|
--with-tags[=TAGS] include additional configurations [automatic]
|
||||||
|
--with-x use the X Window System
|
||||||
|
|
||||||
|
|
||||||
|
API/ABI Policy
|
||||||
|
===
|
||||||
|
|
||||||
|
D-BUS API/ABI and protocol necessarily remain in flux until we are
|
||||||
|
sure it will meet the various needs it's intended to meet. This means
|
||||||
|
we need to see some significant sample usage in the contexts of GNOME,
|
||||||
|
KDE, desktop applications, and systemwide uses such as print queue
|
||||||
|
monitoring, hotplug events, or whatever. We need the flexibility to
|
||||||
|
incorporate feedback from this sample usage.
|
||||||
|
|
||||||
|
Once we feel confident in the protocol and the API, we will release a
|
||||||
|
version 1.0. At that point, the intent is:
|
||||||
|
|
||||||
|
- The protocol will never be broken again; any message bus should
|
||||||
|
work with any client forever. However, extensions are possible
|
||||||
|
where the protocol is extensible.
|
||||||
|
|
||||||
|
- If the library API is modified incompatibly, we will rename it
|
||||||
|
as in http://ometer.com/parallel.html - in other words,
|
||||||
|
it will always be possible to compile against and use the older
|
||||||
|
API, and apps will always get the API they expect.
|
||||||
|
|
||||||
|
Until 1.0 is released, feedback that requires API changes may be
|
||||||
|
incorporated into D-BUS. This may break the API, the ABI, the
|
||||||
|
protocol, or all three.
|
||||||
|
|
||||||
|
To avoid a huge soname, the plan is to increment the soname only
|
||||||
|
between official stable releases, not with every development snapshot.
|
||||||
|
Versions numbered 0.x are considered development snapshots.
|
||||||
|
|
||||||
|
Until 1.0 is released, you have to define -DDBUS_API_SUBJECT_TO_CHANGE
|
||||||
|
just as a safety check to be sure everyone is aware of this API/ABI
|
||||||
|
policy and has the right expectations.
|
||||||
|
|
||||||
|
We do need people to test the APIs, so please do use the development
|
||||||
|
snapshots of D-BUS. They are intended to work and we do actively
|
||||||
|
address bugs.
|
||||||
|
|
||||||
|
However, if you're shipping a commercial binary-only application that
|
||||||
|
needs to keep running on M future versions of N operating systems, you
|
||||||
|
might want to include your own copy of D-BUS rather than relying on
|
||||||
|
the installed copy, for example.
|
@ -0,0 +1,168 @@
|
|||||||
|
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
||||||
|
/* connection.cpp: TQt wrapper for DBusConnection
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.0
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#include "connection.h"
|
||||||
|
|
||||||
|
using namespace DBusQt;
|
||||||
|
|
||||||
|
#include "integrator.h"
|
||||||
|
using Internal::Integrator;
|
||||||
|
|
||||||
|
struct Connection::Private
|
||||||
|
{
|
||||||
|
Private( Connection *qq );
|
||||||
|
void setConnection( DBusConnection *c );
|
||||||
|
DBusConnection *connection;
|
||||||
|
int connectionSlot;
|
||||||
|
DBusError error;
|
||||||
|
Integrator *integrator;
|
||||||
|
int timeout;
|
||||||
|
Connection *q;
|
||||||
|
};
|
||||||
|
|
||||||
|
Connection::Private::Private( Connection *qq )
|
||||||
|
: connection( 0 ), connectionSlot( 0 ), integrator( 0 ),
|
||||||
|
timeout( -1 ), q( qq )
|
||||||
|
{
|
||||||
|
dbus_error_init( &error );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::Private::setConnection( DBusConnection *c )
|
||||||
|
{
|
||||||
|
if (!c) {
|
||||||
|
qDebug( "error: %s, %s", error.name, error.message );
|
||||||
|
dbus_error_free( &error );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
connection = c;
|
||||||
|
integrator = new Integrator( c, q );
|
||||||
|
connect( integrator, TQT_SIGNAL(readReady()), q, TQT_SLOT(dispatchRead()) );
|
||||||
|
}
|
||||||
|
|
||||||
|
Connection::Connection( TQObject *tqparent )
|
||||||
|
: TQObject( tqparent )
|
||||||
|
{
|
||||||
|
d = new Private( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
Connection::Connection( const TQString& host, TQObject *tqparent )
|
||||||
|
: TQObject( tqparent )
|
||||||
|
{
|
||||||
|
d = new Private( this );
|
||||||
|
|
||||||
|
if ( !host.isEmpty() )
|
||||||
|
init( host );
|
||||||
|
}
|
||||||
|
|
||||||
|
Connection::Connection( DBusBusType type, TQObject* tqparent )
|
||||||
|
: TQObject( tqparent )
|
||||||
|
{
|
||||||
|
d = new Private( this );
|
||||||
|
d->setConnection( dbus_bus_get(type, &d->error) );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::init( const TQString& host )
|
||||||
|
{
|
||||||
|
d->setConnection( dbus_connection_open( host.ascii(), &d->error) );
|
||||||
|
//dbus_connection_allocate_data_slot( &d->connectionSlot );
|
||||||
|
//dbus_connection_set_data( d->connection, d->connectionSlot, 0, 0 );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Connection::isConnected() const
|
||||||
|
{
|
||||||
|
return dbus_connection_get_is_connected( d->connection );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Connection::isAuthenticated() const
|
||||||
|
{
|
||||||
|
return dbus_connection_get_is_authenticated( d->connection );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::open( const TQString& host )
|
||||||
|
{
|
||||||
|
if ( host.isEmpty() ) return;
|
||||||
|
|
||||||
|
init( host );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::close()
|
||||||
|
{
|
||||||
|
dbus_connection_close( d->connection );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::flush()
|
||||||
|
{
|
||||||
|
dbus_connection_flush( d->connection );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::dispatchRead()
|
||||||
|
{
|
||||||
|
while ( dbus_connection_dispatch( d->connection ) == DBUS_DISPATCH_DATA_REMAINS )
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
DBusConnection* Connection::connection() const
|
||||||
|
{
|
||||||
|
return d->connection;
|
||||||
|
}
|
||||||
|
|
||||||
|
Connection::Connection( DBusConnection *connection, TQObject *tqparent )
|
||||||
|
: TQObject( tqparent )
|
||||||
|
{
|
||||||
|
d = new Private(this);
|
||||||
|
d->setConnection(connection);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::send( const Message &m )
|
||||||
|
{
|
||||||
|
dbus_connection_send(d->connection, m.message(), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::sendWithReply( const Message& )
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
Message Connection::sendWithReplyAndBlock( const Message &m )
|
||||||
|
{
|
||||||
|
DBusMessage *reply;
|
||||||
|
reply = dbus_connection_send_with_reply_and_block( d->connection, m.message(), d->timeout, &d->error );
|
||||||
|
if (dbus_error_is_set(&d->error)) {
|
||||||
|
qDebug("error: %s, %s", d->error.name, d->error.message);
|
||||||
|
dbus_error_free(&d->error);
|
||||||
|
}
|
||||||
|
return Message( reply );
|
||||||
|
}
|
||||||
|
|
||||||
|
void* Connection::virtual_hook( int, void* )
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void Connection::dbus_connection_setup_with_qt_main (DBusConnection *connection)
|
||||||
|
{
|
||||||
|
d->setConnection( connection );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "connection.moc"
|
@ -0,0 +1,84 @@
|
|||||||
|
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
||||||
|
/* connection.h: TQt wrapper for DBusConnection
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.1
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#ifndef DBUS_TQT_CONNECTION_H
|
||||||
|
#define DBUS_TQT_CONNECTION_H
|
||||||
|
|
||||||
|
#include "message.h"
|
||||||
|
|
||||||
|
#include <tqobject.h>
|
||||||
|
#include <tqstring.h>
|
||||||
|
|
||||||
|
#include "dbus/dbus.h"
|
||||||
|
|
||||||
|
namespace DBusQt {
|
||||||
|
namespace Internal {
|
||||||
|
class Integrator;
|
||||||
|
}
|
||||||
|
|
||||||
|
class Connection : public TQObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
TQ_OBJECT
|
||||||
|
public:
|
||||||
|
Connection( TQObject *tqparent =0 );
|
||||||
|
Connection( const TQString& host,
|
||||||
|
TQObject *tqparent = 0 );
|
||||||
|
Connection( DBusBusType type, TQObject* tqparent = 0 );
|
||||||
|
|
||||||
|
bool isConnected() const;
|
||||||
|
bool isAuthenticated() const;
|
||||||
|
|
||||||
|
Message borrowMessage();
|
||||||
|
Message popMessage();
|
||||||
|
void stealBorrowMessage( const Message& );
|
||||||
|
void dbus_connection_setup_with_qt_main (DBusConnection *connection);
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void open( const TQString& );
|
||||||
|
void close();
|
||||||
|
void flush();
|
||||||
|
void send( const Message& );
|
||||||
|
void sendWithReply( const Message& );
|
||||||
|
Message sendWithReplyAndBlock( const Message& );
|
||||||
|
|
||||||
|
protected slots:
|
||||||
|
void dispatchRead();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void init( const TQString& host );
|
||||||
|
virtual void *virtual_hook( int id, void *data );
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class Internal::Integrator;
|
||||||
|
DBusConnection *connection() const;
|
||||||
|
Connection( DBusConnection *connection, TQObject *tqparent );
|
||||||
|
|
||||||
|
private:
|
||||||
|
struct Private;
|
||||||
|
Private *d;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,81 @@
|
|||||||
|
/* -*- mode: C; c-file-style: "gnu" -*- */
|
||||||
|
/*
|
||||||
|
* dbus-qt.h TQt integration
|
||||||
|
*
|
||||||
|
* Copyright (C) 2002 DBus Developers
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.1
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2.1 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||||
|
* 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#ifndef DBUS_TQT_H
|
||||||
|
#define DBUS_TQT_H
|
||||||
|
|
||||||
|
#include <dbus/dbus.h>
|
||||||
|
/*
|
||||||
|
* Two approaches - one presented below a DBusQtConnection
|
||||||
|
* object which is a TQt wrapper around DBusConnection
|
||||||
|
class DBusQtConnection : public TQObject {
|
||||||
|
TQ_OBJECT
|
||||||
|
public:
|
||||||
|
DBusQtConnection( const char *address=0, TQObject *tqparent=0,
|
||||||
|
const char *name=0 );
|
||||||
|
|
||||||
|
bool open( const char *address );
|
||||||
|
bool isConnected() const;
|
||||||
|
int numMessages() const;
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void disconnect();
|
||||||
|
void flush();
|
||||||
|
void sendMessage( DBusMessage *message );
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void message( DBusMessage* message );
|
||||||
|
void error( const char* error );
|
||||||
|
private:
|
||||||
|
DBusConnection *mConnection;
|
||||||
|
TQSocketNotifier *mReadNotifier;
|
||||||
|
TQSocketNotifier *mWriteNotifier;
|
||||||
|
};
|
||||||
|
*
|
||||||
|
* Second approach is to have a static TQt dispatcher like:
|
||||||
|
class DBusQtNotifier : public TQObject {
|
||||||
|
TQ_OBJECT
|
||||||
|
public:
|
||||||
|
static DBusQtNotifier* dbus_qt_notifier();
|
||||||
|
void addConnection(DBusConnection* connection);
|
||||||
|
signals:
|
||||||
|
void message (DBusConnection* connection, DBusMessage* message);
|
||||||
|
|
||||||
|
private:
|
||||||
|
DBusQtNotifier(TQObject *tqparent);
|
||||||
|
private slots:
|
||||||
|
void processNotifiers( int socket );
|
||||||
|
private:
|
||||||
|
//implemented in terms of TQSocketNotifiers
|
||||||
|
TQAsciiDict<DBusConnection> mReadNotifiers;
|
||||||
|
TQAsciiDict<DBusConnection> mWriteNotifiers;
|
||||||
|
};
|
||||||
|
*
|
||||||
|
* First one gives us a full wrapper for DBusConnection (the TQt way),
|
||||||
|
* the other exposes DBusConnection, so would be easier to maintain
|
||||||
|
* and keep up while DBus evolves.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#endif /* DBUS_TQT_H */
|
@ -0,0 +1,164 @@
|
|||||||
|
/* -*- mode: C; c-file-style: "gnu" -*- */
|
||||||
|
/* dbus-qthread.cpp TQt threads integration
|
||||||
|
*
|
||||||
|
* Copyright (C) 2002 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.0
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <dbus/dbus.h>
|
||||||
|
#include <tqmutex.h>
|
||||||
|
|
||||||
|
//#if defined(TQT_THREAD_SUPPORT)
|
||||||
|
#if 0
|
||||||
|
|
||||||
|
static DBusMutex * dbus_qmutex_new (void);
|
||||||
|
static void dbus_qmutex_free (DBusMutex *mutex);
|
||||||
|
static dbus_bool_t dbus_qmutex_lock (DBusMutex *mutex);
|
||||||
|
static dbus_bool_t dbus_qmutex_unlock (DBusMutex *mutex);
|
||||||
|
|
||||||
|
static DBusCondVar*dbus_qcondvar_new (void);
|
||||||
|
static void dbus_qcondvar_free (DBusCondVar *cond);
|
||||||
|
static void dbus_qcondvar_wait (DBusCondVar *cond,
|
||||||
|
DBusMutex *mutex);
|
||||||
|
static dbus_bool_t dbus_qcondvar_wait_timeout (DBusCondVar *cond,
|
||||||
|
DBusMutex *mutex,
|
||||||
|
int timeout_msec);
|
||||||
|
static void dbus_qcondvar_wake_one (DBusCondVar *cond);
|
||||||
|
static void dbus_qcondvar_wake_all (DBusCondVar *cond);
|
||||||
|
|
||||||
|
|
||||||
|
static const DBusThreadFunctions functions =
|
||||||
|
{
|
||||||
|
DBUS_THREAD_FUNCTIONS_NEW_MASK |
|
||||||
|
DBUS_THREAD_FUNCTIONS_FREE_MASK |
|
||||||
|
DBUS_THREAD_FUNCTIONS_LOCK_MASK |
|
||||||
|
DBUS_THREAD_FUNCTIONS_UNLOCK_MASK |
|
||||||
|
DBUS_THREAD_FUNCTIONS_CONDVAR_NEW_MASK |
|
||||||
|
DBUS_THREAD_FUNCTIONS_CONDVAR_FREE_MASK |
|
||||||
|
DBUS_THREAD_FUNCTIONS_CONDVAR_WAIT_MASK |
|
||||||
|
DBUS_THREAD_FUNCTIONS_CONDVAR_WAIT_TIMEOUT_MASK |
|
||||||
|
DBUS_THREAD_FUNCTIONS_CONDVAR_WAKE_ONE_MASK|
|
||||||
|
DBUS_THREAD_FUNCTIONS_CONDVAR_WAKE_ALL_MASK,
|
||||||
|
dbus_qmutex_new,
|
||||||
|
dbus_qmutex_free,
|
||||||
|
dbus_qmutex_lock,
|
||||||
|
dbus_qmutex_unlock
|
||||||
|
dbus_qcondvar_new,
|
||||||
|
dbus_qcondvar_free,
|
||||||
|
dbus_qcondvar_wait,
|
||||||
|
dbus_qcondvar_wait_timeout,
|
||||||
|
dbus_qcondvar_wake_one,
|
||||||
|
dbus_qcondvar_wake_all
|
||||||
|
};
|
||||||
|
|
||||||
|
static DBusMutex *
|
||||||
|
dbus_qmutex_new (void)
|
||||||
|
{
|
||||||
|
TQMutex *mutex;
|
||||||
|
mutex = new TQMutex;
|
||||||
|
return static_cast<DBusMutex*>( mutex );
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
dbus_qmutex_free (DBusMutex *mutex)
|
||||||
|
{
|
||||||
|
TQMutex * qmutex = static_cast<TQMutex*>(mutex);
|
||||||
|
delete mutex;
|
||||||
|
}
|
||||||
|
|
||||||
|
static dbus_bool_t
|
||||||
|
dbus_qmutex_lock (DBusMutex *mutex)
|
||||||
|
{
|
||||||
|
TQMutex *qmutex = static_cast<TQMutex*>(mutex);
|
||||||
|
qmutex->lock();
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static dbus_bool_t
|
||||||
|
dbus_qmutex_unlock (DBusMutex *mutex)
|
||||||
|
{
|
||||||
|
TQMutex *qmutex = static_cast<TQMutex*>(mutex);
|
||||||
|
qmutex->unlock();
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static DBusCondVar*
|
||||||
|
dbus_qcondvar_new (void)
|
||||||
|
{
|
||||||
|
TQWaitCondition *cond;
|
||||||
|
cond = new TQWaitCondition;
|
||||||
|
return static_cast<DBusCondVar*>( cond );
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
dbus_qcondvar_free (DBusCondVar *cond)
|
||||||
|
{
|
||||||
|
TQWaitCondition *qcond = static_cast<TQWaitCondition*>(cond);
|
||||||
|
delete qcond;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
dbus_qcondvar_wait (DBusCondVar *cond,
|
||||||
|
DBusMutex *mutex)
|
||||||
|
{
|
||||||
|
TQWaitCondition *qcond = static_cast<TQWaitCondition*>(cond);
|
||||||
|
TQMutex *qmutex = static_cast<TQMutex*>(mutex);
|
||||||
|
|
||||||
|
qcond->wait (qmutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static dbus_bool_t
|
||||||
|
dbus_gcondvar_wait_timeout (DBusCondVar *cond,
|
||||||
|
DBusMutex *mutex,
|
||||||
|
int timeout_msec)
|
||||||
|
{
|
||||||
|
TQWaitCondition *qcond = static_cast<TQWaitCondition*>(cond);
|
||||||
|
TQMutex *qmutex = static_cast<TQMutex*>(mutex);
|
||||||
|
|
||||||
|
return qcond->wait (qmutex, timout_msec);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
dbus_qcondvar_wake_one (DBusCondVar *cond)
|
||||||
|
{
|
||||||
|
TQWaitCondition *qcond = static_cast<TQWaitCondition*>(cond);
|
||||||
|
|
||||||
|
qcond->wakeOne (qmutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
dbus_qcondvar_wake_all (DBusCondVar *cond)
|
||||||
|
{
|
||||||
|
TQWaitCondition *qcond = static_cast<TQWaitCondition*>(cond);
|
||||||
|
|
||||||
|
qcond->wakeAll (qmutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" {
|
||||||
|
|
||||||
|
void
|
||||||
|
dbus_qthread_init (void)
|
||||||
|
{
|
||||||
|
//Do we want to do anything else here?
|
||||||
|
dbus_threads_init (&functions);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // TQT_THREAD_SUPPORT
|
@ -0,0 +1,6 @@
|
|||||||
|
dbus-tqt (0.63.svn.0ubuntu0) maverick; urgency=low
|
||||||
|
|
||||||
|
* Migrate to Trinity Qt [TQt] Interface
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 23 March 2011 17:11:00 -0600
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
5
|
@ -0,0 +1,39 @@
|
|||||||
|
Source: dbus-tqt
|
||||||
|
Section: devel
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
|
||||||
|
Uploaders: Sjoerd Simons <sjoerd@debian.org>, Sebastian Dröge <slomo@ubuntu.com>
|
||||||
|
Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.2), libtqtinterface-dev, libdbus-1-dev (>= 0.90), cmake
|
||||||
|
Standards-Version: 3.8.3
|
||||||
|
|
||||||
|
Package: libdbus-tqt-1-dev
|
||||||
|
Section: libdevel
|
||||||
|
Architecture: any
|
||||||
|
Depends: libdbus-tqt-1-1c2 (= ${Source-Version}), libdbus-1-dev (>= 0.90), libtqtinterface-dev
|
||||||
|
Conflicts: dbus-tqt-1-dev
|
||||||
|
Replaces: dbus-tqt-1-dev
|
||||||
|
Description: simple interprocess messaging system (TQt interface)
|
||||||
|
D-BUS is a message bus, used for sending messages between applications.
|
||||||
|
Conceptually, it fits somewhere in between raw sockets and CORBA in
|
||||||
|
terms of complexity.
|
||||||
|
.
|
||||||
|
This package provides a TQt-style interface to D-BUS.
|
||||||
|
.
|
||||||
|
See the dbus description for more information about D-BUS in general.
|
||||||
|
|
||||||
|
Package: libdbus-tqt-1-1c2
|
||||||
|
Section: libs
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Conflicts: dbus-tqt-1, dbus-tqt-1c2, libdbus-tqt-1-1
|
||||||
|
Replaces: dbus-tqt-1, dbus-tqt-1c2, libdbus-tqt-1-1
|
||||||
|
Description: simple interprocess messaging system (TQt-based shared library)
|
||||||
|
D-BUS is a message bus, used for sending messages between applications.
|
||||||
|
Conceptually, it fits somewhere in between raw sockets and CORBA in
|
||||||
|
terms of complexity.
|
||||||
|
.
|
||||||
|
This package provides the TQt-based shared library for applications using the
|
||||||
|
Qt interface to D-BUS.
|
||||||
|
.
|
||||||
|
See the dbus description for more information about D-BUS in general.
|
||||||
|
|
@ -0,0 +1,214 @@
|
|||||||
|
This package was debianized by Colin Walters <walters@debian.org> on
|
||||||
|
Thu, 6 Mar 2003 18:01:37 -0500
|
||||||
|
|
||||||
|
The source tarball was created by splitting out the qt3 bindings part from the
|
||||||
|
dbus-qt3 git repository: http://gitweb.freedesktop.org/?p=dbus/dbus-qt3.git
|
||||||
|
|
||||||
|
This package is dual-licensed under the Academic Free License, and the
|
||||||
|
GPL. For a description of the GPL, see /usr/share/common-licenses/GPL
|
||||||
|
on your Debian system.
|
||||||
|
|
||||||
|
Portions of the package are only licensed under the GPL (notably
|
||||||
|
tools/dbus-cleanup-sockets.c and test/decode-gcov.c ).
|
||||||
|
|
||||||
|
The Academic Free License follows:
|
||||||
|
|
||||||
|
The Academic Free License
|
||||||
|
v. 2.0
|
||||||
|
|
||||||
|
This Academic Free License (the "License") applies to any original
|
||||||
|
work of authorship (the "Original Work") whose owner (the "Licensor")
|
||||||
|
has placed the following notice immediately following the copyright
|
||||||
|
notice for the Original Work:
|
||||||
|
|
||||||
|
Licensed under the Academic Free License version 2.0
|
||||||
|
|
||||||
|
1) Grant of Copyright License. Licensor hereby grants You a
|
||||||
|
world-wide, royalty-free, non-exclusive, perpetual, sublicenseable
|
||||||
|
license to do the following:
|
||||||
|
|
||||||
|
a) to reproduce the Original Work in copies;
|
||||||
|
|
||||||
|
b) to prepare derivative works ("Derivative Works") based upon the Original Work;
|
||||||
|
|
||||||
|
c) to distribute copies of the Original Work and Derivative Works to the public;
|
||||||
|
|
||||||
|
d) to perform the Original Work publicly; and
|
||||||
|
|
||||||
|
e) to display the Original Work publicly.
|
||||||
|
|
||||||
|
2) Grant of Patent License. Licensor hereby grants You a world-wide,
|
||||||
|
royalty-free, non-exclusive, perpetual, sublicenseable license, under
|
||||||
|
patent claims owned or controlled by the Licensor that are embodied in
|
||||||
|
the Original Work as furnished by the Licensor, to make, use, sell and
|
||||||
|
offer for sale the Original Work and Derivative Works.
|
||||||
|
|
||||||
|
3) Grant of Source Code License. The term "Source Code" means the
|
||||||
|
preferred form of the Original Work for making modifications to it and
|
||||||
|
all available documentation describing how to modify the Original
|
||||||
|
Work. Licensor hereby agrees to provide a machine-readable copy of
|
||||||
|
the Source Code of the Original Work along with each copy of the
|
||||||
|
Original Work that Licensor distributes. Licensor reserves the right
|
||||||
|
to satisfy this obligation by placing a machine-readable copy of the
|
||||||
|
Source Code in an information repository reasonably calculated to
|
||||||
|
permit inexpensive and convenient access by You for as long as
|
||||||
|
Licensor continues to distribute the Original Work, and by publishing
|
||||||
|
the address of that information repository in a notice immediately
|
||||||
|
following the copyright notice that applies to the Original Work.
|
||||||
|
|
||||||
|
4) Exclusions From License Grant. Neither the names of Licensor, nor
|
||||||
|
the names of any contributors to the Original Work, nor any of their
|
||||||
|
trademarks or service marks, may be used to endorse or promote
|
||||||
|
products derived from this Original Work without express prior written
|
||||||
|
permission of the Licensor. Nothing in this License shall be deemed
|
||||||
|
to grant any rights to trademarks, copyrights, patents, trade secrets
|
||||||
|
or any other intellectual property of Licensor except as expressly
|
||||||
|
stated herein. No patent license is granted to make, use, sell or
|
||||||
|
offer to sell embodiments of any patent claims other than the licensed
|
||||||
|
claims defined in Section 2. No right is granted to the trademarks of
|
||||||
|
Licensor even if such marks are included in the Original Work.
|
||||||
|
Nothing in this License shall be interpreted to prohibit Licensor from
|
||||||
|
licensing under different terms from this License any Original Work
|
||||||
|
that Licensor otherwise would have a right to license.
|
||||||
|
|
||||||
|
5) This section intentionally omitted.
|
||||||
|
|
||||||
|
6) Attribution Rights. You must retain, in the Source Code of any
|
||||||
|
Derivative Works that You create, all copyright, patent or trademark
|
||||||
|
notices from the Source Code of the Original Work, as well as any
|
||||||
|
notices of licensing and any descriptive text identified therein as an
|
||||||
|
"Attribution Notice." You must cause the Source Code for any
|
||||||
|
Derivative Works that You create to carry a prominent Attribution
|
||||||
|
Notice reasonably calculated to inform recipients that You have
|
||||||
|
modified the Original Work.
|
||||||
|
|
||||||
|
7) Warranty of Provenance and Disclaimer of Warranty. Licensor
|
||||||
|
warrants that the copyright in and to the Original Work and the patent
|
||||||
|
rights granted herein by Licensor are owned by the Licensor or are
|
||||||
|
sublicensed to You under the terms of this License with the permission
|
||||||
|
of the contributor(s) of those copyrights and patent rights. Except
|
||||||
|
as expressly stated in the immediately proceeding sentence, the
|
||||||
|
Original Work is provided under this License on an "AS IS" BASIS and
|
||||||
|
WITHOUT WARRANTY, either express or implied, including, without
|
||||||
|
limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY
|
||||||
|
OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY
|
||||||
|
constitutes an essential part of this License. No license to Original
|
||||||
|
Work is granted hereunder except under this disclaimer.
|
||||||
|
|
||||||
|
8) Limitation of Liability. Under no circumstances and under no legal
|
||||||
|
theory, whether in tort (including negligence), contract, or
|
||||||
|
otherwise, shall the Licensor be liable to any person for any direct,
|
||||||
|
indirect, special, incidental, or consequential damages of any
|
||||||
|
character arising as a result of this License or the use of the
|
||||||
|
Original Work including, without limitation, damages for loss of
|
||||||
|
goodwill, work stoppage, computer failure or malfunction, or any and
|
||||||
|
all other commercial damages or losses. This limitation of liability
|
||||||
|
shall not apply to liability for death or personal injury resulting
|
||||||
|
from Licensor's negligence to the extent applicable law prohibits such
|
||||||
|
limitation. Some jurisdictions do not allow the exclusion or
|
||||||
|
limitation of incidental or consequential damages, so this exclusion
|
||||||
|
and limitation may not apply to You.
|
||||||
|
|
||||||
|
9) Acceptance and Termination. If You distribute copies of the
|
||||||
|
Original Work or a Derivative Work, You must make a reasonable effort
|
||||||
|
under the circumstances to obtain the express assent of recipients to
|
||||||
|
the terms of this License. Nothing else but this License (or another
|
||||||
|
written agreement between Licensor and You) grants You permission to
|
||||||
|
create Derivative Works based upon the Original Work or to exercise
|
||||||
|
any of the rights granted in Section 1 herein, and any attempt to do
|
||||||
|
so except under the terms of this License (or another written
|
||||||
|
agreement between Licensor and You) is expressly prohibited by
|
||||||
|
U.S. copyright law, the equivalent laws of other countries, and by
|
||||||
|
international treaty. Therefore, by exercising any of the rights
|
||||||
|
granted to You in Section 1 herein, You indicate Your acceptance of
|
||||||
|
this License and all of its terms and conditions.
|
||||||
|
|
||||||
|
10) Termination for Patent Action. This License shall terminate
|
||||||
|
automatically and You may no longer exercise any of the rights granted
|
||||||
|
to You by this License as of the date You commence an action,
|
||||||
|
including a cross-claim or counterclaim, for patent infringement (i)
|
||||||
|
against Licensor with respect to a patent applicable to software or
|
||||||
|
(ii) against any entity with respect to a patent applicable to the
|
||||||
|
Original Work (but excluding combinations of the Original Work with
|
||||||
|
other software or hardware).
|
||||||
|
|
||||||
|
11) Jurisdiction, Venue and Governing Law. Any action or suit relating
|
||||||
|
to this License may be brought only in the courts of a jurisdiction
|
||||||
|
wherein the Licensor resides or in which Licensor conducts its primary
|
||||||
|
business, and under the laws of that jurisdiction excluding its
|
||||||
|
conflict-of-law provisions. The application of the United Nations
|
||||||
|
Convention on Contracts for the International Sale of Goods is
|
||||||
|
expressly excluded. Any use of the Original Work outside the scope of
|
||||||
|
this License or after its termination shall be subject to the
|
||||||
|
requirements and penalties of the U.S. Copyright Act, 17 U.S.C. \u00a4
|
||||||
|
101 et seq., the equivalent laws of other countries, and international
|
||||||
|
treaty. This section shall survive the termination of this License.
|
||||||
|
|
||||||
|
12) Attorneys Fees. In any action to enforce the terms of this License
|
||||||
|
or seeking damages relating thereto, the prevailing party shall be
|
||||||
|
entitled to recover its costs and expenses, including, without
|
||||||
|
limitation, reasonable attorneys' fees and costs incurred in
|
||||||
|
connection with such action, including any appeal of such action.
|
||||||
|
This section shall survive the termination of this License.
|
||||||
|
|
||||||
|
13) Miscellaneous. This License represents the complete agreement
|
||||||
|
concerning the subject matter hereof. If any provision of this
|
||||||
|
License is held to be unenforceable, such provision shall be reformed
|
||||||
|
only to the extent necessary to make it enforceable.
|
||||||
|
|
||||||
|
14) Definition of "You" in This License. "You" throughout this
|
||||||
|
License, whether in upper or lower case, means an individual or a
|
||||||
|
legal entity exercising rights under, and complying with all of the
|
||||||
|
terms of, this License. For legal entities, "You" includes any entity
|
||||||
|
that controls, is controlled by, or is under common control with you.
|
||||||
|
For purposes of this definition, "control" means (i) the power, direct
|
||||||
|
or indirect, to cause the direction or management of such entity,
|
||||||
|
whether by contract or otherwise, or (ii) ownership of fifty percent
|
||||||
|
(50%) or more of the outstanding shares, or (iii) beneficial ownership
|
||||||
|
of such entity.
|
||||||
|
|
||||||
|
15) Right to Use. You may use the Original Work in all ways not
|
||||||
|
otherwise restricted or conditioned by this License or by law, and
|
||||||
|
Licensor promises not to interfere with or be responsible for such
|
||||||
|
uses by You.
|
||||||
|
|
||||||
|
This license is Copyright (C) 2003 Lawrence E. Rosen. All rights
|
||||||
|
reserved. Permission is hereby granted to copy and distribute this
|
||||||
|
license without modification. This license may not be modified
|
||||||
|
without the express written permission of its copyright owner.
|
||||||
|
|
||||||
|
--
|
||||||
|
END OF ACADEMIC FREE LICENSE. The following is intended to describe the essential
|
||||||
|
differences between the Academic Free License (AFL) version 1.0 and other
|
||||||
|
open source licenses:
|
||||||
|
|
||||||
|
The Academic Free License is similar to the BSD, MIT, UoI/NCSA and Apache
|
||||||
|
licenses in many respects but it is intended to solve a few problems with
|
||||||
|
those licenses.
|
||||||
|
|
||||||
|
* The AFL is written so as to make it clear what software is being
|
||||||
|
licensed (by the inclusion of a statement following the copyright notice
|
||||||
|
in the software). This way, the license functions better than a template
|
||||||
|
license. The BSD, MIT and UoI/NCSA licenses apply to unidentified software.
|
||||||
|
|
||||||
|
* The AFL tqcontains a complete copyright grant to the software. The BSD
|
||||||
|
and Apache licenses are vague and incomplete in that respect.
|
||||||
|
|
||||||
|
* The AFL tqcontains a complete patent grant to the software. The BSD, MIT,
|
||||||
|
UoI/NCSA and Apache licenses rely on an implied patent license and contain
|
||||||
|
no explicit patent grant.
|
||||||
|
|
||||||
|
* The AFL makes it clear that no trademark rights are granted to the
|
||||||
|
licensor's trademarks. The Apache license tqcontains such a provision, but the
|
||||||
|
BSD, MIT and UoI/NCSA licenses do not.
|
||||||
|
|
||||||
|
* The AFL includes the warranty by the licensor that it either owns the
|
||||||
|
copyright or that it is distributing the software under a license. None of
|
||||||
|
the other licenses contain that warranty. All other warranties are disclaimed,
|
||||||
|
as is the case for the other licenses.
|
||||||
|
|
||||||
|
* The AFL is itself copyrighted (with the right granted to copy and distribute
|
||||||
|
without modification). This ensures that the owner of the copyright to the
|
||||||
|
license will control changes. The Apache license tqcontains a copyright notice,
|
||||||
|
but the BSD, MIT and UoI/NCSA licenses do not.
|
@ -0,0 +1 @@
|
|||||||
|
debian/tmp/usr/lib/libdbus-tqt-*.so.*
|
@ -0,0 +1,5 @@
|
|||||||
|
debian/tmp/usr/include/dbus*/dbus/dbus-qt.h
|
||||||
|
debian/tmp/usr/include/dbus*/dbus/connection.h
|
||||||
|
debian/tmp/usr/include/dbus*/dbus/server.h
|
||||||
|
debian/tmp/usr/include/dbus*/dbus/message.h
|
||||||
|
debian/tmp/usr/lib/libdbus-tqt-*.so
|
@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# Copyright © 2002,2003 Colin Walters <walters@verbum.org>
|
||||||
|
# Copyright © 2003 Daniel Stone <daniels@debian.org>
|
||||||
|
# Copyright © 2006 Sjoerd Simons <sjoerd@debian.org>
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/simple-patchsys.mk
|
||||||
|
include /usr/share/cdbs/1/rules/utils.mk
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/cmake.mk
|
||||||
|
|
||||||
|
# Strict library versioning
|
||||||
|
DEB_DH_MAKESHLIBS_ARGS_ALL := -V
|
@ -0,0 +1,530 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# depcomp - compile a program generating dependencies as side-effects
|
||||||
|
|
||||||
|
scriptversion=2005-07-09.11
|
||||||
|
|
||||||
|
# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||||
|
# 02110-1301, USA.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that tqcontains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "$0: No command. Try \`$0 --help' for more information." 1>&2
|
||||||
|
exit 1;
|
||||||
|
;;
|
||||||
|
-h | --h*)
|
||||||
|
cat <<\EOF
|
||||||
|
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
|
||||||
|
|
||||||
|
Run PROGRAMS ARGS to compile a file, generating dependencies
|
||||||
|
as side-effects.
|
||||||
|
|
||||||
|
Environment variables:
|
||||||
|
depmode Dependency tracking mode.
|
||||||
|
source Source file read by `PROGRAMS ARGS'.
|
||||||
|
object Object file output by `PROGRAMS ARGS'.
|
||||||
|
DEPDIR directory where to store dependencies.
|
||||||
|
depfile Dependency file to output.
|
||||||
|
tmpdepfile Temporary file to use when outputing dependencies.
|
||||||
|
libtool Whether libtool is used (yes/no).
|
||||||
|
|
||||||
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
|
EOF
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
-v | --v*)
|
||||||
|
echo "depcomp $scriptversion"
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
||||||
|
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
|
||||||
|
depfile=${depfile-`echo "$object" |
|
||||||
|
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
||||||
|
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
||||||
|
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
|
||||||
|
# Some modes work just like other modes, but use different flags. We
|
||||||
|
# parameterize here, but still list the modes in the big case below,
|
||||||
|
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
||||||
|
# here, because this file can only contain one case statement.
|
||||||
|
if test "$depmode" = hp; then
|
||||||
|
# HP compiler uses -M and no extra arg.
|
||||||
|
gccflag=-M
|
||||||
|
depmode=gcc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$depmode" = dashXmstdout; then
|
||||||
|
# This is just like dashmstdout with a different argument.
|
||||||
|
dashmflag=-xM
|
||||||
|
depmode=dashmstdout
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$depmode" in
|
||||||
|
gcc3)
|
||||||
|
## gcc 3 implements dependency tracking that does exactly what
|
||||||
|
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
||||||
|
## it if -MD -MP comes after the -MF stuff. Hmm.
|
||||||
|
"$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
mv "$tmpdepfile" "$depfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
gcc)
|
||||||
|
## There are various ways to get dependency output from gcc. Here's
|
||||||
|
## why we pick this rather obscure method:
|
||||||
|
## - Don't want to use -MD because we'd like the dependencies to end
|
||||||
|
## up in a subdir. Having to rename by hand is ugly.
|
||||||
|
## (We might end up doing this anyway to support other compilers.)
|
||||||
|
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
||||||
|
## -MM, not -M (despite what the docs say).
|
||||||
|
## - Using -M directly means running the compiler twice (even worse
|
||||||
|
## than renaming).
|
||||||
|
if test -z "$gccflag"; then
|
||||||
|
gccflag=-MD,
|
||||||
|
fi
|
||||||
|
"$@" -Wp,"$gccflag$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
|
||||||
|
## The second -e expression handles DOS-style file names with drive letters.
|
||||||
|
sed -e 's/^[^:]*: / /' \
|
||||||
|
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
||||||
|
## This next piece of magic avoids the `deleted header file' problem.
|
||||||
|
## The problem is that when a header file which appears in a .P file
|
||||||
|
## is deleted, the dependency causes make to die (because there is
|
||||||
|
## typically no way to rebuild the header). We avoid this by adding
|
||||||
|
## dummy dependencies for each header file. Too bad gcc doesn't do
|
||||||
|
## this for us directly.
|
||||||
|
tr ' ' '
|
||||||
|
' < "$tmpdepfile" |
|
||||||
|
## Some versions of gcc put a space before the `:'. On the theory
|
||||||
|
## that the space means something, we add a space to the output as
|
||||||
|
## well.
|
||||||
|
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
## correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
hp)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
sgi)
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
||||||
|
else
|
||||||
|
"$@" -MDupdate "$tmpdepfile"
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
|
||||||
|
# Clip off the initial element (the dependent). Don't try to be
|
||||||
|
# clever and tqreplace this with sed code, as IRIX sed won't handle
|
||||||
|
# lines with more than a fixed number of characters (4096 in
|
||||||
|
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
||||||
|
# the IRIX cc adds comments like `#:fec' to the end of the
|
||||||
|
# dependency line.
|
||||||
|
tr ' ' '
|
||||||
|
' < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
|
||||||
|
tr '
|
||||||
|
' ' ' >> $depfile
|
||||||
|
echo >> $depfile
|
||||||
|
|
||||||
|
# The second pass generates a dummy entry for each header file.
|
||||||
|
tr ' ' '
|
||||||
|
' < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
||||||
|
>> $depfile
|
||||||
|
else
|
||||||
|
# The sourcefile does not contain any dependencies, so just
|
||||||
|
# store a dummy comment line, to avoid errors with the Makefile
|
||||||
|
# "include basename.Plo" scheme.
|
||||||
|
echo "#dummy" > "$depfile"
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
aix)
|
||||||
|
# The C for AIX Compiler uses -M and outputs the dependencies
|
||||||
|
# in a .u file. In older versions, this file always lives in the
|
||||||
|
# current directory. Also, the AIX compiler puts `$object:' at the
|
||||||
|
# start of each line; $object doesn't have directory information.
|
||||||
|
# Version 6 uses the directory in both cases.
|
||||||
|
stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
|
||||||
|
tmpdepfile="$stripped.u"
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
"$@" -Wc,-M
|
||||||
|
else
|
||||||
|
"$@" -M
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile"; then :
|
||||||
|
else
|
||||||
|
stripped=`echo "$stripped" | sed 's,^.*/,,'`
|
||||||
|
tmpdepfile="$stripped.u"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile"; then
|
||||||
|
outname="$stripped.o"
|
||||||
|
# Each line is of the form `foo.o: dependent.h'.
|
||||||
|
# Do two passes, one to just change these to
|
||||||
|
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||||
|
sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
|
||||||
|
sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
|
||||||
|
else
|
||||||
|
# The sourcefile does not contain any dependencies, so just
|
||||||
|
# store a dummy comment line, to avoid errors with the Makefile
|
||||||
|
# "include basename.Plo" scheme.
|
||||||
|
echo "#dummy" > "$depfile"
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
icc)
|
||||||
|
# Intel's C compiler understands `-MD -MF file'. However on
|
||||||
|
# icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
|
||||||
|
# ICC 7.0 will fill foo.d with something like
|
||||||
|
# foo.o: sub/foo.c
|
||||||
|
# foo.o: sub/foo.h
|
||||||
|
# which is wrong. We want:
|
||||||
|
# sub/foo.o: sub/foo.c
|
||||||
|
# sub/foo.o: sub/foo.h
|
||||||
|
# sub/foo.c:
|
||||||
|
# sub/foo.h:
|
||||||
|
# ICC 7.1 will output
|
||||||
|
# foo.o: sub/foo.c sub/foo.h
|
||||||
|
# and will wrap long lines using \ :
|
||||||
|
# foo.o: sub/foo.c ... \
|
||||||
|
# sub/foo.h ... \
|
||||||
|
# ...
|
||||||
|
|
||||||
|
"$@" -MD -MF "$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
# Each line is of the form `foo.o: dependent.h',
|
||||||
|
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
|
||||||
|
# Do two passes, one to just change these to
|
||||||
|
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||||
|
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
|
||||||
|
# Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
# correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
|
||||||
|
sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
tru64)
|
||||||
|
# The Tru64 compiler uses -MD to generate dependencies as a side
|
||||||
|
# effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
|
||||||
|
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
||||||
|
# dependencies in `foo.d' instead, so we check for that too.
|
||||||
|
# Subdirectories are respected.
|
||||||
|
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
||||||
|
test "x$dir" = "x$object" && dir=
|
||||||
|
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
||||||
|
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
# With Tru64 cc, shared objects can also be used to make a
|
||||||
|
# static library. This mecanism is used in libtool 1.4 series to
|
||||||
|
# handle both shared and static libraries in a single compilation.
|
||||||
|
# With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
|
||||||
|
#
|
||||||
|
# With libtool 1.5 this exception was removed, and libtool now
|
||||||
|
# generates 2 separate objects for the 2 libraries. These two
|
||||||
|
# compilations output dependencies in in $dir.libs/$base.o.d and
|
||||||
|
# in $dir$base.o.d. We have to check for both files, because
|
||||||
|
# one of the two compilations can be disabled. We should prefer
|
||||||
|
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
|
||||||
|
# automatically cleaned when .libs/ is deleted, while ignoring
|
||||||
|
# the former would cause a distcleancheck panic.
|
||||||
|
tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4
|
||||||
|
tmpdepfile2=$dir$base.o.d # libtool 1.5
|
||||||
|
tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5
|
||||||
|
tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504
|
||||||
|
"$@" -Wc,-MD
|
||||||
|
else
|
||||||
|
tmpdepfile1=$dir$base.o.d
|
||||||
|
tmpdepfile2=$dir$base.d
|
||||||
|
tmpdepfile3=$dir$base.d
|
||||||
|
tmpdepfile4=$dir$base.d
|
||||||
|
"$@" -MD
|
||||||
|
fi
|
||||||
|
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
|
||||||
|
do
|
||||||
|
test -f "$tmpdepfile" && break
|
||||||
|
done
|
||||||
|
if test -f "$tmpdepfile"; then
|
||||||
|
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
||||||
|
# That's a tab and a space in the [].
|
||||||
|
sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
|
||||||
|
else
|
||||||
|
echo "#dummy" > "$depfile"
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
#nosideeffect)
|
||||||
|
# This comment above is used by automake to tell side-effect
|
||||||
|
# dependency tracking mechanisms from slower ones.
|
||||||
|
|
||||||
|
dashmstdout)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout, regardless of -o.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test $1 != '--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove `-o $object'.
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
test -z "$dashmflag" && dashmflag=-M
|
||||||
|
# Require at least two characters before searching for `:'
|
||||||
|
# in the target name. This is to cope with DOS-style filenames:
|
||||||
|
# a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.
|
||||||
|
"$@" $dashmflag |
|
||||||
|
sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
cat < "$tmpdepfile" > "$depfile"
|
||||||
|
tr ' ' '
|
||||||
|
' < "$tmpdepfile" | \
|
||||||
|
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
## correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
dashXmstdout)
|
||||||
|
# This case only exists to satisfy depend.m4. It is never actually
|
||||||
|
# run, as this mode is specially recognized in the preamble.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
makedepend)
|
||||||
|
"$@" || exit $?
|
||||||
|
# Remove any Libtool call
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test $1 != '--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
# X makedepend
|
||||||
|
shift
|
||||||
|
cleared=no
|
||||||
|
for arg in "$@"; do
|
||||||
|
case $cleared in
|
||||||
|
no)
|
||||||
|
set ""; shift
|
||||||
|
cleared=yes ;;
|
||||||
|
esac
|
||||||
|
case "$arg" in
|
||||||
|
-D*|-I*)
|
||||||
|
set fnord "$@" "$arg"; shift ;;
|
||||||
|
# Strip any option that makedepend may not understand. Remove
|
||||||
|
# the object too, otherwise makedepend will parse it as a source file.
|
||||||
|
-*|$object)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"; shift ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
obj_suffix="`echo $object | sed 's/^.*\././'`"
|
||||||
|
touch "$tmpdepfile"
|
||||||
|
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
||||||
|
rm -f "$depfile"
|
||||||
|
cat < "$tmpdepfile" > "$depfile"
|
||||||
|
sed '1,2d' "$tmpdepfile" | tr ' ' '
|
||||||
|
' | \
|
||||||
|
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
## correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
||||||
|
;;
|
||||||
|
|
||||||
|
cpp)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test $1 != '--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove `-o $object'.
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
"$@" -E |
|
||||||
|
sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||||
|
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
|
||||||
|
sed '$ s: \\$::' > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
cat < "$tmpdepfile" >> "$depfile"
|
||||||
|
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvisualcpp)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout, regardless of -o,
|
||||||
|
# because we must use -o when running libtool.
|
||||||
|
"$@" || exit $?
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case "$arg" in
|
||||||
|
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
||||||
|
set fnord "$@"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
"$@" -E |
|
||||||
|
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
. "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile"
|
||||||
|
echo " " >> "$depfile"
|
||||||
|
. "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
none)
|
||||||
|
exec "$@"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "Unknown depmode $depmode" 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-end: "$"
|
||||||
|
# End:
|
@ -0,0 +1,323 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# install - install a program, script, or datafile
|
||||||
|
|
||||||
|
scriptversion=2005-05-14.22
|
||||||
|
|
||||||
|
# This originates from X11R5 (mit/util/scripts/install.sh), which was
|
||||||
|
# later released in X11R6 (xc/config/util/install.sh) with the
|
||||||
|
# following copyright and license.
|
||||||
|
#
|
||||||
|
# Copyright (C) 1994 X Consortium
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to
|
||||||
|
# deal in the Software without restriction, including without limitation the
|
||||||
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
|
# sell copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||||
|
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
|
||||||
|
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
#
|
||||||
|
# Except as contained in this notice, the name of the X Consortium shall not
|
||||||
|
# be used in advertising or otherwise to promote the sale, use or other deal-
|
||||||
|
# ings in this Software without prior written authorization from the X Consor-
|
||||||
|
# tium.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# FSF changes to this file are in the public domain.
|
||||||
|
#
|
||||||
|
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||||
|
# `make' implicit rules from creating a file called install from it
|
||||||
|
# when there is no Makefile.
|
||||||
|
#
|
||||||
|
# This script is compatible with the BSD install script, but was written
|
||||||
|
# from scratch. It can only install one file at a time, a restriction
|
||||||
|
# shared with many OS's install programs.
|
||||||
|
|
||||||
|
# set DOITPROG to echo to test this script
|
||||||
|
|
||||||
|
# Don't use :- since 4.3BSD and earlier shells don't like it.
|
||||||
|
doit="${DOITPROG-}"
|
||||||
|
|
||||||
|
# put in absolute paths if you don't have them in your path; or use env. vars.
|
||||||
|
|
||||||
|
mvprog="${MVPROG-mv}"
|
||||||
|
cpprog="${CPPROG-cp}"
|
||||||
|
chmodprog="${CHMODPROG-chmod}"
|
||||||
|
chownprog="${CHOWNPROG-chown}"
|
||||||
|
chgrpprog="${CHGRPPROG-chgrp}"
|
||||||
|
stripprog="${STRIPPROG-strip}"
|
||||||
|
rmprog="${RMPROG-rm}"
|
||||||
|
mkdirprog="${MKDIRPROG-mkdir}"
|
||||||
|
|
||||||
|
chmodcmd="$chmodprog 0755"
|
||||||
|
chowncmd=
|
||||||
|
chgrpcmd=
|
||||||
|
stripcmd=
|
||||||
|
rmcmd="$rmprog -f"
|
||||||
|
mvcmd="$mvprog"
|
||||||
|
src=
|
||||||
|
dst=
|
||||||
|
dir_arg=
|
||||||
|
dstarg=
|
||||||
|
no_target_directory=
|
||||||
|
|
||||||
|
usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
|
||||||
|
or: $0 [OPTION]... SRCFILES... DIRECTORY
|
||||||
|
or: $0 [OPTION]... -t DIRECTORY SRCFILES...
|
||||||
|
or: $0 [OPTION]... -d DIRECTORIES...
|
||||||
|
|
||||||
|
In the 1st form, copy SRCFILE to DSTFILE.
|
||||||
|
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
|
||||||
|
In the 4th, create DIRECTORIES.
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-c (ignored)
|
||||||
|
-d create directories instead of installing files.
|
||||||
|
-g GROUP $chgrpprog installed files to GROUP.
|
||||||
|
-m MODE $chmodprog installed files to MODE.
|
||||||
|
-o USER $chownprog installed files to USER.
|
||||||
|
-s $stripprog installed files.
|
||||||
|
-t DIRECTORY install into DIRECTORY.
|
||||||
|
-T report an error if DSTFILE is a directory.
|
||||||
|
--help display this help and exit.
|
||||||
|
--version display version info and exit.
|
||||||
|
|
||||||
|
Environment variables override the default commands:
|
||||||
|
CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
|
||||||
|
"
|
||||||
|
|
||||||
|
while test -n "$1"; do
|
||||||
|
case $1 in
|
||||||
|
-c) shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-d) dir_arg=true
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-g) chgrpcmd="$chgrpprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
--help) echo "$usage"; exit $?;;
|
||||||
|
|
||||||
|
-m) chmodcmd="$chmodprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-o) chowncmd="$chownprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-s) stripcmd=$stripprog
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-t) dstarg=$2
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-T) no_target_directory=true
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
--version) echo "$0 $scriptversion"; exit $?;;
|
||||||
|
|
||||||
|
*) # When -d is used, all remaining arguments are directories to create.
|
||||||
|
# When -t is used, the destination is already specified.
|
||||||
|
test -n "$dir_arg$dstarg" && break
|
||||||
|
# Otherwise, the last argument is the destination. Remove it from $@.
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$dstarg"; then
|
||||||
|
# $@ is not empty: it tqcontains at least $arg.
|
||||||
|
set fnord "$@" "$dstarg"
|
||||||
|
shift # fnord
|
||||||
|
fi
|
||||||
|
shift # arg
|
||||||
|
dstarg=$arg
|
||||||
|
done
|
||||||
|
break;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if test -z "$1"; then
|
||||||
|
if test -z "$dir_arg"; then
|
||||||
|
echo "$0: no input file specified." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# It's OK to call `install-sh -d' without argument.
|
||||||
|
# This can happen when creating conditional directories.
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
for src
|
||||||
|
do
|
||||||
|
# Protect names starting with `-'.
|
||||||
|
case $src in
|
||||||
|
-*) src=./$src ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
dst=$src
|
||||||
|
src=
|
||||||
|
|
||||||
|
if test -d "$dst"; then
|
||||||
|
mkdircmd=:
|
||||||
|
chmodcmd=
|
||||||
|
else
|
||||||
|
mkdircmd=$mkdirprog
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
# Waiting for this to be detected by the "$cpprog $src $dsttmp" command
|
||||||
|
# might cause directories to be created, which would be especially bad
|
||||||
|
# if $src (and thus $dsttmp) tqcontains '*'.
|
||||||
|
if test ! -f "$src" && test ! -d "$src"; then
|
||||||
|
echo "$0: $src does not exist." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -z "$dstarg"; then
|
||||||
|
echo "$0: no destination specified." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
dst=$dstarg
|
||||||
|
# Protect names starting with `-'.
|
||||||
|
case $dst in
|
||||||
|
-*) dst=./$dst ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# If destination is a directory, append the input filename; won't work
|
||||||
|
# if double slashes aren't ignored.
|
||||||
|
if test -d "$dst"; then
|
||||||
|
if test -n "$no_target_directory"; then
|
||||||
|
echo "$0: $dstarg: Is a directory" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
dst=$dst/`basename "$src"`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# This sed command emulates the dirname command.
|
||||||
|
dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
|
||||||
|
|
||||||
|
# Make sure that the destination directory exists.
|
||||||
|
|
||||||
|
# Skip lots of stat calls in the usual case.
|
||||||
|
if test ! -d "$dstdir"; then
|
||||||
|
defaultIFS='
|
||||||
|
'
|
||||||
|
IFS="${IFS-$defaultIFS}"
|
||||||
|
|
||||||
|
oIFS=$IFS
|
||||||
|
# Some sh's can't handle IFS=/ for some reason.
|
||||||
|
IFS='%'
|
||||||
|
set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
|
||||||
|
shift
|
||||||
|
IFS=$oIFS
|
||||||
|
|
||||||
|
pathcomp=
|
||||||
|
|
||||||
|
while test $# -ne 0 ; do
|
||||||
|
pathcomp=$pathcomp$1
|
||||||
|
shift
|
||||||
|
if test ! -d "$pathcomp"; then
|
||||||
|
$mkdirprog "$pathcomp"
|
||||||
|
# mkdir can fail with a `File exist' error in case several
|
||||||
|
# install-sh are creating the directory concurrently. This
|
||||||
|
# is OK.
|
||||||
|
test -d "$pathcomp" || exit
|
||||||
|
fi
|
||||||
|
pathcomp=$pathcomp/
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
$doit $mkdircmd "$dst" \
|
||||||
|
&& { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \
|
||||||
|
&& { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \
|
||||||
|
&& { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \
|
||||||
|
&& { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; }
|
||||||
|
|
||||||
|
else
|
||||||
|
dstfile=`basename "$dst"`
|
||||||
|
|
||||||
|
# Make a couple of temp file names in the proper directory.
|
||||||
|
dsttmp=$dstdir/_inst.$$_
|
||||||
|
rmtmp=$dstdir/_rm.$$_
|
||||||
|
|
||||||
|
# Trap to clean up those temp files at exit.
|
||||||
|
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
|
||||||
|
trap '(exit $?); exit' 1 2 13 15
|
||||||
|
|
||||||
|
# Copy the file name to the temp name.
|
||||||
|
$doit $cpprog "$src" "$dsttmp" &&
|
||||||
|
|
||||||
|
# and set any options; do chmod last to preserve setuid bits.
|
||||||
|
#
|
||||||
|
# If any of these fail, we abort the whole thing. If we want to
|
||||||
|
# ignore errors from any of these, just make sure not to ignore
|
||||||
|
# errors from the above "$doit $cpprog $src $dsttmp" command.
|
||||||
|
#
|
||||||
|
{ test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
|
||||||
|
&& { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
|
||||||
|
&& { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
|
||||||
|
&& { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } &&
|
||||||
|
|
||||||
|
# Now rename the file to the real destination.
|
||||||
|
{ $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \
|
||||||
|
|| {
|
||||||
|
# The rename failed, perhaps because mv can't rename something else
|
||||||
|
# to itself, or perhaps because mv is so ancient that it does not
|
||||||
|
# support -f.
|
||||||
|
|
||||||
|
# Now remove or move aside any old file at destination location.
|
||||||
|
# We try this two ways since rm can't unlink itself on some
|
||||||
|
# systems and the destination file might be busy for other
|
||||||
|
# reasons. In this case, the final cleanup might fail but the new
|
||||||
|
# file should still install successfully.
|
||||||
|
{
|
||||||
|
if test -f "$dstdir/$dstfile"; then
|
||||||
|
$doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \
|
||||||
|
|| $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
|
||||||
|
|| {
|
||||||
|
echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
|
||||||
|
(exit 1); exit 1
|
||||||
|
}
|
||||||
|
else
|
||||||
|
:
|
||||||
|
fi
|
||||||
|
} &&
|
||||||
|
|
||||||
|
# Now rename the file to the real destination.
|
||||||
|
$doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fi || { (exit 1); exit 1; }
|
||||||
|
done
|
||||||
|
|
||||||
|
# The final little trick to "correctly" pass the exit status to the exit trap.
|
||||||
|
{
|
||||||
|
(exit 0); exit 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-end: "$"
|
||||||
|
# End:
|
@ -0,0 +1,244 @@
|
|||||||
|
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
||||||
|
/* integrator.h: integrates D-BUS into TQt event loop
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.0
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#include "integrator.h"
|
||||||
|
#include "connection.h"
|
||||||
|
|
||||||
|
#include <tqtimer.h>
|
||||||
|
#include <tqsocketnotifier.h>
|
||||||
|
#include <tqintdict.h>
|
||||||
|
#include <tqptrlist.h>
|
||||||
|
|
||||||
|
namespace DBusQt
|
||||||
|
{
|
||||||
|
namespace Internal {
|
||||||
|
|
||||||
|
struct Watch {
|
||||||
|
Watch(): readSocket( 0 ), writeSocket( 0 ) { }
|
||||||
|
|
||||||
|
DBusWatch *watch;
|
||||||
|
TQSocketNotifier *readSocket;
|
||||||
|
TQSocketNotifier *writeSocket;
|
||||||
|
};
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////
|
||||||
|
dbus_bool_t dbusAddWatch( DBusWatch *watch, void *data )
|
||||||
|
{
|
||||||
|
Integrator *con = static_cast<Integrator*>( data );
|
||||||
|
con->addWatch( watch );
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
void dbusRemoveWatch( DBusWatch *watch, void *data )
|
||||||
|
{
|
||||||
|
Integrator *con = static_cast<Integrator*>( data );
|
||||||
|
con->removeWatch( watch );
|
||||||
|
}
|
||||||
|
|
||||||
|
void dbusToggleWatch( DBusWatch *watch, void *data )
|
||||||
|
{
|
||||||
|
Integrator *itg = static_cast<Integrator*>( data );
|
||||||
|
if ( dbus_watch_get_enabled( watch ) )
|
||||||
|
itg->addWatch( watch );
|
||||||
|
else
|
||||||
|
itg->removeWatch( watch );
|
||||||
|
}
|
||||||
|
|
||||||
|
dbus_bool_t dbusAddTimeout( DBusTimeout *timeout, void *data )
|
||||||
|
{
|
||||||
|
if ( !dbus_timeout_get_enabled(timeout) )
|
||||||
|
return true;
|
||||||
|
|
||||||
|
Integrator *itg = static_cast<Integrator*>( data );
|
||||||
|
itg->addTimeout( timeout );
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void dbusRemoveTimeout( DBusTimeout *timeout, void *data )
|
||||||
|
{
|
||||||
|
Integrator *itg = static_cast<Integrator*>( data );
|
||||||
|
itg->removeTimeout( timeout );
|
||||||
|
}
|
||||||
|
|
||||||
|
void dbusToggleTimeout( DBusTimeout *timeout, void *data )
|
||||||
|
{
|
||||||
|
Integrator *itg = static_cast<Integrator*>( data );
|
||||||
|
|
||||||
|
if ( dbus_timeout_get_enabled( timeout ) )
|
||||||
|
itg->addTimeout( timeout );
|
||||||
|
else
|
||||||
|
itg->removeTimeout( timeout );
|
||||||
|
}
|
||||||
|
|
||||||
|
void dbusWakeupMain( void* )
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void dbusNewConnection( DBusServer *server,
|
||||||
|
DBusConnection *new_connection,
|
||||||
|
void *data )
|
||||||
|
{
|
||||||
|
Integrator *itg = static_cast<Integrator*>( data );
|
||||||
|
itg->handleConnection( new_connection );
|
||||||
|
}
|
||||||
|
/////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
Timeout::Timeout( TQObject *tqparent, DBusTimeout *t )
|
||||||
|
: TQObject( tqparent ), m_timeout( t )
|
||||||
|
{
|
||||||
|
m_timer = new TQTimer( this );
|
||||||
|
connect( m_timer, TQT_SIGNAL(timeout()),
|
||||||
|
TQT_SLOT(slotTimeout()) );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Timeout::slotTimeout()
|
||||||
|
{
|
||||||
|
emit timeout( m_timeout );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Timeout::start()
|
||||||
|
{
|
||||||
|
m_timer->start( dbus_timeout_get_interval( m_timeout ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
Integrator::Integrator( DBusConnection *conn, TQObject *tqparent )
|
||||||
|
: TQObject( tqparent ), m_connection( conn )
|
||||||
|
{
|
||||||
|
m_timeouts.setAutoDelete( true );
|
||||||
|
|
||||||
|
dbus_connection_set_watch_functions( m_connection,
|
||||||
|
dbusAddWatch,
|
||||||
|
dbusRemoveWatch,
|
||||||
|
dbusToggleWatch,
|
||||||
|
this, 0 );
|
||||||
|
dbus_connection_set_timeout_functions( m_connection,
|
||||||
|
dbusAddTimeout,
|
||||||
|
dbusRemoveTimeout,
|
||||||
|
dbusToggleTimeout,
|
||||||
|
this, 0 );
|
||||||
|
dbus_connection_set_wakeup_main_function( m_connection,
|
||||||
|
dbusWakeupMain,
|
||||||
|
this, 0 );
|
||||||
|
}
|
||||||
|
|
||||||
|
Integrator::Integrator( DBusServer *server, TQObject *tqparent )
|
||||||
|
: TQObject( tqparent ), m_server( server )
|
||||||
|
{
|
||||||
|
m_connection = reinterpret_cast<DBusConnection*>( m_server );
|
||||||
|
m_timeouts.setAutoDelete( true );
|
||||||
|
|
||||||
|
dbus_server_set_watch_functions( m_server,
|
||||||
|
dbusAddWatch,
|
||||||
|
dbusRemoveWatch,
|
||||||
|
dbusToggleWatch,
|
||||||
|
this, 0 );
|
||||||
|
dbus_server_set_timeout_functions( m_server,
|
||||||
|
dbusAddTimeout,
|
||||||
|
dbusRemoveTimeout,
|
||||||
|
dbusToggleTimeout,
|
||||||
|
this, 0 );
|
||||||
|
dbus_server_set_new_connection_function( m_server,
|
||||||
|
dbusNewConnection,
|
||||||
|
this, 0 );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Integrator::slotRead( int fd )
|
||||||
|
{
|
||||||
|
TQIntDictIterator<Watch> it( m_watches );
|
||||||
|
for ( ; it.current(); ++it )
|
||||||
|
dbus_watch_handle ( it.current()->watch, DBUS_WATCH_READABLE );
|
||||||
|
|
||||||
|
emit readReady();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Integrator::slotWrite( int fd )
|
||||||
|
{
|
||||||
|
TQIntDictIterator<Watch> it( m_watches );
|
||||||
|
for ( ; it.current(); ++it )
|
||||||
|
dbus_watch_handle ( it.current()->watch, DBUS_WATCH_WRITABLE );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Integrator::slotTimeout( DBusTimeout *timeout )
|
||||||
|
{
|
||||||
|
dbus_timeout_handle( timeout );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Integrator::addWatch( DBusWatch *watch )
|
||||||
|
{
|
||||||
|
if ( !dbus_watch_get_enabled( watch ) )
|
||||||
|
return;
|
||||||
|
|
||||||
|
Watch *qtwatch = new Watch;
|
||||||
|
qtwatch->watch = watch;
|
||||||
|
|
||||||
|
int flags = dbus_watch_get_flags( watch );
|
||||||
|
int fd = dbus_watch_get_fd( watch );
|
||||||
|
|
||||||
|
if ( flags & DBUS_WATCH_READABLE ) {
|
||||||
|
qtwatch->readSocket = new TQSocketNotifier( fd, TQSocketNotifier::Read, this );
|
||||||
|
TQObject::connect( qtwatch->readSocket, TQT_SIGNAL(activated(int)), TQT_SLOT(slotRead(int)) );
|
||||||
|
}
|
||||||
|
|
||||||
|
if (flags & DBUS_WATCH_WRITABLE) {
|
||||||
|
qtwatch->writeSocket = new TQSocketNotifier( fd, TQSocketNotifier::Write, this );
|
||||||
|
TQObject::connect( qtwatch->writeSocket, TQT_SIGNAL(activated(int)), TQT_SLOT(slotWrite(int)) );
|
||||||
|
}
|
||||||
|
|
||||||
|
m_watches.insert( fd, qtwatch );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Integrator::removeWatch( DBusWatch *watch )
|
||||||
|
{
|
||||||
|
int key = dbus_watch_get_fd( watch );
|
||||||
|
|
||||||
|
Watch *qtwatch = m_watches.take( key );
|
||||||
|
|
||||||
|
if ( qtwatch ) {
|
||||||
|
delete qtwatch->readSocket; qtwatch->readSocket = 0;
|
||||||
|
delete qtwatch->writeSocket; qtwatch->writeSocket = 0;
|
||||||
|
delete qtwatch;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Integrator::addTimeout( DBusTimeout *timeout )
|
||||||
|
{
|
||||||
|
Timeout *mt = new Timeout( this, timeout );
|
||||||
|
m_timeouts.insert( timeout, mt );
|
||||||
|
connect( mt, TQT_SIGNAL(timeout(DBusTimeout*)),
|
||||||
|
TQT_SLOT(slotTimeout(DBusTimeout*)) );
|
||||||
|
mt->start();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Integrator::removeTimeout( DBusTimeout *timeout )
|
||||||
|
{
|
||||||
|
m_timeouts.remove( timeout );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Integrator::handleConnection( DBusConnection *c )
|
||||||
|
{
|
||||||
|
Connection *con = new Connection( c, this );
|
||||||
|
emit newConnection( con );
|
||||||
|
}
|
||||||
|
|
||||||
|
}//end namespace Internal
|
||||||
|
}//end namespace DBusQt
|
||||||
|
|
||||||
|
#include "integrator.moc"
|
@ -0,0 +1,94 @@
|
|||||||
|
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
||||||
|
/* integrator.h: integrates D-BUS into TQt event loop
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.1
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#ifndef DBUS_TQT_INTEGRATOR_H
|
||||||
|
#define DBUS_TQT_INTEGRATOR_H
|
||||||
|
|
||||||
|
#include <tqobject.h>
|
||||||
|
|
||||||
|
#include <tqintdict.h>
|
||||||
|
#include <tqptrdict.h>
|
||||||
|
|
||||||
|
#include "dbus/dbus.h"
|
||||||
|
|
||||||
|
class TQTimer;
|
||||||
|
|
||||||
|
namespace DBusQt
|
||||||
|
{
|
||||||
|
class Connection;
|
||||||
|
|
||||||
|
namespace Internal
|
||||||
|
{
|
||||||
|
struct Watch;
|
||||||
|
|
||||||
|
class Timeout : public TQObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
TQ_OBJECT
|
||||||
|
public:
|
||||||
|
Timeout( TQObject *tqparent, DBusTimeout *t );
|
||||||
|
public:
|
||||||
|
void start();
|
||||||
|
signals:
|
||||||
|
void timeout( DBusTimeout* );
|
||||||
|
protected slots:
|
||||||
|
void slotTimeout();
|
||||||
|
private:
|
||||||
|
TQTimer *m_timer;
|
||||||
|
DBusTimeout *m_timeout;
|
||||||
|
};
|
||||||
|
|
||||||
|
class Integrator : public TQObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
TQ_OBJECT
|
||||||
|
public:
|
||||||
|
Integrator( DBusConnection *connection, TQObject *tqparent );
|
||||||
|
Integrator( DBusServer *server, TQObject *tqparent );
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void readReady();
|
||||||
|
void newConnection( Connection* );
|
||||||
|
|
||||||
|
protected slots:
|
||||||
|
void slotRead( int );
|
||||||
|
void slotWrite( int );
|
||||||
|
void slotTimeout( DBusTimeout *timeout );
|
||||||
|
|
||||||
|
public:
|
||||||
|
void addWatch( DBusWatch* );
|
||||||
|
void removeWatch( DBusWatch* );
|
||||||
|
|
||||||
|
void addTimeout( DBusTimeout* );
|
||||||
|
void removeTimeout( DBusTimeout* );
|
||||||
|
|
||||||
|
void handleConnection( DBusConnection* );
|
||||||
|
private:
|
||||||
|
TQIntDict<Watch> m_watches;
|
||||||
|
TQPtrDict<Timeout> m_timeouts;
|
||||||
|
DBusConnection *m_connection;
|
||||||
|
DBusServer *m_server;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,561 @@
|
|||||||
|
/* -*- mode: C++; c-file-style: "gnu" -*- */
|
||||||
|
/* message.cpp: TQt wrapper for DBusMessage
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.0
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#include "message.h"
|
||||||
|
|
||||||
|
#include <tqmap.h>
|
||||||
|
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
|
namespace DBusQt {
|
||||||
|
|
||||||
|
struct Message::iterator::IteratorData {
|
||||||
|
DBusMessageIter *iter;
|
||||||
|
TQVariant var;
|
||||||
|
bool end;
|
||||||
|
DBusMessage *mesg;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Iterator.
|
||||||
|
*/
|
||||||
|
Message::iterator::iterator()
|
||||||
|
{
|
||||||
|
d = new IteratorData;
|
||||||
|
d->iter = 0; d->end = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs iterator for the message.
|
||||||
|
* @param msg message whose fields we want to iterate
|
||||||
|
*/
|
||||||
|
Message::iterator::iterator( DBusMessage* msg )
|
||||||
|
{
|
||||||
|
d = new IteratorData;
|
||||||
|
d->mesg = msg;
|
||||||
|
d->iter = static_cast<DBusMessageIter *>( malloc( sizeof(DBusMessageIter) ) );
|
||||||
|
dbus_message_iter_init( d->mesg, d->iter );
|
||||||
|
if ( !d->iter ) {
|
||||||
|
qDebug("No iterator??");
|
||||||
|
}
|
||||||
|
fillVar();
|
||||||
|
d->end = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copy constructor for the iterator.
|
||||||
|
* @param itr iterator
|
||||||
|
*/
|
||||||
|
Message::iterator::iterator( const iterator& itr )
|
||||||
|
{
|
||||||
|
d = new IteratorData;
|
||||||
|
d->iter = itr.d->iter;
|
||||||
|
d->var = itr.d->var;
|
||||||
|
d->end = itr.d->end;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destructor.
|
||||||
|
*/
|
||||||
|
Message::iterator::~iterator()
|
||||||
|
{
|
||||||
|
free( d->iter );
|
||||||
|
delete d; d=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an iterator equal to the @p itr iterator
|
||||||
|
* @param itr other iterator
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
Message::iterator&
|
||||||
|
Message::iterator::operator=( const iterator& itr )
|
||||||
|
{
|
||||||
|
IteratorData *tmp = new IteratorData;
|
||||||
|
tmp->iter = itr.d->iter;
|
||||||
|
tmp->var = itr.d->var;
|
||||||
|
tmp->end = itr.d->end;
|
||||||
|
delete d; d=tmp;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the constant TQVariant held by the iterator.
|
||||||
|
* @return the constant reference to TQVariant held by this iterator
|
||||||
|
*/
|
||||||
|
const TQVariant&
|
||||||
|
Message::iterator::operator*() const
|
||||||
|
{
|
||||||
|
return d->var;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the TQVariant held by the iterator.
|
||||||
|
* @return reference to TQVariant held by this iterator
|
||||||
|
*/
|
||||||
|
TQVariant&
|
||||||
|
Message::iterator::operator*()
|
||||||
|
{
|
||||||
|
return d->var;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Moves to the next field and return a reference to itself after
|
||||||
|
* incrementing.
|
||||||
|
* @return reference to self after incrementing
|
||||||
|
*/
|
||||||
|
Message::iterator&
|
||||||
|
Message::iterator::operator++()
|
||||||
|
{
|
||||||
|
if ( d->end )
|
||||||
|
return *this;
|
||||||
|
|
||||||
|
if ( dbus_message_iter_next( d->iter ) ) {
|
||||||
|
fillVar();
|
||||||
|
} else {
|
||||||
|
d->end = true;
|
||||||
|
d->var = TQVariant();
|
||||||
|
}
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Moves to the next field and returns self before incrementing.
|
||||||
|
* @return self before incrementing
|
||||||
|
*/
|
||||||
|
Message::iterator
|
||||||
|
Message::iterator::operator++(int)
|
||||||
|
{
|
||||||
|
iterator itr( *this );
|
||||||
|
operator++();
|
||||||
|
return itr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares this iterator to @p it iterator.
|
||||||
|
* @param it the iterator to which we're comparing this one to
|
||||||
|
* @return true if they're equal, false otherwise
|
||||||
|
*/
|
||||||
|
bool
|
||||||
|
Message::iterator::operator==( const iterator& it )
|
||||||
|
{
|
||||||
|
if ( d->end == it.d->end ) {
|
||||||
|
if ( d->end == true ) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return d->var == it.d->var;
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares two iterators.
|
||||||
|
* @param it The other iterator.
|
||||||
|
* @return true if two iterators are not equal, false
|
||||||
|
* otherwise
|
||||||
|
*/
|
||||||
|
bool
|
||||||
|
Message::iterator::operator!=( const iterator& it )
|
||||||
|
{
|
||||||
|
return !operator==( it );
|
||||||
|
}
|
||||||
|
|
||||||
|
TQVariant Message::iterator::marshallBaseType( DBusMessageIter* i )
|
||||||
|
{
|
||||||
|
TQVariant ret;
|
||||||
|
switch (dbus_message_iter_get_arg_type(i)) {
|
||||||
|
case DBUS_TYPE_INT32:
|
||||||
|
{
|
||||||
|
dbus_int32_t v;
|
||||||
|
dbus_message_iter_get_basic (i, &v);
|
||||||
|
ret = TQVariant( v );
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case DBUS_TYPE_UINT32:
|
||||||
|
{
|
||||||
|
dbus_uint32_t v;
|
||||||
|
dbus_message_iter_get_basic (i, &v);
|
||||||
|
ret = TQVariant( v );
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case DBUS_TYPE_DOUBLE:
|
||||||
|
{
|
||||||
|
double v;
|
||||||
|
dbus_message_iter_get_basic (i, &v);
|
||||||
|
ret = TQVariant( v );
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case DBUS_TYPE_STRING:
|
||||||
|
{
|
||||||
|
const char *v;
|
||||||
|
dbus_message_iter_get_basic (i, &v);
|
||||||
|
ret = TQVariant( v );
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
ret = TQVariant();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fills TQVariant based on what current DBusMessageIter helds.
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
Message::iterator::fillVar()
|
||||||
|
{
|
||||||
|
switch ( dbus_message_iter_get_arg_type( d->iter ) ) {
|
||||||
|
case DBUS_TYPE_INT32:
|
||||||
|
case DBUS_TYPE_UINT32:
|
||||||
|
case DBUS_TYPE_DOUBLE:
|
||||||
|
case DBUS_TYPE_STRING:
|
||||||
|
d->var = marshallBaseType( d->iter );
|
||||||
|
break;
|
||||||
|
case DBUS_TYPE_ARRAY: {
|
||||||
|
switch ( dbus_message_iter_get_element_type( d->iter ) ) {
|
||||||
|
case DBUS_TYPE_STRING: {
|
||||||
|
TQStringList tempList;
|
||||||
|
DBusMessageIter sub;
|
||||||
|
dbus_message_iter_recurse (d->iter, &sub);
|
||||||
|
while (dbus_message_iter_get_arg_type (&sub) != DBUS_TYPE_INVALID)
|
||||||
|
{
|
||||||
|
const char *v;
|
||||||
|
dbus_message_iter_get_basic (&sub, &v);
|
||||||
|
tempList.append( TQString( v ) );
|
||||||
|
dbus_message_iter_next (&sub);
|
||||||
|
}
|
||||||
|
d->var = TQVariant( tempList );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
qDebug( "Array of type not implemented" );
|
||||||
|
d->var = TQVariant();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#if 0
|
||||||
|
/* DICT is gone for now, but expected to be reintroduced, or else
|
||||||
|
* reintroduced as a flag on the introspection data that can
|
||||||
|
* apply to array of struct of two fields
|
||||||
|
*/
|
||||||
|
case DBUS_TYPE_DICT: {
|
||||||
|
qDebug( "Got a hash!" );
|
||||||
|
TQMap<TQString, TQVariant> tempMap;
|
||||||
|
DBusMessageIter dictIter;
|
||||||
|
dbus_message_iter_init_dict_iterator( d->iter, &dictIter );
|
||||||
|
do {
|
||||||
|
char *key = dbus_message_iter_get_dict_key( &dictIter );
|
||||||
|
tempMap[key] = marshallBaseType( &dictIter );
|
||||||
|
dbus_free( key );
|
||||||
|
dbus_message_iter_next( &dictIter );
|
||||||
|
} while( dbus_message_iter_has_next( &dictIter ) );
|
||||||
|
d->var = TQVariant( tempMap );
|
||||||
|
break;
|
||||||
|
qDebug( "Hash/Dict type not implemented" );
|
||||||
|
d->var = TQVariant();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
qDebug( "not implemented" );
|
||||||
|
d->var = TQVariant();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a TQVariant help by this iterator.
|
||||||
|
* @return TQVariant held by this iterator
|
||||||
|
*/
|
||||||
|
TQVariant
|
||||||
|
Message::iterator::var() const
|
||||||
|
{
|
||||||
|
return d->var;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Message::Private {
|
||||||
|
DBusMessage *msg;
|
||||||
|
};
|
||||||
|
|
||||||
|
Message::Message( DBusMessage *m )
|
||||||
|
{
|
||||||
|
d = new Private;
|
||||||
|
d->msg = m;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
Message::Message( int messageType )
|
||||||
|
{
|
||||||
|
d = new Private;
|
||||||
|
d->msg = dbus_message_new( messageType );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new Message with the given service and name.
|
||||||
|
* @param service service service that the message should be sent to
|
||||||
|
* @param name name of the message
|
||||||
|
*/
|
||||||
|
Message::Message( const TQString& service, const TQString& path,
|
||||||
|
const TQString& interface, const TQString& method )
|
||||||
|
{
|
||||||
|
d = new Private;
|
||||||
|
d->msg = dbus_message_new_method_call( service.latin1(), path.latin1(),
|
||||||
|
interface.latin1(), method.latin1() );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a message that is a reply to some other
|
||||||
|
* message.
|
||||||
|
* @param name the name of the message
|
||||||
|
* @param replayingTo original_message the message which the created
|
||||||
|
* message is a reply to.
|
||||||
|
*/
|
||||||
|
Message::Message( const Message& replayingTo )
|
||||||
|
{
|
||||||
|
d = new Private;
|
||||||
|
d->msg = dbus_message_new_method_return( replayingTo.d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message:: Message( const TQString& path, const TQString& interface,
|
||||||
|
const TQString& name )
|
||||||
|
{
|
||||||
|
d = new Private;
|
||||||
|
d->msg = dbus_message_new_signal( path.ascii(), interface.ascii(),
|
||||||
|
name.ascii() );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message::Message( const Message& replayingTo, const TQString& errorName,
|
||||||
|
const TQString& errorMessage )
|
||||||
|
{
|
||||||
|
d = new Private;
|
||||||
|
d->msg = dbus_message_new_error( replayingTo.d->msg, errorName.utf8(),
|
||||||
|
errorMessage.utf8() );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message Message::operator=( const Message& other )
|
||||||
|
{
|
||||||
|
//FIXME: ref the other.d->msg instead of copying it?
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Destructs message.
|
||||||
|
*/
|
||||||
|
Message::~Message()
|
||||||
|
{
|
||||||
|
if ( d->msg ) {
|
||||||
|
dbus_message_unref( d->msg );
|
||||||
|
}
|
||||||
|
delete d; d=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int Message::type() const
|
||||||
|
{
|
||||||
|
return dbus_message_get_type( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Message::setPath( const TQString& path )
|
||||||
|
{
|
||||||
|
dbus_message_set_path( d->msg, path.ascii() );
|
||||||
|
}
|
||||||
|
|
||||||
|
TQString Message::path() const
|
||||||
|
{
|
||||||
|
return dbus_message_get_path( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Message::setInterface( const TQString& iface )
|
||||||
|
{
|
||||||
|
dbus_message_set_interface( d->msg, iface.ascii() );
|
||||||
|
}
|
||||||
|
|
||||||
|
TQString Message::interface() const
|
||||||
|
{
|
||||||
|
return dbus_message_get_interface( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Message::setMember( const TQString& member )
|
||||||
|
{
|
||||||
|
dbus_message_set_member( d->msg, member.ascii() );
|
||||||
|
}
|
||||||
|
|
||||||
|
TQString Message::member() const
|
||||||
|
{
|
||||||
|
return dbus_message_get_member( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Message::setErrorName( const TQString& err )
|
||||||
|
{
|
||||||
|
dbus_message_set_error_name( d->msg, err.ascii() );
|
||||||
|
}
|
||||||
|
|
||||||
|
TQString Message::errorName() const
|
||||||
|
{
|
||||||
|
return dbus_message_get_error_name( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Message::setDestination( const TQString& dest )
|
||||||
|
{
|
||||||
|
dbus_message_set_destination( d->msg, dest.ascii() );
|
||||||
|
}
|
||||||
|
|
||||||
|
TQString Message::destination() const
|
||||||
|
{
|
||||||
|
return dbus_message_get_destination( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the message sender.
|
||||||
|
* @param sender the sender
|
||||||
|
* @return false if unsuccessful
|
||||||
|
*/
|
||||||
|
bool
|
||||||
|
Message::setSender( const TQString& sender )
|
||||||
|
{
|
||||||
|
return dbus_message_set_sender( d->msg, sender.latin1() );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns sender of this message.
|
||||||
|
* @return sender
|
||||||
|
*/
|
||||||
|
TQString
|
||||||
|
Message::sender() const
|
||||||
|
{
|
||||||
|
return dbus_message_get_sender( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
TQString Message::signature() const
|
||||||
|
{
|
||||||
|
return dbus_message_get_signature( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the starting iterator for the fields of this
|
||||||
|
* message.
|
||||||
|
* @return starting iterator
|
||||||
|
*/
|
||||||
|
Message::iterator
|
||||||
|
Message::begin() const
|
||||||
|
{
|
||||||
|
return iterator( d->msg );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the ending iterator for the fields of this
|
||||||
|
* message.
|
||||||
|
* @return ending iterator
|
||||||
|
*/
|
||||||
|
Message::iterator
|
||||||
|
Message::end() const
|
||||||
|
{
|
||||||
|
return iterator();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the field at position @p i
|
||||||
|
* @param i position of the wanted field
|
||||||
|
* @return TQVariant at position @p i or an empty TQVariant
|
||||||
|
*/
|
||||||
|
TQVariant
|
||||||
|
Message::at( int i )
|
||||||
|
{
|
||||||
|
iterator itr( d->msg );
|
||||||
|
|
||||||
|
while ( i-- ) {
|
||||||
|
if ( itr == end() )
|
||||||
|
return TQVariant();//nothing there
|
||||||
|
++itr;
|
||||||
|
}
|
||||||
|
return *itr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The underlying DBusMessage of this class.
|
||||||
|
* @return DBusMessage pointer.
|
||||||
|
*/
|
||||||
|
DBusMessage*
|
||||||
|
Message::message() const
|
||||||
|
{
|
||||||
|
return d->msg;
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( bool b )
|
||||||
|
{
|
||||||
|
const dbus_bool_t right_size_bool = b;
|
||||||
|
dbus_message_append_args( d->msg, DBUS_TYPE_BOOLEAN, &right_size_bool,
|
||||||
|
DBUS_TYPE_INVALID );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( TQ_INT8 byte )
|
||||||
|
{
|
||||||
|
dbus_message_append_args( d->msg, DBUS_TYPE_BYTE, &byte,
|
||||||
|
DBUS_TYPE_INVALID );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( TQ_INT32 num )
|
||||||
|
{
|
||||||
|
dbus_message_append_args( d->msg, DBUS_TYPE_INT32, &num,
|
||||||
|
DBUS_TYPE_INVALID );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( TQ_UINT32 num )
|
||||||
|
{
|
||||||
|
dbus_message_append_args( d->msg, DBUS_TYPE_UINT32, &num,
|
||||||
|
DBUS_TYPE_INVALID );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( TQ_INT64 num )
|
||||||
|
{
|
||||||
|
dbus_message_append_args( d->msg, DBUS_TYPE_INT64, &num,
|
||||||
|
DBUS_TYPE_INVALID );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( TQ_UINT64 num )
|
||||||
|
{
|
||||||
|
dbus_message_append_args( d->msg, DBUS_TYPE_UINT64, &num,
|
||||||
|
DBUS_TYPE_INVALID );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( double num )
|
||||||
|
{
|
||||||
|
dbus_message_append_args( d->msg, DBUS_TYPE_DOUBLE, &num,
|
||||||
|
DBUS_TYPE_INVALID );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( const TQString& str )
|
||||||
|
{
|
||||||
|
const char *u = str.utf8();
|
||||||
|
dbus_message_append_args( d->msg, DBUS_TYPE_STRING, &u,
|
||||||
|
DBUS_TYPE_INVALID );
|
||||||
|
}
|
||||||
|
|
||||||
|
Message& Message::operator<<( const TQVariant& custom )
|
||||||
|
{
|
||||||
|
//FIXME: imeplement
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,131 @@
|
|||||||
|
/* -*- mode: C++; c-file-style: "gnu" -*- */
|
||||||
|
/* message.h: TQt wrapper for DBusMessage
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.1
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#ifndef DBUS_TQT_MESSAGE_H
|
||||||
|
#define DBUS_TQT_MESSAGE_H
|
||||||
|
|
||||||
|
#include <tqvariant.h>
|
||||||
|
#include <tqstring.h>
|
||||||
|
#include <tqstringlist.h>
|
||||||
|
|
||||||
|
#include "dbus/dbus.h"
|
||||||
|
|
||||||
|
namespace DBusQt {
|
||||||
|
|
||||||
|
class Message
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
class iterator {
|
||||||
|
public:
|
||||||
|
iterator();
|
||||||
|
iterator( const iterator& );
|
||||||
|
iterator( DBusMessage* msg );
|
||||||
|
~iterator();
|
||||||
|
|
||||||
|
iterator& operator=( const iterator& );
|
||||||
|
const TQVariant& operator*() const;
|
||||||
|
TQVariant& operator*();
|
||||||
|
iterator& operator++();
|
||||||
|
iterator operator++(int);
|
||||||
|
bool operator==( const iterator& it );
|
||||||
|
bool operator!=( const iterator& it );
|
||||||
|
|
||||||
|
TQVariant var() const;
|
||||||
|
protected:
|
||||||
|
TQVariant marshallBaseType( DBusMessageIter* i );
|
||||||
|
void fillVar();
|
||||||
|
struct IteratorData;
|
||||||
|
IteratorData *d;
|
||||||
|
};
|
||||||
|
|
||||||
|
Message( int messageType );
|
||||||
|
Message( DBusMessage * );//hide this one from the public implementation
|
||||||
|
Message( const TQString& service, const TQString& path,
|
||||||
|
const TQString& interface, const TQString& method );
|
||||||
|
Message( const Message& replayingTo );
|
||||||
|
Message( const TQString& path, const TQString& interface,
|
||||||
|
const TQString& name );
|
||||||
|
Message( const Message& replayingTo, const TQString& errorName,
|
||||||
|
const TQString& errorMessage );
|
||||||
|
|
||||||
|
Message operator=( const Message& other );
|
||||||
|
|
||||||
|
virtual ~Message();
|
||||||
|
|
||||||
|
int type() const;
|
||||||
|
|
||||||
|
void setPath( const TQString& );
|
||||||
|
TQString path() const;
|
||||||
|
|
||||||
|
void setInterface( const TQString& );
|
||||||
|
TQString interface() const;
|
||||||
|
|
||||||
|
void setMember( const TQString& );
|
||||||
|
TQString member() const;
|
||||||
|
|
||||||
|
void setErrorName( const TQString& );
|
||||||
|
TQString errorName() const;
|
||||||
|
|
||||||
|
void setDestination( const TQString& );
|
||||||
|
TQString destination() const;
|
||||||
|
|
||||||
|
bool setSender( const TQString& sender );
|
||||||
|
TQString sender() const;
|
||||||
|
|
||||||
|
TQString signature() const;
|
||||||
|
|
||||||
|
iterator begin() const;
|
||||||
|
iterator end() const;
|
||||||
|
|
||||||
|
TQVariant at( int i );
|
||||||
|
|
||||||
|
|
||||||
|
public:
|
||||||
|
Message& operator<<( bool );
|
||||||
|
Message& operator<<( TQ_INT8 );
|
||||||
|
Message& operator<<( TQ_INT32 );
|
||||||
|
Message& operator<<( TQ_UINT32 );
|
||||||
|
Message& operator<<( TQ_INT64 );
|
||||||
|
Message& operator<<( TQ_UINT64 );
|
||||||
|
Message& operator<<( double );
|
||||||
|
Message& operator<<( const TQString& );
|
||||||
|
Message& operator<<( const TQVariant& );
|
||||||
|
//Message& operator<<();
|
||||||
|
//Message& operator<<();
|
||||||
|
//Message& operator<<();
|
||||||
|
//Message& operator<<();
|
||||||
|
//Message& operator<<();
|
||||||
|
//Message& operator<<();
|
||||||
|
//Message& operator<<();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
friend class Connection;
|
||||||
|
DBusMessage* message() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
struct Private;
|
||||||
|
Private *d;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,360 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# Common stub for a few missing GNU programs while installing.
|
||||||
|
|
||||||
|
scriptversion=2005-06-08.21
|
||||||
|
|
||||||
|
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
|
||||||
|
# Free Software Foundation, Inc.
|
||||||
|
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
||||||
|
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||||
|
# 02110-1301, USA.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that tqcontains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
if test $# -eq 0; then
|
||||||
|
echo 1>&2 "Try \`$0 --help' for more information"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
run=:
|
||||||
|
|
||||||
|
# In the cases where this matters, `missing' is being run in the
|
||||||
|
# srcdir already.
|
||||||
|
if test -f configure.ac; then
|
||||||
|
configure_ac=configure.ac
|
||||||
|
else
|
||||||
|
configure_ac=configure.in
|
||||||
|
fi
|
||||||
|
|
||||||
|
msg="missing on your system"
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
--run)
|
||||||
|
# Try to run requested program, and just exit if it succeeds.
|
||||||
|
run=
|
||||||
|
shift
|
||||||
|
"$@" && exit 0
|
||||||
|
# Exit code 63 means version mismatch. This often happens
|
||||||
|
# when the user try to use an ancient version of a tool on
|
||||||
|
# a file that requires a minimum version. In this case we
|
||||||
|
# we should proceed has if the program had been absent, or
|
||||||
|
# if --run hadn't been passed.
|
||||||
|
if test $? = 63; then
|
||||||
|
run=:
|
||||||
|
msg="probably too old"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
-h|--h|--he|--hel|--help)
|
||||||
|
echo "\
|
||||||
|
$0 [OPTION]... PROGRAM [ARGUMENT]...
|
||||||
|
|
||||||
|
Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
|
||||||
|
error status if there is no known handling for PROGRAM.
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-h, --help display this help and exit
|
||||||
|
-v, --version output version information and exit
|
||||||
|
--run try to run the given command, and emulate it if it fails
|
||||||
|
|
||||||
|
Supported PROGRAM values:
|
||||||
|
aclocal touch file \`aclocal.m4'
|
||||||
|
autoconf touch file \`configure'
|
||||||
|
autoheader touch file \`config.h.in'
|
||||||
|
automake touch all \`Makefile.in' files
|
||||||
|
bison create \`y.tab.[ch]', if possible, from existing .[ch]
|
||||||
|
flex create \`lex.yy.c', if possible, from existing .c
|
||||||
|
help2man touch the output file
|
||||||
|
lex create \`lex.yy.c', if possible, from existing .c
|
||||||
|
makeinfo touch the output file
|
||||||
|
tar try tar, gnutar, gtar, then tar without non-portable flags
|
||||||
|
yacc create \`y.tab.[ch]', if possible, from existing .[ch]
|
||||||
|
|
||||||
|
Send bug reports to <bug-automake@gnu.org>."
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
|
||||||
|
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
||||||
|
echo "missing $scriptversion (GNU Automake)"
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
|
||||||
|
-*)
|
||||||
|
echo 1>&2 "$0: Unknown \`$1' option"
|
||||||
|
echo 1>&2 "Try \`$0 --help' for more information"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Now exit if we have it, but it failed. Also exit now if we
|
||||||
|
# don't have it and --version was passed (most likely to detect
|
||||||
|
# the program).
|
||||||
|
case "$1" in
|
||||||
|
lex|yacc)
|
||||||
|
# Not GNU programs, they don't have --version.
|
||||||
|
;;
|
||||||
|
|
||||||
|
tar)
|
||||||
|
if test -n "$run"; then
|
||||||
|
echo 1>&2 "ERROR: \`tar' requires --run"
|
||||||
|
exit 1
|
||||||
|
elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
||||||
|
# We have it, but it failed.
|
||||||
|
exit 1
|
||||||
|
elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
|
||||||
|
# Could not run --version or --help. This is probably someone
|
||||||
|
# running `$TOOL --version' or `$TOOL --help' to check whether
|
||||||
|
# $TOOL exists and not knowing $TOOL uses missing.
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# If it does not exist, or fails to run (possibly an outdated version),
|
||||||
|
# try to emulate it.
|
||||||
|
case "$1" in
|
||||||
|
aclocal*)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
|
you modified \`acinclude.m4' or \`${configure_ac}'. You might want
|
||||||
|
to install the \`Automake' and \`Perl' packages. Grab them from
|
||||||
|
any GNU archive site."
|
||||||
|
touch aclocal.m4
|
||||||
|
;;
|
||||||
|
|
||||||
|
autoconf)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
|
you modified \`${configure_ac}'. You might want to install the
|
||||||
|
\`Autoconf' and \`GNU m4' packages. Grab them from any GNU
|
||||||
|
archive site."
|
||||||
|
touch configure
|
||||||
|
;;
|
||||||
|
|
||||||
|
autoheader)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
|
you modified \`acconfig.h' or \`${configure_ac}'. You might want
|
||||||
|
to install the \`Autoconf' and \`GNU m4' packages. Grab them
|
||||||
|
from any GNU archive site."
|
||||||
|
files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
|
||||||
|
test -z "$files" && files="config.h"
|
||||||
|
touch_files=
|
||||||
|
for f in $files; do
|
||||||
|
case "$f" in
|
||||||
|
*:*) touch_files="$touch_files "`echo "$f" |
|
||||||
|
sed -e 's/^[^:]*://' -e 's/:.*//'`;;
|
||||||
|
*) touch_files="$touch_files $f.in";;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
touch $touch_files
|
||||||
|
;;
|
||||||
|
|
||||||
|
automake*)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
|
you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
|
||||||
|
You might want to install the \`Automake' and \`Perl' packages.
|
||||||
|
Grab them from any GNU archive site."
|
||||||
|
tqfind . -type f -name Makefile.am -print |
|
||||||
|
sed 's/\.am$/.in/' |
|
||||||
|
while read f; do touch "$f"; done
|
||||||
|
;;
|
||||||
|
|
||||||
|
autom4te)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is needed, but is $msg.
|
||||||
|
You might have modified some files without having the
|
||||||
|
proper tools for further handling them.
|
||||||
|
You can get \`$1' as part of \`Autoconf' from any GNU
|
||||||
|
archive site."
|
||||||
|
|
||||||
|
file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
|
||||||
|
test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
|
||||||
|
if test -f "$file"; then
|
||||||
|
touch $file
|
||||||
|
else
|
||||||
|
test -z "$file" || exec >$file
|
||||||
|
echo "#! /bin/sh"
|
||||||
|
echo "# Created by GNU Automake missing as a tqreplacement of"
|
||||||
|
echo "# $ $@"
|
||||||
|
echo "exit 0"
|
||||||
|
chmod +x $file
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
bison|yacc)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' $msg. You should only need it if
|
||||||
|
you modified a \`.y' file. You may need the \`Bison' package
|
||||||
|
in order for those modifications to take effect. You can get
|
||||||
|
\`Bison' from any GNU archive site."
|
||||||
|
rm -f y.tab.c y.tab.h
|
||||||
|
if [ $# -ne 1 ]; then
|
||||||
|
eval LASTARG="\${$#}"
|
||||||
|
case "$LASTARG" in
|
||||||
|
*.y)
|
||||||
|
SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
|
||||||
|
if [ -f "$SRCFILE" ]; then
|
||||||
|
cp "$SRCFILE" y.tab.c
|
||||||
|
fi
|
||||||
|
SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
|
||||||
|
if [ -f "$SRCFILE" ]; then
|
||||||
|
cp "$SRCFILE" y.tab.h
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
if [ ! -f y.tab.h ]; then
|
||||||
|
echo >y.tab.h
|
||||||
|
fi
|
||||||
|
if [ ! -f y.tab.c ]; then
|
||||||
|
echo 'main() { return 0; }' >y.tab.c
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
lex|flex)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
|
you modified a \`.l' file. You may need the \`Flex' package
|
||||||
|
in order for those modifications to take effect. You can get
|
||||||
|
\`Flex' from any GNU archive site."
|
||||||
|
rm -f lex.yy.c
|
||||||
|
if [ $# -ne 1 ]; then
|
||||||
|
eval LASTARG="\${$#}"
|
||||||
|
case "$LASTARG" in
|
||||||
|
*.l)
|
||||||
|
SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
|
||||||
|
if [ -f "$SRCFILE" ]; then
|
||||||
|
cp "$SRCFILE" lex.yy.c
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
if [ ! -f lex.yy.c ]; then
|
||||||
|
echo 'main() { return 0; }' >lex.yy.c
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
help2man)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
|
you modified a dependency of a manual page. You may need the
|
||||||
|
\`Help2man' package in order for those modifications to take
|
||||||
|
effect. You can get \`Help2man' from any GNU archive site."
|
||||||
|
|
||||||
|
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
|
||||||
|
if test -z "$file"; then
|
||||||
|
file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
|
||||||
|
fi
|
||||||
|
if [ -f "$file" ]; then
|
||||||
|
touch $file
|
||||||
|
else
|
||||||
|
test -z "$file" || exec >$file
|
||||||
|
echo ".ab help2man is required to generate this page"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
makeinfo)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is $msg. You should only need it if
|
||||||
|
you modified a \`.texi' or \`.texinfo' file, or any other file
|
||||||
|
indirectly affecting the aspect of the manual. The spurious
|
||||||
|
call might also be the consequence of using a buggy \`make' (AIX,
|
||||||
|
DU, IRIX). You might want to install the \`Texinfo' package or
|
||||||
|
the \`GNU make' package. Grab either from any GNU archive site."
|
||||||
|
# The file to touch is that specified with -o ...
|
||||||
|
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
|
||||||
|
if test -z "$file"; then
|
||||||
|
# ... or it is the one specified with @setfilename ...
|
||||||
|
infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
|
||||||
|
file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
|
||||||
|
# ... or it is derived from the source name (dir/f.texi becomes f.info)
|
||||||
|
test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
|
||||||
|
fi
|
||||||
|
# If the file does not exist, the user really needs makeinfo;
|
||||||
|
# let's fail without touching anything.
|
||||||
|
test -f $file || exit 1
|
||||||
|
touch $file
|
||||||
|
;;
|
||||||
|
|
||||||
|
tar)
|
||||||
|
shift
|
||||||
|
|
||||||
|
# We have already tried tar in the generic part.
|
||||||
|
# Look for gnutar/gtar before invocation to avoid ugly error
|
||||||
|
# messages.
|
||||||
|
if (gnutar --version > /dev/null 2>&1); then
|
||||||
|
gnutar "$@" && exit 0
|
||||||
|
fi
|
||||||
|
if (gtar --version > /dev/null 2>&1); then
|
||||||
|
gtar "$@" && exit 0
|
||||||
|
fi
|
||||||
|
firstarg="$1"
|
||||||
|
if shift; then
|
||||||
|
case "$firstarg" in
|
||||||
|
*o*)
|
||||||
|
firstarg=`echo "$firstarg" | sed s/o//`
|
||||||
|
tar "$firstarg" "$@" && exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
case "$firstarg" in
|
||||||
|
*h*)
|
||||||
|
firstarg=`echo "$firstarg" | sed s/h//`
|
||||||
|
tar "$firstarg" "$@" && exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: I can't seem to be able to run \`tar' with the given arguments.
|
||||||
|
You may want to install GNU tar or Free paxutils, or check the
|
||||||
|
command line arguments."
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo 1>&2 "\
|
||||||
|
WARNING: \`$1' is needed, and is $msg.
|
||||||
|
You might have modified some files without having the
|
||||||
|
proper tools for further handling them. Check the \`README' file,
|
||||||
|
it often tells you about the needed prerequisites for installing
|
||||||
|
this package. You may also peek at any GNU archive site, in case
|
||||||
|
some other package would contain this missing \`$1' program."
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-end: "$"
|
||||||
|
# End:
|
@ -0,0 +1,37 @@
|
|||||||
|
if HAVE_QT3
|
||||||
|
INCLUDES=-I$(top_srcdir) $(DBUS_CFLAGS) $(DBUS_CLIENT_CFLAGS) $(DBUS_QT3_CXXFLAGS)
|
||||||
|
|
||||||
|
lib_LTLIBRARIES=libdbus-qt-1.la
|
||||||
|
|
||||||
|
dbusinclude_HEADERS= \
|
||||||
|
dbus-qt.h message.h connection.h \
|
||||||
|
server.h
|
||||||
|
|
||||||
|
dbusincludedir= $(includedir)/dbus-1.0/dbus/
|
||||||
|
|
||||||
|
libdbus_qt_1_la_SOURCES = \
|
||||||
|
$(top_srcdir)/qt3/dbus-qthread.cpp \
|
||||||
|
$(top_srcdir)/qt3/message.cpp \
|
||||||
|
$(top_srcdir)/qt3/connection.cpp \
|
||||||
|
$(top_srcdir)/qt3/integrator.cpp \
|
||||||
|
$(top_srcdir)/qt3/server.cpp \
|
||||||
|
$(top_srcdir)/qt3/connection.h \
|
||||||
|
$(top_srcdir)/qt3/integrator.h \
|
||||||
|
$(top_srcdir)/qt3/server.h
|
||||||
|
|
||||||
|
|
||||||
|
$(top_srcdir)/qt3/connection.cpp: connection.tqmoc
|
||||||
|
$(top_srcdir)/qt3/integrator.cpp: integrator.tqmoc
|
||||||
|
$(top_srcdir)/qt3/server.cpp: server.tqmoc
|
||||||
|
$(top_srcdir)/qt3/connection.h: connection.tqmoc
|
||||||
|
$(top_srcdir)/qt3/integrator.h: integrator.tqmoc
|
||||||
|
$(top_srcdir)/qt3/server.h: server.tqmoc
|
||||||
|
|
||||||
|
CLEANFILES=connection.tqmoc integrator.tqmoc server.tqmoc
|
||||||
|
|
||||||
|
libdbus_qt_1_la_LIBADD= $(DBUS_LIBS) $(DBUS_QT3_LIBS)
|
||||||
|
libdbus_qt_1_la_LDFLAGS= -version-info 1:0 -no-undefined
|
||||||
|
|
||||||
|
%.tqmoc: %.h
|
||||||
|
$(QT3_TQMOC) $< > $@
|
||||||
|
endif
|
@ -0,0 +1,597 @@
|
|||||||
|
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
||||||
|
# @configure_input@
|
||||||
|
|
||||||
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||||
|
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
|
# This Makefile.in is free software; the Free Software Foundation
|
||||||
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
|
# with or without modifications, as long as this notice is preserved.
|
||||||
|
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||||
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
|
||||||
|
|
||||||
|
srcdir = @srcdir@
|
||||||
|
top_srcdir = @top_srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
pkgdatadir = $(datadir)/@PACKAGE@
|
||||||
|
pkglibdir = $(libdir)/@PACKAGE@
|
||||||
|
pkgincludedir = $(includedir)/@PACKAGE@
|
||||||
|
top_builddir = ..
|
||||||
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||||
|
INSTALL = @INSTALL@
|
||||||
|
install_sh_DATA = $(install_sh) -c -m 644
|
||||||
|
install_sh_PROGRAM = $(install_sh) -c
|
||||||
|
install_sh_SCRIPT = $(install_sh) -c
|
||||||
|
INSTALL_HEADER = $(INSTALL_DATA)
|
||||||
|
transform = $(program_transform_name)
|
||||||
|
NORMAL_INSTALL = :
|
||||||
|
PRE_INSTALL = :
|
||||||
|
POST_INSTALL = :
|
||||||
|
NORMAL_UNINSTALL = :
|
||||||
|
PRE_UNINSTALL = :
|
||||||
|
POST_UNINSTALL = :
|
||||||
|
build_triplet = @build@
|
||||||
|
host_triplet = @host@
|
||||||
|
target_triplet = @target@
|
||||||
|
subdir = qt3
|
||||||
|
DIST_COMMON = $(am__dbusinclude_HEADERS_DIST) $(srcdir)/Makefile.am \
|
||||||
|
$(srcdir)/Makefile.in
|
||||||
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
|
am__aclocal_m4_deps = $(top_srcdir)/configure.in
|
||||||
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||||
|
$(ACLOCAL_M4)
|
||||||
|
mkinstalldirs = $(install_sh) -d
|
||||||
|
CONFIG_HEADER = $(top_builddir)/config.h
|
||||||
|
CONFIG_CLEAN_FILES =
|
||||||
|
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||||
|
am__vpath_adj = case $$p in \
|
||||||
|
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||||
|
*) f=$$p;; \
|
||||||
|
esac;
|
||||||
|
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||||
|
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(dbusincludedir)"
|
||||||
|
libLTLIBRARIES_INSTALL = $(INSTALL)
|
||||||
|
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||||
|
am__DEPENDENCIES_1 =
|
||||||
|
@HAVE_QT3_TRUE@libdbus_qt_1_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
|
||||||
|
@HAVE_QT3_TRUE@ $(am__DEPENDENCIES_1)
|
||||||
|
am__libdbus_qt_1_la_SOURCES_DIST = $(top_srcdir)/qt3/dbus-qthread.cpp \
|
||||||
|
$(top_srcdir)/qt3/message.cpp $(top_srcdir)/qt3/connection.cpp \
|
||||||
|
$(top_srcdir)/qt3/integrator.cpp $(top_srcdir)/qt3/server.cpp \
|
||||||
|
$(top_srcdir)/qt3/connection.h $(top_srcdir)/qt3/integrator.h \
|
||||||
|
$(top_srcdir)/qt3/server.h
|
||||||
|
@HAVE_QT3_TRUE@am_libdbus_qt_1_la_OBJECTS = dbus-qthread.lo message.lo \
|
||||||
|
@HAVE_QT3_TRUE@ connection.lo integrator.lo server.lo
|
||||||
|
libdbus_qt_1_la_OBJECTS = $(am_libdbus_qt_1_la_OBJECTS)
|
||||||
|
@HAVE_QT3_TRUE@am_libdbus_qt_1_la_rpath = -rpath $(libdir)
|
||||||
|
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
||||||
|
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||||
|
am__depfiles_maybe = depfiles
|
||||||
|
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||||
|
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||||
|
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
|
||||||
|
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||||
|
$(AM_CXXFLAGS) $(CXXFLAGS)
|
||||||
|
CXXLD = $(CXX)
|
||||||
|
CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
||||||
|
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||||
|
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||||
|
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||||
|
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
||||||
|
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||||
|
$(AM_CFLAGS) $(CFLAGS)
|
||||||
|
CCLD = $(CC)
|
||||||
|
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||||
|
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||||
|
SOURCES = $(libdbus_qt_1_la_SOURCES)
|
||||||
|
DIST_SOURCES = $(am__libdbus_qt_1_la_SOURCES_DIST)
|
||||||
|
am__dbusinclude_HEADERS_DIST = dbus-qt.h message.h connection.h \
|
||||||
|
server.h
|
||||||
|
dbusincludeHEADERS_INSTALL = $(INSTALL_HEADER)
|
||||||
|
HEADERS = $(dbusinclude_HEADERS)
|
||||||
|
ETAGS = etags
|
||||||
|
CTAGS = ctags
|
||||||
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
ACLOCAL = @ACLOCAL@
|
||||||
|
AMDEP_FALSE = @AMDEP_FALSE@
|
||||||
|
AMDEP_TRUE = @AMDEP_TRUE@
|
||||||
|
AMTAR = @AMTAR@
|
||||||
|
AR = @AR@
|
||||||
|
AUTOCONF = @AUTOCONF@
|
||||||
|
AUTOHEADER = @AUTOHEADER@
|
||||||
|
AUTOMAKE = @AUTOMAKE@
|
||||||
|
AWK = @AWK@
|
||||||
|
CC = @CC@
|
||||||
|
CCDEPMODE = @CCDEPMODE@
|
||||||
|
CFLAGS = @CFLAGS@
|
||||||
|
CPP = @CPP@
|
||||||
|
CPPFLAGS = @CPPFLAGS@
|
||||||
|
CXX = @CXX@
|
||||||
|
CXXCPP = @CXXCPP@
|
||||||
|
CXXDEPMODE = @CXXDEPMODE@
|
||||||
|
CXXFLAGS = @CXXFLAGS@
|
||||||
|
CYGPATH_W = @CYGPATH_W@
|
||||||
|
DBUS_CFLAGS = @DBUS_CFLAGS@
|
||||||
|
DBUS_CLIENT_CFLAGS = @DBUS_CLIENT_CFLAGS@
|
||||||
|
DBUS_CLIENT_LIBS = @DBUS_CLIENT_LIBS@
|
||||||
|
DBUS_GCOV_ENABLED_FALSE = @DBUS_GCOV_ENABLED_FALSE@
|
||||||
|
DBUS_GCOV_ENABLED_TRUE = @DBUS_GCOV_ENABLED_TRUE@
|
||||||
|
DBUS_HAVE_INT64 = @DBUS_HAVE_INT64@
|
||||||
|
DBUS_INCLUDEDIR = @DBUS_INCLUDEDIR@
|
||||||
|
DBUS_INT16_TYPE = @DBUS_INT16_TYPE@
|
||||||
|
DBUS_INT32_TYPE = @DBUS_INT32_TYPE@
|
||||||
|
DBUS_INT64_CONSTANT = @DBUS_INT64_CONSTANT@
|
||||||
|
DBUS_INT64_TYPE = @DBUS_INT64_TYPE@
|
||||||
|
DBUS_LIBS = @DBUS_LIBS@
|
||||||
|
DBUS_PATH_OR_ABSTRACT = @DBUS_PATH_OR_ABSTRACT@
|
||||||
|
DBUS_QT3_CXXFLAGS = @DBUS_QT3_CXXFLAGS@
|
||||||
|
DBUS_QT3_LIBS = @DBUS_QT3_LIBS@
|
||||||
|
DBUS_TEST_CFLAGS = @DBUS_TEST_CFLAGS@
|
||||||
|
DBUS_TEST_LIBS = @DBUS_TEST_LIBS@
|
||||||
|
DBUS_UINT64_CONSTANT = @DBUS_UINT64_CONSTANT@
|
||||||
|
DEFS = @DEFS@
|
||||||
|
DEPDIR = @DEPDIR@
|
||||||
|
ECHO = @ECHO@
|
||||||
|
ECHO_C = @ECHO_C@
|
||||||
|
ECHO_N = @ECHO_N@
|
||||||
|
ECHO_T = @ECHO_T@
|
||||||
|
EGREP = @EGREP@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
|
F77 = @F77@
|
||||||
|
FFLAGS = @FFLAGS@
|
||||||
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
|
||||||
|
GREP = @GREP@
|
||||||
|
HAVE_QT3_FALSE = @HAVE_QT3_FALSE@
|
||||||
|
HAVE_QT3_TRUE = @HAVE_QT3_TRUE@
|
||||||
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||||
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||||
|
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||||
|
LDFLAGS = @LDFLAGS@
|
||||||
|
LIBOBJS = @LIBOBJS@
|
||||||
|
LIBS = @LIBS@
|
||||||
|
LIBTOOL = @LIBTOOL@
|
||||||
|
LN_S = @LN_S@
|
||||||
|
LTLIBOBJS = @LTLIBOBJS@
|
||||||
|
LT_AGE = @LT_AGE@
|
||||||
|
LT_CURRENT = @LT_CURRENT@
|
||||||
|
LT_REVISION = @LT_REVISION@
|
||||||
|
MAINT = @MAINT@
|
||||||
|
MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
|
||||||
|
MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
|
||||||
|
MAKEINFO = @MAKEINFO@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
|
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||||
|
PACKAGE_NAME = @PACKAGE_NAME@
|
||||||
|
PACKAGE_STRING = @PACKAGE_STRING@
|
||||||
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||||
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||||
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||||
|
PKG_CONFIG = @PKG_CONFIG@
|
||||||
|
QT3_TQMOC = @QT3_TQMOC@
|
||||||
|
RANLIB = @RANLIB@
|
||||||
|
SET_MAKE = @SET_MAKE@
|
||||||
|
SHELL = @SHELL@
|
||||||
|
STRIP = @STRIP@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
ac_ct_CC = @ac_ct_CC@
|
||||||
|
ac_ct_CXX = @ac_ct_CXX@
|
||||||
|
ac_ct_F77 = @ac_ct_F77@
|
||||||
|
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||||
|
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||||
|
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
||||||
|
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
|
||||||
|
am__include = @am__include@
|
||||||
|
am__leading_dot = @am__leading_dot@
|
||||||
|
am__quote = @am__quote@
|
||||||
|
am__tar = @am__tar@
|
||||||
|
am__untar = @am__untar@
|
||||||
|
bindir = @bindir@
|
||||||
|
build = @build@
|
||||||
|
build_alias = @build_alias@
|
||||||
|
build_cpu = @build_cpu@
|
||||||
|
build_os = @build_os@
|
||||||
|
build_vendor = @build_vendor@
|
||||||
|
datadir = @datadir@
|
||||||
|
datarootdir = @datarootdir@
|
||||||
|
docdir = @docdir@
|
||||||
|
dvidir = @dvidir@
|
||||||
|
exec_prefix = @exec_prefix@
|
||||||
|
host = @host@
|
||||||
|
host_alias = @host_alias@
|
||||||
|
host_cpu = @host_cpu@
|
||||||
|
host_os = @host_os@
|
||||||
|
host_vendor = @host_vendor@
|
||||||
|
htmldir = @htmldir@
|
||||||
|
includedir = @includedir@
|
||||||
|
infodir = @infodir@
|
||||||
|
install_sh = @install_sh@
|
||||||
|
libdir = @libdir@
|
||||||
|
libexecdir = @libexecdir@
|
||||||
|
localedir = @localedir@
|
||||||
|
localstatedir = @localstatedir@
|
||||||
|
mandir = @mandir@
|
||||||
|
mkdir_p = @mkdir_p@
|
||||||
|
oldincludedir = @oldincludedir@
|
||||||
|
pdfdir = @pdfdir@
|
||||||
|
prefix = @prefix@
|
||||||
|
program_transform_name = @program_transform_name@
|
||||||
|
psdir = @psdir@
|
||||||
|
sbindir = @sbindir@
|
||||||
|
sharedstatedir = @sharedstatedir@
|
||||||
|
sysconfdir = @sysconfdir@
|
||||||
|
target = @target@
|
||||||
|
target_alias = @target_alias@
|
||||||
|
target_cpu = @target_cpu@
|
||||||
|
target_os = @target_os@
|
||||||
|
target_vendor = @target_vendor@
|
||||||
|
@HAVE_QT3_TRUE@INCLUDES = -I$(top_srcdir) $(DBUS_CFLAGS) $(DBUS_CLIENT_CFLAGS) $(DBUS_QT3_CXXFLAGS)
|
||||||
|
@HAVE_QT3_TRUE@lib_LTLIBRARIES = libdbus-qt-1.la
|
||||||
|
@HAVE_QT3_TRUE@dbusinclude_HEADERS = \
|
||||||
|
@HAVE_QT3_TRUE@ dbus-qt.h message.h connection.h \
|
||||||
|
@HAVE_QT3_TRUE@ server.h
|
||||||
|
|
||||||
|
@HAVE_QT3_TRUE@dbusincludedir = $(includedir)/dbus-1.0/dbus/
|
||||||
|
@HAVE_QT3_TRUE@libdbus_qt_1_la_SOURCES = \
|
||||||
|
@HAVE_QT3_TRUE@ $(top_srcdir)/qt3/dbus-qthread.cpp \
|
||||||
|
@HAVE_QT3_TRUE@ $(top_srcdir)/qt3/message.cpp \
|
||||||
|
@HAVE_QT3_TRUE@ $(top_srcdir)/qt3/connection.cpp \
|
||||||
|
@HAVE_QT3_TRUE@ $(top_srcdir)/qt3/integrator.cpp \
|
||||||
|
@HAVE_QT3_TRUE@ $(top_srcdir)/qt3/server.cpp \
|
||||||
|
@HAVE_QT3_TRUE@ $(top_srcdir)/qt3/connection.h \
|
||||||
|
@HAVE_QT3_TRUE@ $(top_srcdir)/qt3/integrator.h \
|
||||||
|
@HAVE_QT3_TRUE@ $(top_srcdir)/qt3/server.h
|
||||||
|
|
||||||
|
@HAVE_QT3_TRUE@CLEANFILES = connection.tqmoc integrator.tqmoc server.tqmoc
|
||||||
|
@HAVE_QT3_TRUE@libdbus_qt_1_la_LIBADD = $(DBUS_LIBS) $(DBUS_QT3_LIBS)
|
||||||
|
@HAVE_QT3_TRUE@libdbus_qt_1_la_LDFLAGS = -version-info 1:0 -no-undefined
|
||||||
|
all: all-am
|
||||||
|
|
||||||
|
.SUFFIXES:
|
||||||
|
.SUFFIXES: .cpp .lo .o .obj
|
||||||
|
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
||||||
|
@for dep in $?; do \
|
||||||
|
case '$(am__configure_deps)' in \
|
||||||
|
*$$dep*) \
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||||
|
&& exit 0; \
|
||||||
|
exit 1;; \
|
||||||
|
esac; \
|
||||||
|
done; \
|
||||||
|
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu qt3/Makefile'; \
|
||||||
|
cd $(top_srcdir) && \
|
||||||
|
$(AUTOMAKE) --gnu qt3/Makefile
|
||||||
|
.PRECIOUS: Makefile
|
||||||
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
|
@case '$?' in \
|
||||||
|
*config.status*) \
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||||
|
*) \
|
||||||
|
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||||
|
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||||
|
esac;
|
||||||
|
|
||||||
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||||
|
|
||||||
|
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||||
|
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||||
|
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||||
|
@$(NORMAL_INSTALL)
|
||||||
|
test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
|
||||||
|
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||||
|
if test -f $$p; then \
|
||||||
|
f=$(am__strip_dir) \
|
||||||
|
echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
||||||
|
$(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
||||||
|
else :; fi; \
|
||||||
|
done
|
||||||
|
|
||||||
|
uninstall-libLTLIBRARIES:
|
||||||
|
@$(NORMAL_UNINSTALL)
|
||||||
|
@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||||
|
p=$(am__strip_dir) \
|
||||||
|
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
||||||
|
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
||||||
|
done
|
||||||
|
|
||||||
|
clean-libLTLIBRARIES:
|
||||||
|
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||||
|
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||||
|
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||||
|
test "$$dir" != "$$p" || dir=.; \
|
||||||
|
echo "rm -f \"$${dir}/so_locations\""; \
|
||||||
|
rm -f "$${dir}/so_locations"; \
|
||||||
|
done
|
||||||
|
libdbus-qt-1.la: $(libdbus_qt_1_la_OBJECTS) $(libdbus_qt_1_la_DEPENDENCIES)
|
||||||
|
$(CXXLINK) $(am_libdbus_qt_1_la_rpath) $(libdbus_qt_1_la_LDFLAGS) $(libdbus_qt_1_la_OBJECTS) $(libdbus_qt_1_la_LIBADD) $(LIBS)
|
||||||
|
|
||||||
|
mostlyclean-compile:
|
||||||
|
-rm -f *.$(OBJEXT)
|
||||||
|
|
||||||
|
distclean-compile:
|
||||||
|
-rm -f *.tab.c
|
||||||
|
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/connection.Plo@am__quote@
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dbus-qthread.Plo@am__quote@
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/integrator.Plo@am__quote@
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/message.Plo@am__quote@
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/server.Plo@am__quote@
|
||||||
|
|
||||||
|
.cpp.o:
|
||||||
|
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||||
|
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
||||||
|
|
||||||
|
.cpp.obj:
|
||||||
|
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||||
|
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||||
|
|
||||||
|
.cpp.lo:
|
||||||
|
@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||||
|
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
|
||||||
|
|
||||||
|
dbus-qthread.lo: $(top_srcdir)/qt3/dbus-qthread.cpp
|
||||||
|
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dbus-qthread.lo -MD -MP -MF "$(DEPDIR)/dbus-qthread.Tpo" -c -o dbus-qthread.lo `test -f '$(top_srcdir)/qt3/dbus-qthread.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/dbus-qthread.cpp; \
|
||||||
|
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/dbus-qthread.Tpo" "$(DEPDIR)/dbus-qthread.Plo"; else rm -f "$(DEPDIR)/dbus-qthread.Tpo"; exit 1; fi
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(top_srcdir)/qt3/dbus-qthread.cpp' object='dbus-qthread.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dbus-qthread.lo `test -f '$(top_srcdir)/qt3/dbus-qthread.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/dbus-qthread.cpp
|
||||||
|
|
||||||
|
message.lo: $(top_srcdir)/qt3/message.cpp
|
||||||
|
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT message.lo -MD -MP -MF "$(DEPDIR)/message.Tpo" -c -o message.lo `test -f '$(top_srcdir)/qt3/message.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/message.cpp; \
|
||||||
|
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/message.Tpo" "$(DEPDIR)/message.Plo"; else rm -f "$(DEPDIR)/message.Tpo"; exit 1; fi
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(top_srcdir)/qt3/message.cpp' object='message.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o message.lo `test -f '$(top_srcdir)/qt3/message.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/message.cpp
|
||||||
|
|
||||||
|
connection.lo: $(top_srcdir)/qt3/connection.cpp
|
||||||
|
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT connection.lo -MD -MP -MF "$(DEPDIR)/connection.Tpo" -c -o connection.lo `test -f '$(top_srcdir)/qt3/connection.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/connection.cpp; \
|
||||||
|
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/connection.Tpo" "$(DEPDIR)/connection.Plo"; else rm -f "$(DEPDIR)/connection.Tpo"; exit 1; fi
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(top_srcdir)/qt3/connection.cpp' object='connection.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o connection.lo `test -f '$(top_srcdir)/qt3/connection.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/connection.cpp
|
||||||
|
|
||||||
|
integrator.lo: $(top_srcdir)/qt3/integrator.cpp
|
||||||
|
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT integrator.lo -MD -MP -MF "$(DEPDIR)/integrator.Tpo" -c -o integrator.lo `test -f '$(top_srcdir)/qt3/integrator.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/integrator.cpp; \
|
||||||
|
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/integrator.Tpo" "$(DEPDIR)/integrator.Plo"; else rm -f "$(DEPDIR)/integrator.Tpo"; exit 1; fi
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(top_srcdir)/qt3/integrator.cpp' object='integrator.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o integrator.lo `test -f '$(top_srcdir)/qt3/integrator.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/integrator.cpp
|
||||||
|
|
||||||
|
server.lo: $(top_srcdir)/qt3/server.cpp
|
||||||
|
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT server.lo -MD -MP -MF "$(DEPDIR)/server.Tpo" -c -o server.lo `test -f '$(top_srcdir)/qt3/server.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/server.cpp; \
|
||||||
|
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/server.Tpo" "$(DEPDIR)/server.Plo"; else rm -f "$(DEPDIR)/server.Tpo"; exit 1; fi
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(top_srcdir)/qt3/server.cpp' object='server.lo' libtool=yes @AMDEPBACKSLASH@
|
||||||
|
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||||
|
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o server.lo `test -f '$(top_srcdir)/qt3/server.cpp' || echo '$(srcdir)/'`$(top_srcdir)/qt3/server.cpp
|
||||||
|
|
||||||
|
mostlyclean-libtool:
|
||||||
|
-rm -f *.lo
|
||||||
|
|
||||||
|
clean-libtool:
|
||||||
|
-rm -rf .libs _libs
|
||||||
|
|
||||||
|
distclean-libtool:
|
||||||
|
-rm -f libtool
|
||||||
|
uninstall-info-am:
|
||||||
|
install-dbusincludeHEADERS: $(dbusinclude_HEADERS)
|
||||||
|
@$(NORMAL_INSTALL)
|
||||||
|
test -z "$(dbusincludedir)" || $(mkdir_p) "$(DESTDIR)$(dbusincludedir)"
|
||||||
|
@list='$(dbusinclude_HEADERS)'; for p in $$list; do \
|
||||||
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||||
|
f=$(am__strip_dir) \
|
||||||
|
echo " $(dbusincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(dbusincludedir)/$$f'"; \
|
||||||
|
$(dbusincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(dbusincludedir)/$$f"; \
|
||||||
|
done
|
||||||
|
|
||||||
|
uninstall-dbusincludeHEADERS:
|
||||||
|
@$(NORMAL_UNINSTALL)
|
||||||
|
@list='$(dbusinclude_HEADERS)'; for p in $$list; do \
|
||||||
|
f=$(am__strip_dir) \
|
||||||
|
echo " rm -f '$(DESTDIR)$(dbusincludedir)/$$f'"; \
|
||||||
|
rm -f "$(DESTDIR)$(dbusincludedir)/$$f"; \
|
||||||
|
done
|
||||||
|
|
||||||
|
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||||
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||||
|
unique=`for i in $$list; do \
|
||||||
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||||
|
done | \
|
||||||
|
$(AWK) ' { files[$$0] = 1; } \
|
||||||
|
END { for (i in files) print i; }'`; \
|
||||||
|
mkid -fID $$unique
|
||||||
|
tags: TAGS
|
||||||
|
|
||||||
|
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
|
$(TAGS_FILES) $(LISP)
|
||||||
|
tags=; \
|
||||||
|
here=`pwd`; \
|
||||||
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||||
|
unique=`for i in $$list; do \
|
||||||
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||||
|
done | \
|
||||||
|
$(AWK) ' { files[$$0] = 1; } \
|
||||||
|
END { for (i in files) print i; }'`; \
|
||||||
|
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||||
|
test -n "$$unique" || unique=$$empty_fix; \
|
||||||
|
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||||
|
$$tags $$unique; \
|
||||||
|
fi
|
||||||
|
ctags: CTAGS
|
||||||
|
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
|
$(TAGS_FILES) $(LISP)
|
||||||
|
tags=; \
|
||||||
|
here=`pwd`; \
|
||||||
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||||
|
unique=`for i in $$list; do \
|
||||||
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||||
|
done | \
|
||||||
|
$(AWK) ' { files[$$0] = 1; } \
|
||||||
|
END { for (i in files) print i; }'`; \
|
||||||
|
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||||
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||||
|
$$tags $$unique
|
||||||
|
|
||||||
|
GTAGS:
|
||||||
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||||
|
&& cd $(top_srcdir) \
|
||||||
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
|
distclean-tags:
|
||||||
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||||
|
|
||||||
|
distdir: $(DISTFILES)
|
||||||
|
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||||
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||||
|
list='$(DISTFILES)'; for file in $$list; do \
|
||||||
|
case $$file in \
|
||||||
|
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||||
|
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||||
|
esac; \
|
||||||
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||||
|
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||||
|
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||||
|
dir="/$$dir"; \
|
||||||
|
$(mkdir_p) "$(distdir)$$dir"; \
|
||||||
|
else \
|
||||||
|
dir=''; \
|
||||||
|
fi; \
|
||||||
|
if test -d $$d/$$file; then \
|
||||||
|
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||||
|
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||||
|
fi; \
|
||||||
|
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||||
|
else \
|
||||||
|
test -f $(distdir)/$$file \
|
||||||
|
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||||
|
|| exit 1; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
check-am: all-am
|
||||||
|
check: check-am
|
||||||
|
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
|
||||||
|
installdirs:
|
||||||
|
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(dbusincludedir)"; do \
|
||||||
|
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||||
|
done
|
||||||
|
install: install-am
|
||||||
|
install-exec: install-exec-am
|
||||||
|
install-data: install-data-am
|
||||||
|
uninstall: uninstall-am
|
||||||
|
|
||||||
|
install-am: all-am
|
||||||
|
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||||
|
|
||||||
|
installcheck: installcheck-am
|
||||||
|
install-strip:
|
||||||
|
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||||
|
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||||
|
`test -z '$(STRIP)' || \
|
||||||
|
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||||
|
mostlyclean-generic:
|
||||||
|
|
||||||
|
clean-generic:
|
||||||
|
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||||
|
|
||||||
|
distclean-generic:
|
||||||
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||||
|
|
||||||
|
maintainer-clean-generic:
|
||||||
|
@echo "This command is intended for maintainers to use"
|
||||||
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
clean: clean-am
|
||||||
|
|
||||||
|
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
||||||
|
mostlyclean-am
|
||||||
|
|
||||||
|
distclean: distclean-am
|
||||||
|
-rm -rf ./$(DEPDIR)
|
||||||
|
-rm -f Makefile
|
||||||
|
distclean-am: clean-am distclean-compile distclean-generic \
|
||||||
|
distclean-libtool distclean-tags
|
||||||
|
|
||||||
|
dvi: dvi-am
|
||||||
|
|
||||||
|
dvi-am:
|
||||||
|
|
||||||
|
html: html-am
|
||||||
|
|
||||||
|
info: info-am
|
||||||
|
|
||||||
|
info-am:
|
||||||
|
|
||||||
|
install-data-am: install-dbusincludeHEADERS
|
||||||
|
|
||||||
|
install-exec-am: install-libLTLIBRARIES
|
||||||
|
|
||||||
|
install-info: install-info-am
|
||||||
|
|
||||||
|
install-man:
|
||||||
|
|
||||||
|
installcheck-am:
|
||||||
|
|
||||||
|
maintainer-clean: maintainer-clean-am
|
||||||
|
-rm -rf ./$(DEPDIR)
|
||||||
|
-rm -f Makefile
|
||||||
|
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||||
|
|
||||||
|
mostlyclean: mostlyclean-am
|
||||||
|
|
||||||
|
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||||
|
mostlyclean-libtool
|
||||||
|
|
||||||
|
pdf: pdf-am
|
||||||
|
|
||||||
|
pdf-am:
|
||||||
|
|
||||||
|
ps: ps-am
|
||||||
|
|
||||||
|
ps-am:
|
||||||
|
|
||||||
|
uninstall-am: uninstall-dbusincludeHEADERS uninstall-info-am \
|
||||||
|
uninstall-libLTLIBRARIES
|
||||||
|
|
||||||
|
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||||
|
clean-libLTLIBRARIES clean-libtool ctags distclean \
|
||||||
|
distclean-compile distclean-generic distclean-libtool \
|
||||||
|
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||||
|
install install-am install-data install-data-am \
|
||||||
|
install-dbusincludeHEADERS install-exec install-exec-am \
|
||||||
|
install-info install-info-am install-libLTLIBRARIES \
|
||||||
|
install-man install-strip installcheck installcheck-am \
|
||||||
|
installdirs maintainer-clean maintainer-clean-generic \
|
||||||
|
mostlyclean mostlyclean-compile mostlyclean-generic \
|
||||||
|
mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
|
||||||
|
uninstall-am uninstall-dbusincludeHEADERS uninstall-info-am \
|
||||||
|
uninstall-libLTLIBRARIES
|
||||||
|
|
||||||
|
|
||||||
|
@HAVE_QT3_TRUE@$(top_srcdir)/qt3/connection.cpp: connection.tqmoc
|
||||||
|
@HAVE_QT3_TRUE@$(top_srcdir)/qt3/integrator.cpp: integrator.tqmoc
|
||||||
|
@HAVE_QT3_TRUE@$(top_srcdir)/qt3/server.cpp: server.tqmoc
|
||||||
|
@HAVE_QT3_TRUE@$(top_srcdir)/qt3/connection.h: connection.tqmoc
|
||||||
|
@HAVE_QT3_TRUE@$(top_srcdir)/qt3/integrator.h: integrator.tqmoc
|
||||||
|
@HAVE_QT3_TRUE@$(top_srcdir)/qt3/server.h: server.tqmoc
|
||||||
|
|
||||||
|
@HAVE_QT3_TRUE@%.tqmoc: %.h
|
||||||
|
@HAVE_QT3_TRUE@ $(QT3_TQMOC) $< > $@
|
||||||
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
.NOEXPORT:
|
@ -0,0 +1,90 @@
|
|||||||
|
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
||||||
|
/* server.h: TQt wrapper for DBusServer
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.0
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#include "server.h"
|
||||||
|
#include "connection.h"
|
||||||
|
|
||||||
|
#include "integrator.h"
|
||||||
|
using DBusQt::Internal::Integrator;
|
||||||
|
|
||||||
|
namespace DBusQt
|
||||||
|
{
|
||||||
|
|
||||||
|
struct Server::Private {
|
||||||
|
Private() : integrator( 0 ), server( 0 )
|
||||||
|
{}
|
||||||
|
|
||||||
|
Integrator *integrator;
|
||||||
|
DBusServer *server;
|
||||||
|
DBusError error;
|
||||||
|
};
|
||||||
|
|
||||||
|
Server::Server( const TQString& addr, TQObject *tqparent )
|
||||||
|
: TQObject( tqparent )
|
||||||
|
{
|
||||||
|
d = new Private;
|
||||||
|
|
||||||
|
if ( !addr.isEmpty() ) {
|
||||||
|
init( addr );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Server::~Server()
|
||||||
|
{
|
||||||
|
delete d;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Server::isConnected() const
|
||||||
|
{
|
||||||
|
return dbus_server_get_is_connected( d->server );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Server::disconnect()
|
||||||
|
{
|
||||||
|
dbus_server_disconnect( d->server );
|
||||||
|
}
|
||||||
|
|
||||||
|
TQString Server::address() const
|
||||||
|
{
|
||||||
|
//FIXME: leak?
|
||||||
|
return dbus_server_get_address( d->server );
|
||||||
|
}
|
||||||
|
|
||||||
|
void Server::listen( const TQString& addr )
|
||||||
|
{
|
||||||
|
if ( !d->server ) {
|
||||||
|
init( addr );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Server::init( const TQString& addr )
|
||||||
|
{
|
||||||
|
d->server = dbus_server_listen( addr.ascii(), &d->error );
|
||||||
|
d->integrator = new Integrator( d->server, this );
|
||||||
|
connect( d->integrator, TQT_SIGNAL(newConnection(Connection*)),
|
||||||
|
TQT_SIGNAL(newConnection(Connection*)) );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#include "server.moc"
|
@ -0,0 +1,58 @@
|
|||||||
|
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
||||||
|
/* server.h: TQt wrapper for DBusServer
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Zack Rusin <zack@kde.org>
|
||||||
|
*
|
||||||
|
* Licensed under the Academic Free License version 2.1
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#ifndef DBUS_TQT_SERVER_H
|
||||||
|
#define DBUS_TQT_SERVER_H
|
||||||
|
|
||||||
|
#include <tqobject.h>
|
||||||
|
|
||||||
|
#include "dbus/dbus.h"
|
||||||
|
|
||||||
|
namespace DBusQt
|
||||||
|
{
|
||||||
|
class Connection;
|
||||||
|
class Server : public TQObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
TQ_OBJECT
|
||||||
|
public:
|
||||||
|
Server( const TQString& addr = TQString(), TQObject *tqparent=0 );
|
||||||
|
~Server();
|
||||||
|
|
||||||
|
bool isConnected() const;
|
||||||
|
TQString address() const;
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void listen( const TQString& addr );
|
||||||
|
void disconnect();
|
||||||
|
signals:
|
||||||
|
void newConnection( Connection* );
|
||||||
|
|
||||||
|
private:
|
||||||
|
void init( const TQString& addr );
|
||||||
|
private:
|
||||||
|
struct Private;
|
||||||
|
Private *d;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in new issue