diff options
author | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-07-16 20:15:45 +0800 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-07-23 20:34:17 +0800 |
commit | fa8970d7304e81821dd0b1ed6a6704add1904af9 (patch) | |
tree | cac1ba13af9018444de1436e26e457fcd6728b48 /libempathy/Makefile.am | |
parent | f32e5ba5af1dfa3a0ceb4fde6e96b31a74b195c5 (diff) | |
download | gsoc2013-empathy-fa8970d7304e81821dd0b1ed6a6704add1904af9.tar gsoc2013-empathy-fa8970d7304e81821dd0b1ed6a6704add1904af9.tar.gz gsoc2013-empathy-fa8970d7304e81821dd0b1ed6a6704add1904af9.tar.bz2 gsoc2013-empathy-fa8970d7304e81821dd0b1ed6a6704add1904af9.tar.lz gsoc2013-empathy-fa8970d7304e81821dd0b1ed6a6704add1904af9.tar.xz gsoc2013-empathy-fa8970d7304e81821dd0b1ed6a6704add1904af9.tar.zst gsoc2013-empathy-fa8970d7304e81821dd0b1ed6a6704add1904af9.zip |
Add Ubuntu Online Accounts auth handler
Diffstat (limited to 'libempathy/Makefile.am')
-rw-r--r-- | libempathy/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libempathy/Makefile.am b/libempathy/Makefile.am index 67e64a9f6..2274b99ed 100644 --- a/libempathy/Makefile.am +++ b/libempathy/Makefile.am @@ -16,6 +16,7 @@ AM_CPPFLAGS = \ $(CONNMAN_CFLAGS) \ $(UDEV_CFLAGS) \ $(GOA_CFLAGS) \ + $(UOA_CFLAGS) \ $(WARN_CFLAGS) \ $(DISABLE_DEPRECATED) @@ -99,6 +100,12 @@ goa_sources = \ empathy-goa-auth-handler.h \ $(NULL) +# these are sources that depend on Ubuntu Online Accounts +uoa_sources = \ + empathy-uoa-auth-handler.c \ + empathy-uoa-auth-handler.h \ + $(NULL) + pkglib_LTLIBRARIES = libempathy.la # libempathy's API is not stable and will never be, so use -release to make the @@ -122,6 +129,7 @@ libempathy_la_LIBADD = \ $(CONNMAN_LIBS) \ $(UDEV_LIBS) \ $(GOA_LIBS) \ + $(UOA_LIBS) \ $(LIBM) dtddir = $(datadir)/empathy @@ -149,6 +157,12 @@ else EXTRA_DIST += $(goa_sources) endif +if HAVE_UOA +libempathy_la_SOURCES += $(uoa_sources) +else +EXTRA_DIST += $(uoa_sources) +endif + # do not distribute generated files nodist_libempathy_la_SOURCES =\ $(BUILT_SOURCES) @@ -156,6 +170,7 @@ nodist_libempathy_la_SOURCES =\ check_c_sources = \ $(libempathy_handwritten_source) \ $(goa_sources) \ + $(uoa_sources) \ $(NULL) include $(top_srcdir)/tools/check-coding-style.mk |