From d3cf6093aaba677992efa83509ecb3c99df35e85 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Tue, 19 Sep 2017 17:00:35 +0900 Subject: [PATCH] animation2: fix compile instruction Summary: without it, it was failing with following error /usr/bin/ld: /tmp/ccnjRcVr.o: undefined reference to symbol 'evas_object_move' //usr/lib64/libevas.so.1: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status Test Plan: just try to compile it with and without. Reviewers: jpeg Reviewed By: jpeg Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D5182 --- src/examples/edje/animations2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/edje/animations2.c b/src/examples/edje/animations2.c index e33f0e72c9..47cfc31921 100644 --- a/src/examples/edje/animations2.c +++ b/src/examples/edje/animations2.c @@ -1,5 +1,5 @@ //Compile with: -// edje_cc animations2.edc && gcc -o animations2 animations2.c `pkg-config --libs --cflags ecore ecore-evas edje` +// edje_cc animations2.edc && gcc -o animations2 animations2.c `pkg-config --libs --cflags ecore ecore-evas edje evas` #ifdef HAVE_CONFIG_H #include "config.h"