diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2020-03-12 12:16:20 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2020-03-12 12:17:07 -0400 |
commit | 955574c0448f15c717f906fc50cb8eb590884170 (patch) | |
tree | 19b86ed07c898653dcecfc911d106275e62f5d13 | |
parent | 42480c5ebf32be52c3d5c5e484d5e8d5eac92fcb (diff) |
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
-rw-r--r-- | src/bin/edje/edje_cc_parse.c | 4 | ||||
-rw-r--r-- | src/lib/efl/Efl.h | 1 |
2 files changed, 4 insertions, 1 deletions
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 @@ | |||
30 | #define EDJE_1_21_SUPPORTED " -DEFL_VERSION_1_21=1 " | 30 | #define EDJE_1_21_SUPPORTED " -DEFL_VERSION_1_21=1 " |
31 | #define EDJE_1_22_SUPPORTED " -DEFL_VERSION_1_22=1 " | 31 | #define EDJE_1_22_SUPPORTED " -DEFL_VERSION_1_22=1 " |
32 | #define EDJE_1_23_SUPPORTED " -DEFL_VERSION_1_23=1 " | 32 | #define EDJE_1_23_SUPPORTED " -DEFL_VERSION_1_23=1 " |
33 | #define EDJE_1_24_SUPPORTED " -DEFL_VERSION_1_24=1 " | ||
33 | 34 | ||
34 | #define EDJE_CC_EFL_VERSION_SUPPORTED \ | 35 | #define EDJE_CC_EFL_VERSION_SUPPORTED \ |
35 | EDJE_1_18_SUPPORTED \ | 36 | EDJE_1_18_SUPPORTED \ |
@@ -37,7 +38,8 @@ | |||
37 | EDJE_1_20_SUPPORTED \ | 38 | EDJE_1_20_SUPPORTED \ |
38 | EDJE_1_21_SUPPORTED \ | 39 | EDJE_1_21_SUPPORTED \ |
39 | EDJE_1_22_SUPPORTED \ | 40 | EDJE_1_22_SUPPORTED \ |
40 | EDJE_1_23_SUPPORTED | 41 | EDJE_1_23_SUPPORTED \ |
42 | EDJE_1_24_SUPPORTED | ||
41 | 43 | ||
42 | static void new_object(void); | 44 | static void new_object(void); |
43 | static void new_statement(void); | 45 | 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" { | |||
52 | #define EFL_VERSION_1_21 1 | 52 | #define EFL_VERSION_1_21 1 |
53 | #define EFL_VERSION_1_22 1 | 53 | #define EFL_VERSION_1_22 1 |
54 | #define EFL_VERSION_1_23 1 | 54 | #define EFL_VERSION_1_23 1 |
55 | #define EFL_VERSION_1_24 1 | ||
55 | 56 | ||
56 | /* Add here all the required ifdef for any @protected method */ | 57 | /* Add here all the required ifdef for any @protected method */ |
57 | #ifdef EFL_BUILD | 58 | #ifdef EFL_BUILD |