summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Dilly <bdilly@profusion.mobi>2016-09-27 18:17:07 -0300
committerBruno Dilly <bdilly@profusion.mobi>2016-09-27 18:17:07 -0300
commitd418fd49cb3054f24b8ee93f42d0a16645107cea (patch)
tree61301b7577e1d37440d86574edc3a59a91517717
parent0cbb5a42f3b08f8d536afef7bc8a72a14c93db3c (diff)
downloadefl-d418fd49cb3054f24b8ee93f42d0a16645107cea.tar.gz
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
-rw-r--r--src/examples/ecore/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/examples/ecore/Makefile.am b/src/examples/ecore/Makefile.am
index 15d86681a0..0c5050002c 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)