zmike pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=955574c0448f15c717f906fc50cb8eb590884170

commit 955574c0448f15c717f906fc50cb8eb590884170
Author: Mike Blumenkrantz <zm...@samsung.com>
Date:   Thu Mar 12 12:16:20 2020 -0400

    add EFL_VERSION_1_24 define
    
    Summary: this needs to go in right after every release
    
    Reviewers: stefan_schmidt, devilhorns
    
    Reviewed By: stefan_schmidt, devilhorns
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D11477
---
 src/bin/edje/edje_cc_parse.c | 4 +++-
 src/lib/efl/Efl.h            | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/bin/edje/edje_cc_parse.c b/src/bin/edje/edje_cc_parse.c
index ad1a2c95ac..e6db4f5840 100644
--- a/src/bin/edje/edje_cc_parse.c
+++ b/src/bin/edje/edje_cc_parse.c
@@ -30,6 +30,7 @@
 #define EDJE_1_21_SUPPORTED " -DEFL_VERSION_1_21=1 "
 #define EDJE_1_22_SUPPORTED " -DEFL_VERSION_1_22=1 "
 #define EDJE_1_23_SUPPORTED " -DEFL_VERSION_1_23=1 "
+#define EDJE_1_24_SUPPORTED " -DEFL_VERSION_1_24=1 "
 
 #define EDJE_CC_EFL_VERSION_SUPPORTED \
   EDJE_1_18_SUPPORTED                 \
@@ -37,7 +38,8 @@
   EDJE_1_20_SUPPORTED                 \
   EDJE_1_21_SUPPORTED                 \
   EDJE_1_22_SUPPORTED                 \
-  EDJE_1_23_SUPPORTED
+  EDJE_1_23_SUPPORTED                 \
+  EDJE_1_24_SUPPORTED
 
 static void        new_object(void);
 static void        new_statement(void);
diff --git a/src/lib/efl/Efl.h b/src/lib/efl/Efl.h
index ea891223e9..81e274883b 100644
--- a/src/lib/efl/Efl.h
+++ b/src/lib/efl/Efl.h
@@ -52,6 +52,7 @@ extern "C" {
 #define EFL_VERSION_1_21 1
 #define EFL_VERSION_1_22 1
 #define EFL_VERSION_1_23 1
+#define EFL_VERSION_1_24 1
 
 /* Add here all the required ifdef for any @protected method */
 #ifdef EFL_BUILD

-- 


Reply via email to