diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-01-25 10:53:55 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-01-25 10:53:55 -0500 |
commit | c5195ae53f4956c40b65516bcc4810aa94f985a7 (patch) | |
tree | 242c1d64aa4db5c9471b7ed120d79ca2eb36ba67 /example/Makefile.am | |
parent | b7e634a2f424f45f9b3b98ee991068edb11b5424 (diff) | |
download | libayatana-appindicator-c5195ae53f4956c40b65516bcc4810aa94f985a7.tar.gz libayatana-appindicator-c5195ae53f4956c40b65516bcc4810aa94f985a7.tar.bz2 libayatana-appindicator-c5195ae53f4956c40b65516bcc4810aa94f985a7.zip |
GTK3 fixes
Diffstat (limited to 'example/Makefile.am')
-rw-r--r-- | example/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/example/Makefile.am b/example/Makefile.am index e23e08d..0900baf 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -1,3 +1,9 @@ +if USE_GTK3 +VER=3 +else +VER= +endif + check_PROGRAMS = \ simple-client @@ -17,7 +23,7 @@ simple_client_CFLAGS = \ simple_client_LDADD = \ $(LIBRARY_LIBS) \ - $(top_builddir)/src/libappindicator.la + $(top_builddir)/src/libappindicator$(VER).la EXTRA_DIST = \ simple-client-test-icon.png |