diff options
author | Cedric Bail <cedric.bail@samsung.com> | 2013-04-23 19:53:16 +0900 |
---|---|---|
committer | Daniel Zaoui <daniel.zaoui@samsung.com> | 2013-04-23 16:44:39 +0300 |
commit | 606c325bcde66d0a159c2b1195264db2cc0f8f13 (patch) | |
tree | afa57c16ae708aba57568374b4de7256a7e326e7 /m4/efl_eo.m4 | |
parent | d9b074d7a6e979c6b0b5bce7348d204726f98de4 (diff) |
efl: add m4 macro to handle a way to enable/disable Eo API and EFL legacy API.
Diffstat (limited to '')
-rw-r--r-- | m4/efl_eo.m4 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/m4/efl_eo.m4 b/m4/efl_eo.m4 new file mode 100644 index 0000000000..08065ea2d6 --- /dev/null +++ b/m4/efl_eo.m4 | |||
@@ -0,0 +1,12 @@ | |||
1 | dnl use: EFL_ENABLE_EO_API_SUPPORT | ||
2 | AC_DEFUN([EFL_ENABLE_EO_API_SUPPORT], | ||
3 | [ | ||
4 | AC_DEFINE([EFL_EO_API_SUPPORT], [1], [Enable access to unstable EFL Eo API]) | ||
5 | ]) | ||
6 | |||
7 | dnl use: EFL_DISABLE_LEGACY_API_SUPPORT | ||
8 | AC_DEFUN([EFL_DISABLE_LEGACY_API_SUPPORT], | ||
9 | [ | ||
10 | AC_DEFINE([EFL_NOLEGACY_API_SUPPORT], [1], [Disable legacy EFL API]) | ||
11 | ]) | ||
12 | |||