efl/gesture: include .h file in private header, not .c file

Summary:
a generated eolian c file cannot be included multiple times or else it will
create multiple definitions of symbols defined in that file and break the build

ref 54175998d5
fix T7960

Reviewers: devilhorns, vtorri

Reviewed By: vtorri

Subscribers: cedric, #reviewers, #committers

Tags: #efl_build

Maniphest Tasks: T7960

Differential Revision: https://phab.enlightenment.org/D8945
This commit is contained in:
Mike Blumenkrantz 2019-05-23 13:55:50 -04:00
parent f012eb6d57
commit 029b20fa82
2 changed files with 2 additions and 1 deletions

View File

@ -47,3 +47,4 @@ _efl_canvas_gesture_timestamp_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Gesture_
}
#include "efl_canvas_gesture.eo.c"
#include "efl_gesture_events.eo.c"

View File

@ -6,7 +6,7 @@
#define EFL_INTERNAL_UNSTABLE
#include "interfaces/efl_common_internal.h"
#include "efl_gesture_events.eo.c"
#include "efl_gesture_events.eo.h"
#include <Ecore.h>