]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
iproute2: fixes to compile on some systems.
authorLorenzo Colitti <lorenzo@google.com>
Mon, 20 Nov 2017 03:57:07 +0000 (12:57 +0900)
committerStephen Hemminger <stephen@networkplumber.org>
Mon, 20 Nov 2017 18:38:58 +0000 (10:38 -0800)
1. Put the declarations of strlcpy and strlcat inside
   an #ifdef NEED_STRLCPY. Their declarations were already in a
   similar #ifdef.
2. In bpf_scm.h, include sys/un.h for struct sockaddr_un.
3. In utils.h, include time.h for struct timeval.

Tested: builds on ubuntu 14.04 with "make clean distclean; ./configure && make -j64"
Tested: 4.14.1 builds on Android with Android-specific #ifndefs for missing library code
Signed-off-by: Lorenzo Colitti <lorenzo@google.com>
include/bpf_scm.h
include/utils.h

index 35117d11ee0ad77e1790e64edf4796768bc6416a..122d59fc43b92830ac3412c1f1191c2a92dbdc8f 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <sys/types.h>
 #include <sys/socket.h>
+#include <sys/un.h>
 
 #include "utils.h"
 #include "bpf_elf.h"
index 3d91c50db05b9f130472adc67c65e0be0f8834b9..10749fbee1b1421b08790b461aa8c12c685e7700 100644 (file)
@@ -6,6 +6,7 @@
 #include <resolv.h>
 #include <stdlib.h>
 #include <stdbool.h>
+#include <time.h>
 
 #include "libnetlink.h"
 #include "ll_map.h"
@@ -256,7 +257,9 @@ int make_path(const char *path, mode_t mode);
 char *find_cgroup2_mount(void);
 int get_command_name(const char *pid, char *comm, size_t len);
 
+#ifdef NEED_STRLCPY
 size_t strlcpy(char *dst, const char *src, size_t size);
 size_t strlcat(char *dst, const char *src, size_t size);
+#endif
 
 #endif /* __UTILS_H__ */