aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-connectivity/ifplugd/ifplugd/Fix-build-with-musl.patch
blob: 35665bd3f246c9f3027406a2b82bdf7f2d7a2f69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 3f2fc79385398f213a9bd3c99616d749d699f2bb Mon Sep 17 00:00:00 2001
From: Fabio Berton <fabio.berton@ossystems.com.br>
Date: Thu, 14 Mar 2019 19:26:14 -0300
Subject: [PATCH] Fix build with musl
Organization: O.S. Systems Software LTDA.

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
---
 src/ethtool-local.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--- a/src/ethtool-local.h
+++ b/src/ethtool-local.h
@@ -20,11 +20,11 @@
  * along with ifplugd; if not, write to the Free Software Foundation,
  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  */
-
+#include <stdint.h>
 typedef unsigned long long u64;
-typedef __uint32_t u32;        
-typedef __uint16_t u16;        
-typedef __uint8_t u8;          
+typedef uint32_t u32;
+typedef uint16_t u16;
+typedef uint8_t u8;
 
 #include "ethtool-kernel.h"