aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-06-22 11:12:48 -0500
committerTed Gould <ted@gould.cx>2011-06-22 11:12:48 -0500
commit58f47563b83be3659f2ab12630d3a11d9c426768 (patch)
tree1f3cbb291aae1a0d5ee5af4fb400b3b38f7a9969 /src
parentb5aec1c606133969188642d2f74f0c96c56bca40 (diff)
downloadayatana-indicator-application-58f47563b83be3659f2ab12630d3a11d9c426768.tar.gz
ayatana-indicator-application-58f47563b83be3659f2ab12630d3a11d9c426768.tar.bz2
ayatana-indicator-application-58f47563b83be3659f2ab12630d3a11d9c426768.zip
Making tests use proper version of libappindicator and cleaning up libappindicator usage to use the same enum headers.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 18e2baf..9b11fd1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -9,7 +9,6 @@ DISTCLEANFILES =
BUILT_SOURCES =
EXTRA_DIST =
-include $(top_srcdir)/Makefile.am.enum
include $(top_srcdir)/Makefile.am.marshal
##################################
@@ -29,7 +28,7 @@ libapplication_la_CFLAGS = $(INDICATOR_CFLAGS) \
-Wl,--as-needed \
-Werror \
-DG_LOG_DOMAIN=\"Indicator-Application\"
-libapplication_la_LIBADD = $(INDICATOR_LIBS)
+libapplication_la_LIBADD = $(INDICATOR_LIBS)
libapplication_la_LDFLAGS = -module -avoid-version
##################################
@@ -51,30 +50,24 @@ indicator_application_service_SOURCES = \
application-service-watcher.h \
application-service-watcher.c \
gen-application-service.xml.c \
- app-indicator-enum-types.c \
dbus-shared.h \
generate-id.h \
generate-id.c
indicator_application_service_CFLAGS = \
$(INDICATOR_CFLAGS) \
- -I$(APP_INDICATOR_INCLUDE) \
+ $(APPINDICATOR_CFLAGS) \
-DDATADIR="\"$(pkgdatadir)\"" \
-Wall -Werror \
-DG_LOG_DOMAIN=\"indicator-application-service\"
indicator_application_service_LDADD = \
- $(INDICATOR_LIBS)
+ $(INDICATOR_LIBS) \
+ $(APPINDICATOR_LIBS)
glib_marshal_list = application-service-marshal.list
glib_marshal_prefix = _application_service_marshal
-glib_enum_h = app-indicator-enum-types.h
-glib_enum_c = app-indicator-enum-types.c
-glib_enum_headers = $(wildcard $(APP_INDICATOR_INCLUDE)/libappindicator/*.h)
-
-DISTCLEANFILES += app-indicator-enum-types.c
-
##################################
# DBus Specs
##################################