From c49359cb645a839fed19b8217635303dae4f825e Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 1 Mar 2010 16:06:30 -0600 Subject: Removing linking to the loadable library and fixing a missing '\' --- tests/Makefile.am | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 7d061fb..d4675df 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,6 +1,6 @@ check_PROGRAMS = \ - test-indicator-sound + test-indicator-sound \ test-indicator-sound-dbus-client \ test-indicator-sound-dbus-server @@ -20,8 +20,7 @@ test_indicator_sound_CFLAGS = \ -DTOP_BUILD_DIR="\"${abs_top_builddir}\"" test_indicator_sound_LDADD = \ - $(APPLET_LIBS) \ - $(INDICATORDIR)/libsoundmenu.la + $(APPLET_LIBS) ######################################### ## test-indicator-sound-dbus-client @@ -38,8 +37,7 @@ test_indicator_sound_dbus_client_CFLAGS = \ -I$(SOUNDSERVICE_CFLAGS) test_indicator_sound_dbus_client_LDADD = \ - $(SOUNDSERVICE_LIBS) \ - $(INDICATORDIR)/libsoundmenu.la + $(SOUNDSERVICE_LIBS) ######################################### ## test-indicator-sound-dbus-server @@ -53,9 +51,8 @@ test_indicator_sound_dbus_server_CFLAGS = \ -Wall -Werror \ -I$(srcdir) -test_libappindicator_dbus_server_LDADD = \ - $(SOUNDSERVICE_LIBS) \ - $(INDICATORDIR)/libsoundmenu.la +test_indicator_sound_dbus_server_LDADD = \ + $(SOUNDSERVICE_LIBS) ######################################### -- cgit v1.2.3 From 7a92d249547ff1783725850edb39a952e52ee8c9 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 1 Mar 2010 16:06:52 -0600 Subject: Removing including a C file and including some needed headers. --- tests/test-indicator-sound.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test-indicator-sound.c b/tests/test-indicator-sound.c index 0de09b7..e103fa8 100644 --- a/tests/test-indicator-sound.c +++ b/tests/test-indicator-sound.c @@ -18,7 +18,8 @@ with this program. If not, see . */ #include -#include "../src/indicator-sound.c" +#include +#include void test_libindicator_sound_init() -- cgit v1.2.3