summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-10-25 14:32:30 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-10-25 14:32:30 -0400
commit467d70fddc4e066682ceb50f3eabe9b4083c8ee3 (patch)
tree6660c8a3af82e79bf927b0ecf54e6d648bebef0d /Makefile
parenta4f91e1e0a908ac49b90e4b54c9dc922b6c599fd (diff)
Re-enable dbus, using a new version of the library that fixes the memory leak.
For now, when dbus goes away, the assistant keeps running but does not fall back or reconnect. To do so needs more changes to the DBus library; in particular a connectSessionWith and connectSystemWith to let me specify my own clientThreadRunner.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 796e6af8b..dfc34cb50 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ all=$(bins) $(mans) docs
OS:=$(shell uname | sed 's/[-_].*//')
ifeq ($(OS),Linux)
-OPTFLAGS?=-DWITH_INOTIFY
+OPTFLAGS?=-DWITH_INOTIFY -DWITH_DBUS
clibs=Utility/libdiskfree.o Utility/libmounts.o
THREADFLAGS=$(shell if test -e `ghc --print-libdir`/libHSrts_thr.a; then printf -- -threaded; fi)
else