From 226ec15f2d97c70a0e99190781b80b5f6bbc551c Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 1 Feb 2013 11:05:38 +0000 Subject: [PATCH] fix eina_list_last_data_get detection for e SVN revision: 83548 --- src/bin/e.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e.h b/src/bin/e.h index 65f301778..7e1a54394 100644 --- a/src/bin/e.h +++ b/src/bin/e.h @@ -248,7 +248,8 @@ typedef struct _E_Rect E_Rect; } \ } -#ifndef eina_list_last_data_get + +#if (EINA_VERSION_MAJOR == 1) && (EINA_VERSION_MINOR < 8) # define eina_list_last_data_get(X) eina_list_data_get(eina_list_last(X)) #endif