bdilly pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e2afcc0ab495f3d65b3868602148958799ffb35a
commit e2afcc0ab495f3d65b3868602148958799ffb35a Author: Bruno Dilly <[email protected]> Date: Tue Sep 27 18:17:07 2016 -0300 examples/ecore: fix vnc example build Fix missing dependency. Get rid of the following error: /usr/bin/ld: ecore_evas_vnc.o: undefined reference to symbol 'ECORE_EVENT_MOUSE_BUTTON_UP' src/lib/ecore_input/.libs/libecore_input.so.1: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status Makefile:2306: recipe for target 'ecore_evas_vnc' failed --- src/examples/ecore/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/examples/ecore/Makefile.am b/src/examples/ecore/Makefile.am index 15d8668..0c50500 100644 --- a/src/examples/ecore/Makefile.am +++ b/src/examples/ecore/Makefile.am @@ -205,7 +205,8 @@ ecore_evas_window_sizes_example_SOURCES = ecore_evas_window_sizes_example.c ecore_evas_window_sizes_example_LDADD = $(ECORE_EVAS_COMMON_LDADD) ecore_evas_vnc_SOURCES = ecore_evas_vnc.c -ecore_evas_vnc_LDADD = $(ECORE_EVAS_COMMON_LDADD) +ecore_evas_vnc_LDADD = $(ECORE_EVAS_COMMON_LDADD) \ +$(top_builddir)/src/lib/ecore_input/libecore_input.la ecore_event_example_01_SOURCES = ecore_event_example_01.c ecore_event_example_01_LDADD = $(ECORE_COMMON_LDADD) --
