ami pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f47b03f7fad6c19cb9acfb5442c9923aadc0b846
commit f47b03f7fad6c19cb9acfb5442c9923aadc0b846 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Fri May 19 12:05:10 2017 +0200 elm_check: make sure of the correct naming of header files We use a header wrapper _eo.h here instead of using the eo.h file directly. By not doing so the automagic in our build system will not work. --- src/Makefile_Elementary.am | 2 +- src/lib/elementary/efl_ui_check_eo.h | 1 + src/lib/elementary/elm_check.h | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Makefile_Elementary.am b/src/Makefile_Elementary.am index b9a59a5..8b047fe 100644 --- a/src/Makefile_Elementary.am +++ b/src/Makefile_Elementary.am @@ -341,7 +341,7 @@ includesub_HEADERS = \ lib/elementary/elm_calendar_legacy.h \ lib/elementary/elm_calendar_common.h \ lib/elementary/elm_check.h \ - lib/elementary/efl_ui_check.eo.h \ + lib/elementary/efl_ui_check_eo.h \ lib/elementary/elm_check_legacy.h \ lib/elementary/elm_clock.h \ lib/elementary/elm_clock_eo.h \ diff --git a/src/lib/elementary/efl_ui_check_eo.h b/src/lib/elementary/efl_ui_check_eo.h new file mode 100644 index 0000000..0d26072 --- /dev/null +++ b/src/lib/elementary/efl_ui_check_eo.h @@ -0,0 +1 @@ +#include "efl_ui_check.eo.h" diff --git a/src/lib/elementary/elm_check.h b/src/lib/elementary/elm_check.h index c200f7f..6004ca1 100644 --- a/src/lib/elementary/elm_check.h +++ b/src/lib/elementary/elm_check.h @@ -60,7 +60,7 @@ */ #ifdef EFL_EO_API_SUPPORT -#include "efl_ui_check.eo.h" +#include "efl_ui_check_eo.h" #endif #ifndef EFL_NOLEGACY_API_SUPPORT #include "elm_check_legacy.h" --