mirror of
https://github.com/darlinghq/darling-dbuskit.git
synced 2024-11-23 12:19:40 +00:00
383d61bf75
libdbus to a separate thread and uses DKEndpointManager as a gateway to do so. The new behaviour is disabled by default and can be enabled by calling [DKPort enableWorkerThread]. This also contains various smaller improvements and fixes bugs that were exposed when stuff was taking place asynchronously. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/dbuskit/trunk@32178 72102866-910b-0410-8b05-ffd578937521
44 lines
909 B
Plaintext
44 lines
909 B
Plaintext
#
|
|
# GNUmakefile.postamble for DBusKit test bundle
|
|
#
|
|
|
|
# Things to do before compiling
|
|
before-all::
|
|
ln -s ../Source/DBusKit.framework/Versions/Current/Headers DBusKit
|
|
|
|
# Things to do after compiling
|
|
after-all::
|
|
@-$(RM) DBusKit
|
|
LD_LIBRARY_PATH=../Source/DBusKit.framework/Versions/Current/$(GNUSTEP_TARGET_LDIR):$$LD_LIBRARY_PATH ukrun $(BUNDLE_NAME).bundle
|
|
|
|
# Things to do before installing
|
|
# before-install::
|
|
|
|
# Things to do after installing
|
|
# after-install::
|
|
|
|
# Things to do before uninstalling
|
|
# before-uninstall::
|
|
|
|
# Things to do after uninstalling
|
|
# after-uninstall::
|
|
|
|
# Things to do before cleaning
|
|
# before-clean::
|
|
|
|
# Things to do after cleaning
|
|
after-clean::
|
|
@-$(RM) -rf DBusKitTests.bundle
|
|
|
|
# Things to do before distcleaning
|
|
# before-distclean::
|
|
|
|
# Things to do after distcleaning
|
|
#after-distclean::
|
|
|
|
# Things to do before checking
|
|
# before-check::
|
|
|
|
# Things to do after checking
|
|
# after-check::
|