stefan pushed a commit to branch master.

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

commit d1a1688513a9f1552bd9a69fd6d69e17a88751da
Author: Stefan Schmidt <[email protected]>
Date:   Wed Apr 29 15:47:36 2020 +0200

    edje: efl: add new EFL_VERSION_1_25 define for new cycle
    
    Allow things to be marked for the upcoming 1.25 release version while we
    develop it.
---
 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 e6db4f5840..9b143c64f5 100644
--- a/src/bin/edje/edje_cc_parse.c
+++ b/src/bin/edje/edje_cc_parse.c
@@ -31,6 +31,7 @@
 #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_1_25_SUPPORTED " -DEFL_VERSION_1_25=1 "
 
 #define EDJE_CC_EFL_VERSION_SUPPORTED \
   EDJE_1_18_SUPPORTED                 \
@@ -39,7 +40,8 @@
   EDJE_1_21_SUPPORTED                 \
   EDJE_1_22_SUPPORTED                 \
   EDJE_1_23_SUPPORTED                 \
-  EDJE_1_24_SUPPORTED
+  EDJE_1_24_SUPPORTED                 \
+  EDJE_1_25_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 021bc5eb37..a4a369ed9f 100644
--- a/src/lib/efl/Efl.h
+++ b/src/lib/efl/Efl.h
@@ -53,6 +53,7 @@ extern "C" {
 #define EFL_VERSION_1_22 1
 #define EFL_VERSION_1_23 1
 #define EFL_VERSION_1_24 1
+#define EFL_VERSION_1_25 1
 
 /* Add here all the required ifdef for any @protected method */
 #ifdef EFL_BUILD

-- 


Reply via email to