cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1260333ae55dfc4dae54086a22b42d90fbb13511
commit 1260333ae55dfc4dae54086a22b42d90fbb13511 Author: Mike Blumenkrantz <[email protected]> Date: Mon Sep 23 10:06:26 2019 -0400 build: fix EFL_VERSION_MICRO define this was never pulled in from the build system and thus was never actually defined Reviewed-by: Cedric BAIL <[email protected]> Differential Revision: https://phab.enlightenment.org/D10078 --- src/lib/efl/Efl_Config.h.in | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/efl/Efl_Config.h.in b/src/lib/efl/Efl_Config.h.in index 1673cd04e9..56732f2c1c 100644 --- a/src/lib/efl/Efl_Config.h.in +++ b/src/lib/efl/Efl_Config.h.in @@ -11,6 +11,7 @@ #define EFL_VERSION_MAJOR @EFL_VERSION_MAJOR@ #define EFL_VERSION_MINOR @EFL_VERSION_MINOR@ +#define EFL_VERSION_MICRO @EFL_VERSION_MICRO@ #define EFL_BUILD_ID "@EFL_BUILD_ID@" #endif --
