diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2010-08-13 14:52:05 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-08-20 20:23:28 +0200 |
commit | f0894be0b5328b7891c8b19eeb7186ea3b1adee7 (patch) | |
tree | 59422c5248a668816d0db8729d88e5507b1d4886 /recipes | |
parent | 1b452f02fde8a89bc173e4b5ee6f96dabfb75463 (diff) |
ecore: add newer exit_uclibc patch, because newer revisions have different formatting
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
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 = "\ |