From 2f99120547506fb50e93218453157ae46646cf34 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Thu, 14 Feb 2019 16:24:56 +0100 Subject: [PATCH] Stop defining EFL_BETA_API_SUPPORT in Efl_Core.h and Efl_Ui.h Summary: Including these headers does no longer mean that you want to use BETA API. More and more methods in these libs will come out of BETA and they will be usable without requiring EFL_BETA_API_SUPPORT to be defined by the app. This concludes this patchset. Now apps can chose to define EFL_BETA_API_SUPPORT or not, and they will have access to the requested API subset, but both options are available. Depends on D7951 Fixes T7692 Reviewers: zmike, bu5hm4n, cedric Subscribers: #reviewers, #committers Tags: #efl Maniphest Tasks: T7692 Differential Revision: https://phab.enlightenment.org/D7952 --- src/lib/ecore/Efl_Core.h | 4 ---- src/lib/elementary/Efl_Ui.h | 4 ---- 2 files changed, 8 deletions(-) diff --git a/src/lib/ecore/Efl_Core.h b/src/lib/ecore/Efl_Core.h index 92ff448..6ae8190 100644 --- a/src/lib/ecore/Efl_Core.h +++ b/src/lib/ecore/Efl_Core.h @@ -3,10 +3,6 @@ #include -#ifndef EFL_BETA_API_SUPPORT -#define EFL_BETA_API_SUPPORT -#endif - #include #include #include diff --git a/src/lib/elementary/Efl_Ui.h b/src/lib/elementary/Efl_Ui.h index f9adad5..adedbc1 100644 --- a/src/lib/elementary/Efl_Ui.h +++ b/src/lib/elementary/Efl_Ui.h @@ -8,10 +8,6 @@ # define EFL_EO_API_SUPPORT #endif -#ifndef EFL_BETA_API_SUPPORT -# define EFL_BETA_API_SUPPORT -#endif - /* Standard headers for standard system calls etc. */ #include #include -- 2.7.4