diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-07-07 17:07:24 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-07-07 21:44:37 +0200 |
commit | d4c476f8c523db9dd303bf3dfd1ef3db87254d6c (patch) | |
tree | 0b950c681659e08219ac036bf55d6a9551c32df1 /package/enlightenment/enlightenment-no-execinfo.patch | |
parent | 338721636a21352b92a8da4ac8d4c6e6e7c01ff9 (diff) | |
download | buildroot-d4c476f8c523db9dd303bf3dfd1ef3db87254d6c.tar.gz buildroot-d4c476f8c523db9dd303bf3dfd1ef3db87254d6c.zip |
enlightenment: bump to 0.17.3
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/enlightenment/enlightenment-no-execinfo.patch')
-rw-r--r-- | package/enlightenment/enlightenment-no-execinfo.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/package/enlightenment/enlightenment-no-execinfo.patch b/package/enlightenment/enlightenment-no-execinfo.patch deleted file mode 100644 index 81fbe17f78..0000000000 --- a/package/enlightenment/enlightenment-no-execinfo.patch +++ /dev/null @@ -1,27 +0,0 @@ -Do not include <execinfo.h> when not available - -On uClibc, <execinfo.h> is not necessarily installed, depending on the -configuration. Enlightenment properly makes <execinfo.h> optional, but -uses __GLIBC__ to check if it is available or not. Unfortunately, -uClibc defines __GLIBC__, so it is not the right way to decide if -<execinfo.h> is available. - -Instead, Enlightenment already has a configure.ac check for -execinfo.h, so we simply use the result of this configure.ac check to -decide whether execinfo.h is to be included or not. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - -Index: b/src/bin/e.h -=================================================================== ---- a/src/bin/e.h -+++ b/src/bin/e.h -@@ -92,7 +92,7 @@ - # include <memcheck.h> - # endif - --# ifdef __GLIBC__ -+# ifdef HAVE_EXECINFO_H - # include <execinfo.h> - # endif - |