diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-12-24 12:19:05 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-12-30 07:21:55 +0100 |
commit | 5def1c1ab747e1650786e1cfe4d9d45042bd6ec1 (patch) | |
tree | 6f73b3a33158e96cbb95bd20efa24856f9aef748 /package | |
parent | 2c5b4ddc1932e7dedec1e412a5c5465f4fbe6f8b (diff) | |
download | buildroot-novena-5def1c1ab747e1650786e1cfe4d9d45042bd6ec1.tar.gz buildroot-novena-5def1c1ab747e1650786e1cfe4d9d45042bd6ec1.zip |
efl/libecore: bump version to 1.7.4
The libecore-ecore_exe-fix-build-with-glibc-2-16 patch is no longer
needed, since it has been merged upstream.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/efl/libecore/libecore-ecore_exe-fix-build-with-glibc-2-16.patch | 94 | ||||
-rw-r--r-- | package/efl/libecore/libecore.mk | 2 |
2 files changed, 1 insertions, 95 deletions
diff --git a/package/efl/libecore/libecore-ecore_exe-fix-build-with-glibc-2-16.patch b/package/efl/libecore/libecore-ecore_exe-fix-build-with-glibc-2-16.patch deleted file mode 100644 index d9b439cb7..000000000 --- a/package/efl/libecore/libecore-ecore_exe-fix-build-with-glibc-2-16.patch +++ /dev/null @@ -1,94 +0,0 @@ -Backported for commit a0df6712b6afcd07facd32e5a66809170277bdf3 -Fixed the ChangeLog part. - -This patch fix build with glibc >=2.16, avoiding the following error occurs: - -Making all in ecore -make[6]: Entering directory `/opt/buildroot/output/build/host-libecore-1.1.0/src/lib/ecore' - CC ecore.lo - CC ecore_anim.lo - CC ecore_app.lo - CC ecore_events.lo - CC ecore_getopt.lo - CC ecore_idle_enterer.lo - CC ecore_idle_exiter.lo - CC ecore_idler.lo - CC ecore_job.lo - CC ecore_main.lo - CC ecore_pipe.lo - CC ecore_poll.lo - CC ecore_time.lo - CC ecore_timer.lo - CC ecore_thread.lo - CC ecore_glib.lo - CC ecore_throttle.lo - CC ecore_signal.lo - CC ecore_exe.lo -ecore_exe.c: In function ‘ecore_exe_pipe_run’: -ecore_exe.c:486:15: warning: implicit declaration of function ‘setpriority’ [-Wimplicit-function-declaration] -ecore_exe.c:486:27: error ‘PRIO_PROCESS’ undeclared (first use in this function) -ecore_exe.c:486:27: note: each undeclared identifier is reported only once for each function it appears in -make[6]: *** [ecore_exe.lo] Error 1 - - -Signed-off-by: Samuel Martin <s.martin49@gmail.com> - ---- -From a0df6712b6afcd07facd32e5a66809170277bdf3 Mon Sep 17 00:00:00 2001 -From: caro <caro> -Date: Fri, 22 Jun 2012 05:36:00 +0000 -Subject: [PATCH] ecore_exe: fix compilation on fedora 18. - -setpriority needs sys/resource.h. See: - -http://linux.die.net/man/2/setpriority - -I let sys/time.h, it does not hurt on linux and is anyway needed for BSD systems. - - -git-svn-id: http://svn.enlightenment.org/svn/e@72684 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 ---- - ChangeLog | 4 ++++ - src/lib/ecore/ecore_exe.c | 7 ++----- - 2 files changed, 6 insertions(+), 5 deletions(-) - -diff --git a/ChangeLog b/ChangeLog -index a306f75..549ad19 100644 ---- a/ChangeLog -+++ b/ChangeLog -@@ -763,3 +763,7 @@ - 2011-11-29 Mike McCormack - - * Allow quitting before entering the glib version of the main loop -+ -+2012-06-22 Vincent Torri -+ -+ * ecore_exe: fix compilation on fedora 18. -diff --git a/src/lib/ecore/ecore_exe.c b/src/lib/ecore/ecore_exe.c -index 7931a96..6db32a9 100644 ---- a/src/lib/ecore/ecore_exe.c -+++ b/src/lib/ecore/ecore_exe.c -@@ -2,11 +2,6 @@ - # include <config.h> - #endif - --#if defined (__FreeBSD__) || defined (__OpenBSD__) || defined (__NetBSD__) --# include <sys/time.h> --# include <sys/resource.h> --#endif -- - #include <stdlib.h> - #include <stdio.h> - #include <string.h> -@@ -14,6 +9,8 @@ - #include <sys/types.h> - #include <unistd.h> - #include <fcntl.h> -+#include <sys/time.h> -+#include <sys/resource.h> - - #ifdef HAVE_SYS_PRCTL_H - # include <sys/prctl.h> --- -1.7.12.2 - diff --git a/package/efl/libecore/libecore.mk b/package/efl/libecore/libecore.mk index 9eb09ac2f..0220017df 100644 --- a/package/efl/libecore/libecore.mk +++ b/package/efl/libecore/libecore.mk @@ -4,7 +4,7 @@ # ############################################################# -LIBECORE_VERSION = 1.1.0 +LIBECORE_VERSION = 1.7.4 LIBECORE_SOURCE = ecore-$(LIBECORE_VERSION).tar.bz2 LIBECORE_SITE = http://download.enlightenment.org/releases/ LIBECORE_LICENSE = BSD-2c |