bdilly pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e190173338648bcbeb788118230595efe31faa32
commit e190173338648bcbeb788118230595efe31faa32 Author: Bruno Dilly <bdi...@profusion.mobi> Date: Mon Nov 28 17:16:22 2016 -0200 elementary: fix make examples After commit 54abdad6e0c20 elementary-cxx: Fix filemvc wrong usage of Efl_Future it's required to add libethumb_client.la to ELEMENTARY_LDFLAGS --- src/examples/elementary/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/examples/elementary/Makefile.am b/src/examples/elementary/Makefile.am index 0aeedc0..6f7cd33 100644 --- a/src/examples/elementary/Makefile.am +++ b/src/examples/elementary/Makefile.am @@ -60,7 +60,8 @@ $(top_builddir)/src/lib/ecore_imf/libecore_imf.la \ $(top_builddir)/src/lib/ecore_imf_evas/libecore_imf_evas.la \ $(top_builddir)/src/lib/embryo/libembryo.la \ $(top_builddir)/src/lib/edje/libedje.la \ -$(top_builddir)/src/lib/elementary/libelementary.la +$(top_builddir)/src/lib/elementary/libelementary.la \ +$(top_builddir)/src/lib/ethumb_client/libethumb_client.la SRCS = \ actionslider_example_01.c \ --