From 0a12352c3dd5d5a75f3b691b8a05b75efa6c8365 Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Thu, 4 Dec 2014 19:42:27 +0900 Subject: [PATCH] evas/examples: fix build break add dependency libefl to call efl_file_set(). --- src/examples/evas/Makefile.am | 1 + src/examples/evas/evas-object-manipulation-eo.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/examples/evas/Makefile.am b/src/examples/evas/Makefile.am index 0d99147..e486fc5 100644 --- a/src/examples/evas/Makefile.am +++ b/src/examples/evas/Makefile.am @@ -45,6 +45,7 @@ ECORE_EVAS_COMMON_CPPFLAGS = \ @EVAS_CFLAGS@ ECORE_EVAS_COMMON_LDADD = \ +$(top_builddir)/src/lib/efl/libefl.la \ $(top_builddir)/src/lib/eina/libeina.la \ $(top_builddir)/src/lib/eo/libeo.la \ $(top_builddir)/src/lib/ecore/libecore.la \ diff --git a/src/examples/evas/evas-object-manipulation-eo.c b/src/examples/evas/evas-object-manipulation-eo.c index 92989ca..5191347 100644 --- a/src/examples/evas/evas-object-manipulation-eo.c +++ b/src/examples/evas/evas-object-manipulation-eo.c @@ -19,6 +19,7 @@ #define PACKAGE_EXAMPLES_DIR "." #endif +#include #include #include #include -- 2.7.4