diff options
author | John Keeping <john@metanate.com> | 2016-01-05 12:15:15 +0000 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-01-05 22:36:05 +0100 |
commit | e2274856123fcc387df95675d7a66eb2c576eaa2 (patch) | |
tree | 2beda02b68e0230d159a269a2a72d952dfffa9c0 /package/bluez5_utils/0002-src-shared-ecc.c-include-config.h.patch | |
parent | f7d5420144cbc98a38501de712b24ac0dc60eb9e (diff) | |
download | buildroot-e2274856123fcc387df95675d7a66eb2c576eaa2.tar.gz buildroot-e2274856123fcc387df95675d7a66eb2c576eaa2.zip |
bluez5_utils: bump to version 5.37
Both patches are now included upstream.
Signed-off-by: John Keeping <john@metanate.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/bluez5_utils/0002-src-shared-ecc.c-include-config.h.patch')
-rw-r--r-- | package/bluez5_utils/0002-src-shared-ecc.c-include-config.h.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/package/bluez5_utils/0002-src-shared-ecc.c-include-config.h.patch b/package/bluez5_utils/0002-src-shared-ecc.c-include-config.h.patch deleted file mode 100644 index f339c887b3..0000000000 --- a/package/bluez5_utils/0002-src-shared-ecc.c-include-config.h.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 3c5a93d0be4457120d17da70918f9eb8799d6c52 Mon Sep 17 00:00:00 2001 -From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> -Date: Thu, 1 Jan 2015 22:33:34 +0100 -Subject: [PATCH] src/shared/ecc.c: include <config.h> - -The ecc.c file forgets to include <config.h>. This causes build -failures with certain C libraries, because ecc.c uses O_CLOEXEC, which -is only available when _GNU_SOURCE is defined. And _GNU_SOURCE gets -defined by <config.h>, so it should be included. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - src/shared/ecc.c | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/src/shared/ecc.c b/src/shared/ecc.c -index 33c4187..41be02b 100644 ---- a/src/shared/ecc.c -+++ b/src/shared/ecc.c -@@ -24,6 +24,10 @@ - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -+#ifdef HAVE_CONFIG_H -+#include <config.h> -+#endif -+ - #include <fcntl.h> - #include <unistd.h> - #include <sys/types.h> --- -2.1.0 - |