From 98b32bcea52fc3e641eefe13aae6299a34f52ede Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Wed, 17 Dec 2014 16:58:23 +0900 Subject: [PATCH] eo: Fix example build problem with DSO. /usr/bin/ld: isa/eo_isa_interface.o: undefined reference to symbol 'eina_main_loop_is' /usr/bin/ld: note: 'eina_main_loop_is' is defined in DSO /home//seoz/efl/git/usrcore//binefl//ldsrc:/ libsimple//einasimple_interface.o/:. libsundefined/ libeina.so.1reference soto trysymbol adding' eina_main_loop_isit' to/ usrthe/ binlinker/ ldcommand: linenote --- src/examples/eo/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples/eo/Makefile.am b/src/examples/eo/Makefile.am index d38b59f..5d3c0e7 100644 --- a/src/examples/eo/Makefile.am +++ b/src/examples/eo/Makefile.am @@ -28,7 +28,7 @@ isa/eo_isa_mixin.h \ isa/eo_isa_simple.c \ isa/eo_isa_simple.h -eo_isa_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LDFLAGS@ @EFL_PTHREAD_LIBS@ +eo_isa_LDADD = $(top_builddir)/src/lib/eo/libeo.la $(top_builddir)/src/lib/eina/libeina.la @EO_LDFLAGS@ @EFL_PTHREAD_LIBS@ if EO_BUILD_EXAMPLE_EVAS @@ -60,7 +60,7 @@ simple/simple_mixin.h \ simple/simple_simple.c \ simple/simple_simple.h -eo_simple_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LDFLAGS@ @EFL_PTHREAD_LIBS@ +eo_simple_LDADD = $(top_builddir)/src/lib/eo/libeo.la $(top_builddir)/src/lib/eina/libeina.la @EO_LDFLAGS@ @EFL_PTHREAD_LIBS@ DATA_FILES = Makefile.examples -- 2.7.4