use EFL_VERSION_MAJOR/MINOR

This commit is contained in:
Boris Faure 2013-08-29 15:32:03 +02:00
parent 7faf2eb133
commit c731394917
2 changed files with 2 additions and 2 deletions

View File

@ -2619,7 +2619,7 @@ target: "4.bottom"
program {
signal: "key,down"; source: "terminology";
script {
#if (EINA_VERSION_MAJOR > 1) || (EINA_VERSION_MINOR >= 8)
#if (EFL_VERSION_MAJOR > 1) || (EFL_VERSION_MINOR >= 8)
new buf[32];
snprintf(buf, 31, "key-down%i", (rand() % 5) + 1);
run_program(get_program_id(buf));

View File

@ -1210,7 +1210,7 @@ collections {
program {
signal: "key,down"; source: "terminology";
script {
#if (EINA_VERSION_MAJOR > 1) || (EINA_VERSION_MINOR >= 8)
#if (EFL_VERSION_MAJOR > 1) || (EFL_VERSION_MINOR >= 8)
new buf[32];
snprintf(buf, 31, "key-down%i", (rand() % 5) + 1);
run_program(get_program_id(buf));