Update to EFL 1.0-beta release
[qi-bootmenu-system/guyou.git] / sources / patches / eina-calculate-size-of-wchar_t-based-on-wchar.h-not-.patch
blobcebf14a6f1b649853648a428375cd052a0f1a142
1 From 113e476f330c74f83bb7dc496dcbb31c5c677338 Mon Sep 17 00:00:00 2001
2 From: Marc Andre Tanner <mat@brain-dump.org>
3 Date: Mon, 4 Oct 2010 14:56:45 +0200
4 Subject: [PATCH] eina: calculate size of wchar_t based on wchar.h not stddef.h
6 Signed-off-by: Marc Andre Tanner <mat@brain-dump.org>
7 ---
8 configure.ac | 2 +-
9 1 files changed, 1 insertions(+), 1 deletions(-)
11 diff --git a/configure.ac b/configure.ac
12 index 4ed3ee1..9e20360 100644
13 --- a/configure.ac
14 +++ b/configure.ac
15 @@ -302,7 +302,7 @@ AC_CHECK_HEADER([stdint.h],
16 [EINA_CONFIGURE_HAVE_STDINT_H="#define EINA_HAVE_STDINT_H"])
17 AC_SUBST(EINA_CONFIGURE_HAVE_STDINT_H)
19 -AC_CHECK_SIZEOF(wchar_t)
20 +AC_CHECK_SIZEOF([wchar_t],[],[#include <wchar.h>])
21 EINA_SIZEOF_WCHAR_T=$ac_cv_sizeof_wchar_t
22 AC_SUBST(EINA_SIZEOF_WCHAR_T)
24 --
25 1.6.5