gnuradio: sys/types.h is needed for mode_t
fix : http://autobuild.buildroot.net/results/8e3/8e3afd5f22312f0660f631fdb82bbb64eda913fb/build-end.log error: 'mode_t' has not been declared Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
ec9fc5a2c0
commit
aca921d2af
19
package/gnuradio/0002-types_t-is-need-for-mode_t.patch
Normal file
19
package/gnuradio/0002-types_t-is-need-for-mode_t.patch
Normal file
@ -0,0 +1,19 @@
|
||||
To avoid :
|
||||
error: 'mode_t' has not been declared
|
||||
sys/types.h must be included
|
||||
|
||||
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
|
||||
---
|
||||
Index: gnuradio-3.7.5/gnuradio-runtime/include/gnuradio/logger.h.in
|
||||
===================================================================
|
||||
--- gnuradio-3.7.5.orig/gnuradio-runtime/include/gnuradio/logger.h.in
|
||||
+++ gnuradio-3.7.5/gnuradio-runtime/include/gnuradio/logger.h.in
|
||||
@@ -44,6 +44,8 @@
|
||||
|
||||
#ifdef _MSC_VER
|
||||
typedef unsigned short mode_t;
|
||||
+#else
|
||||
+#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#include <gnuradio/api.h>
|
Loading…
Reference in New Issue
Block a user