tasn pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=458186b743583c55694f5920d159b3a10a9a541a
commit 458186b743583c55694f5920d159b3a10a9a541a Author: Tom Hacohen <[email protected]> Date: Wed Sep 24 11:27:14 2014 +0100 Elm container: Ship missing headers. --- src/lib/Elementary.h.in | 1 + src/lib/Makefile.am | 1 + src/lib/elm_container.h | 6 ++++++ 3 files changed, 8 insertions(+) diff --git a/src/lib/Elementary.h.in b/src/lib/Elementary.h.in index fcca5de..05724e0 100644 --- a/src/lib/Elementary.h.in +++ b/src/lib/Elementary.h.in @@ -193,6 +193,7 @@ EAPI extern Elm_Version *elm_version; #include <elm_colorselector.h> #include <elm_config.h> #include <elm_conform.h> +#include <elm_container.h> #include <elm_cursor.h> #include <elm_datetime.h> #include <elm_debug.h> diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index e34e675..3f96126 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -188,6 +188,7 @@ elm_config.h \ elm_conform.h \ elm_conform_eo.h \ elm_conform_legacy.h \ +elm_container.h \ elm_cursor.h \ elm_datetime.h \ elm_datetime_common.h \ diff --git a/src/lib/elm_container.h b/src/lib/elm_container.h new file mode 100644 index 0000000..d17409d --- /dev/null +++ b/src/lib/elm_container.h @@ -0,0 +1,6 @@ +#ifdef EFL_EO_API_SUPPORT +#include <elm_container.eo.h> +#endif +#ifndef EFL_NOLEGACY_API_SUPPORT +#include <elm_container.eo.legacy.h> +#endif --
