diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2013-01-07 01:14:25 +0000 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2013-01-07 01:14:25 +0000 |
commit | 53f7a9ddbdbd617d41af0f198c918adfad82bb4b (patch) | |
tree | c4ea061d5a2a8593bd26c6a02c52e93f8aa8f495 | |
parent | 5598d4a7097724357ae7feccd8c5a2da1288a8b1 (diff) | |
download | enlightenment-53f7a9ddbdbd617d41af0f198c918adfad82bb4b.tar.gz |
e: fix build with uClibc.
Patch by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>.
SVN revision: 82312
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/bin/e.h | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -1,7 +1,13 @@ +2013-01-07 Thomas Petazzoni + + * Fix build with uClibc. + 2013-01-04 Lucas Jóia + * Added bluez4 module: control bluetoothd daemon 2013-01-03 Lucas Jóia + * Added appmenu module: show application menu in shelf 2013-01-03 José Roberto de Souza @@ -55,3 +55,4 @@ Fixes: windows don't fail to raise as expected if user has configured E to ignore activate hints * Fix restarting E17 after manually monitoring it. + * Fix build with uClibc. diff --git a/src/bin/e.h b/src/bin/e.h index cf196299be..de1c7a95b4 100644 --- a/src/bin/e.h +++ b/src/bin/e.h @@ -92,7 +92,7 @@ void *alloca (size_t); # include <memcheck.h> # endif -# ifdef __GLIBC__ +# ifdef HAVE_EXECINFO_H # include <execinfo.h> # endif |