diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/efl1/ecore/exit_uclibc_newer.patch | 12 | ||||
-rw-r--r-- | recipes/efl1/ecore_svn.bb | 3 |
2 files changed, 14 insertions, 1 deletions
diff --git a/recipes/efl1/ecore/exit_uclibc_newer.patch b/recipes/efl1/ecore/exit_uclibc_newer.patch new file mode 100644 index 0000000000..3d04453eb8 --- /dev/null +++ b/recipes/efl1/ecore/exit_uclibc_newer.patch @@ -0,0 +1,12 @@ +diff -uNr ecore.orig//src/lib/ecore_con/ecore_con_info.c ecore/src/lib/ecore_con/ecore_con_info.c +--- ecore.orig//src/lib/ecore_con/ecore_con_info.c 2010-08-13 14:31:18.000000000 +0200 ++++ ecore/src/lib/ecore_con/ecore_con_info.c 2010-08-13 14:49:37.000000000 +0200 +@@ -283,7 +283,7 @@ + + err = write(fd[1], "", 1); + close(fd[1]); +-#ifdef __USE_ISOC99 ++#if defined(__USE_ISOC99) && !defined(__UCLIBC__) + _Exit(0); + #else + _exit(0); diff --git a/recipes/efl1/ecore_svn.bb b/recipes/efl1/ecore_svn.bb index 9022b702e3..d38bc8ee5d 100644 --- a/recipes/efl1/ecore_svn.bb +++ b/recipes/efl1/ecore_svn.bb @@ -5,7 +5,8 @@ PR = "r12" SRC_URI += "\ file://iconv.patch;maxrev=43996 \ file://exit_uclibc_dns.patch;maxrev=47076 \ - file://exit_uclibc.patch \ + file://exit_uclibc.patch;maxrev=50815 \ + file://exit_uclibc_newer.patch;minrev=50816 \ " ECORE_OECONF = "\ |