python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / sane-backends / 0003-sane_backend-add-missing-config.h.patch
blob8e56b0284b5f058d4d32896794be90ed0ec0ce51
1 From 13aadf79659dd238b618c8be7c1de44960bd5d50 Mon Sep 17 00:00:00 2001
2 From: Romain Naour <romain.naour@gmail.com>
3 Date: Fri, 11 Nov 2016 22:20:03 +0100
4 Subject: [PATCH] sane_backend: add missing config.h
6 We should include config.h from sanei_backend.h in order to use the
7 correct if/else HAVE_FOO.
9 For some reason with Glibc or uClibc there is no problem but with musl
10 we have the following weird issue:
12 In file included from epsonds.h:41:0,
13 from epsonds-jpeg.c:18:
14 ../include/sane/sanei_backend.h:99:33: error: expected ';', identifier or '(' before 'int'
15 # define sigset_t int
17 ../include/sane/sanei_backend.h:99:33: warning: useless type name in empty declaration
19 That's because HAVE_SIGPROCMASK is not defined although it's correctly
20 detected by the configure script.
22 $ grep config.log
23 config.log:#define HAVE_SIGPROCMASK 1
25 So, include config.h to avoid to redefine sigset_t.
27 Fixes:
28 http://autobuild.buildroot.net/results/9f1/9f1f1cb727b5c5407e69172280a3dee880e55cdf
30 Signed-off-by: Romain Naour <romain.naour@gmail.com>
31 ---
32 include/sane/sanei_backend.h | 1 +
33 1 file changed, 1 insertion(+)
35 diff --git a/include/sane/sanei_backend.h b/include/sane/sanei_backend.h
36 index 1b5afe2..2a96532 100644
37 --- a/include/sane/sanei_backend.h
38 +++ b/include/sane/sanei_backend.h
39 @@ -8,6 +8,7 @@
40 * @sa sanei.h sanei_thread.h
43 +#include "../include/sane/config.h"
46 * Compiler related options
47 --
48 2.5.5