blob: 3fa75b97648d13015538b76f46828130312fad62 (
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
|
Author: Milan P. Stanić <mps@arvanta.net>
Date: Sun May 30 07:40:11 2021 +0000
Fix missing PATH_MAX on ppc64le
--- a/libbridge/libbridge_devif.c 2021-05-30 07:59:46.533574878 +0000
+++ b/libbridge/libbridge_devif.c 2021-05-30 08:01:09.964036452 +0000
@@ -24,6 +24,7 @@
#include <string.h>
#include <dirent.h>
#include <fcntl.h>
+#include <limits.h>
#include "libbridge.h"
#include "libbridge_private.h"
--- a/libbridge/libbridge_init.c 2021-05-30 08:00:15.983737797 +0000
+++ b/libbridge/libbridge_init.c 2021-05-30 08:00:49.573923635 +0000
@@ -24,6 +24,7 @@
#include <dirent.h>
#include <sys/types.h>
#include <sys/stat.h>
+#include <limits.h>
#include "libbridge.h"
#include "libbridge_private.h"
|