Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 551818
Collapse All | Expand All

(-)a/Misc/Portable.h.in (+4 lines)
Lines 29-34 Link Here
29
#include <arpa/inet.h>
29
#include <arpa/inet.h>
30
#endif
30
#endif
31
31
32
#if defined(LINUX)
33
# include <sys/select.h>
34
#endif
35
32
#include <stdint.h>
36
#include <stdint.h>
33
#include <unistd.h>
37
#include <unistd.h>
34
38
(-)a/Port-linux/ethtool-local.h (-3 / +3 lines)
Lines 22-30 Link Here
22
 */
22
 */
23
23
24
typedef unsigned long long u64;
24
typedef unsigned long long u64;
25
typedef __uint32_t u32;        
25
typedef uint32_t u32;        
26
typedef __uint16_t u16;        
26
typedef uint16_t u16;        
27
typedef __uint8_t u8;          
27
typedef uint8_t u8;          
28
28
29
#include "ethtool-kernel.h"
29
#include "ethtool-kernel.h"
30
30
(-)a/Port-linux/lowlevel-linux-link-state.c (-1 / +3 lines)
Lines 18-24 Link Here
18
#include <stdlib.h>
18
#include <stdlib.h>
19
#include <string.h>
19
#include <string.h>
20
#include <unistd.h>
20
#include <unistd.h>
21
#include <bits/sigthread.h>
21
#if defined(__GLIBC__)
22
# include <bits/sigthread.h>
23
#endif
22
#include "Portable.h"
24
#include "Portable.h"
23
#include "interface.h"
25
#include "interface.h"
24
26
(-)a/Port-linux/utils.h (-1 / +5 lines)
Lines 1-9 Link Here
1
#ifndef __UTILS_H__
1
#ifndef __UTILS_H__
2
#define __UTILS_H__ 1
2
#define __UTILS_H__ 1
3
3
4
#ifndef _GNU_SOURCE
5
# define _GNU_SOURCE 1
6
#endif
7
4
#include <asm/types.h>
8
#include <asm/types.h>
5
//#include <resolv.h>
9
//#include <resolv.h>
6
#include <linux/types.h>
10
#include <linux/types.h>
11
#include <sys/types.h>
7
12
8
#include "libnetlink.h"
13
#include "libnetlink.h"
9
#include "ll_map.h"
14
#include "ll_map.h"
10
- 

Return to bug 551818