From ecc6acd2a576fcc11d51ded532f570fb29ab475e Mon Sep 17 00:00:00 2001 From: Michael Terry Date: Wed, 6 Oct 2010 10:58:49 -0400 Subject: instead of always building gtk2 and gtk3, add a --with-gtk= flag to configure to specify which to build with --- tools/Makefile.am | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'tools/Makefile.am') diff --git a/tools/Makefile.am b/tools/Makefile.am index 5e5ef8d..d2964f9 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,3 +1,8 @@ +if USE_GTK3 +INDICATOR_LIB = -lindicator3 +else +INDICATOR_LIB = -lindicator +endif libexec_PROGRAMS = \ indicator-loader @@ -17,5 +22,5 @@ indicator_loader_CFLAGS = \ indicator_loader_LDADD = \ $(LIBINDICATOR_LIBS) \ -L$(top_builddir)/libindicator/.libs \ - -lindicator + $(INDICATOR_LIB) -- cgit v1.2.3 From 2e3ea76f4947c1148f6c3a8b870e0e319deaa20c Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Fri, 15 Oct 2010 12:37:08 -0500 Subject: Installing the environment file in the session dir --- tools/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tools/Makefile.am') diff --git a/tools/Makefile.am b/tools/Makefile.am index 5e5ef8d..4b959a5 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -19,3 +19,8 @@ indicator_loader_LDADD = \ -L$(top_builddir)/libindicator/.libs \ -lindicator +xsessiondir = $(sysconfdir)/X11/Xsession.d + +xsession_DATA = indicator-debugging + +EXTRA_DIST = $(xsession_DATA) -- cgit v1.2.3 From 0f99ed218d71e96d2fa5f10c5f0791b61445f8aa Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Fri, 15 Oct 2010 12:39:13 -0500 Subject: Adding a number in the name --- tools/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/Makefile.am') diff --git a/tools/Makefile.am b/tools/Makefile.am index 4b959a5..168cea8 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -21,6 +21,6 @@ indicator_loader_LDADD = \ xsessiondir = $(sysconfdir)/X11/Xsession.d -xsession_DATA = indicator-debugging +xsession_DATA = 80indicator-debugging EXTRA_DIST = $(xsession_DATA) -- cgit v1.2.3