diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-10 07:11:36 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-10 07:11:36 +0800 |
commit | c841a4c82601d795e75dfec0007eb9e0e3580f53 (patch) | |
tree | c20b33ec9af8b3b05109976d0944989e73a67b7a /src/Makefile.am | |
parent | f7c90cf8b4189935d69b2ad6a67f3708b4afe4bd (diff) | |
download | gsoc2013-epiphany-c841a4c82601d795e75dfec0007eb9e0e3580f53.tar.gz gsoc2013-epiphany-c841a4c82601d795e75dfec0007eb9e0e3580f53.tar.zst gsoc2013-epiphany-c841a4c82601d795e75dfec0007eb9e0e3580f53.zip |
A lib/ephy-dbus.c: A lib/ephy-dbus.h:
2005-01-10 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* lib/Makefile.am:
A lib/ephy-dbus.c:
A lib/ephy-dbus.h:
* lib/ephy-marshal.list:
* src/Makefile.am:
* src/ephy-shell.c: (ephy_shell_finalize),
(ephy_shell_get_dbus_service):
* src/ephy-shell.h:
Add experimental dbus service, disabled by default. Configure with
--enable-dbus to enable.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 1d6f3c65d..d865eec3d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -106,6 +106,10 @@ libephymain_la_CFLAGS = \ $(EPIPHANY_DEPENDENCY_CFLAGS) \ $(AM_CFLAGS) +if ENABLE_DBUS +libephymain_la_CFLAGS += $(DBUS_CFLAGS) +endif + epiphany_SOURCES = ephy-main.c epiphany_CPPFLAGS = \ @@ -135,6 +139,10 @@ epiphany_LDADD = \ $(EPIPHANY_DEPENDENCY_LIBS) \ $(INTLLIBS) +if ENABLE_DBUS +epiphany_LDADD += $(DBUS_LIBS) +endif + BUILT_SOURCES = \ $(CORBA_SOURCE) \ $(TYPES_SOURCE) |