diff options
author | Matt Weber <matthew.weber@rockwellcollins.com> | 2017-10-02 10:38:09 -0500 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-10-03 14:29:30 +0200 |
commit | 854d61f7aabac5f9f2f9612bd88266d5f44c4a5a (patch) | |
tree | e6e5e5bba0e28a52fb8ac11adbc5cab42336b98a /package/nfs-utils/0005-nfs-utils-add-missing-include-of-stdint.h.patch | |
parent | cc7fd91c4b978ea3113464624ce051e0918b48f6 (diff) | |
download | buildroot-854d61f7aabac5f9f2f9612bd88266d5f44c4a5a.tar.gz buildroot-854d61f7aabac5f9f2f9612bd88266d5f44c4a5a.zip |
nfs-utils: add missing include of stdint.h
The Glibc bump to 2.26 exposed this missing header when building with the
following combination using an i386 internal toolchain:
gcc5.4.0
bin2.28.1
linux4.1.43
Logfile snippet:
2017-10-02T00:08:11 ^
2017-10-02T00:08:12 rpc.c: In function ‘nsm_recv_getport’:
2017-10-02T00:08:12 rpc.c:469:13: error: ‘UINT16_MAX’ undeclared (first use in this function)
Upstream: https://bugzilla.linux-nfs.org/show_bug.cgi?id=312
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/nfs-utils/0005-nfs-utils-add-missing-include-of-stdint.h.patch')
-rw-r--r-- | package/nfs-utils/0005-nfs-utils-add-missing-include-of-stdint.h.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/package/nfs-utils/0005-nfs-utils-add-missing-include-of-stdint.h.patch b/package/nfs-utils/0005-nfs-utils-add-missing-include-of-stdint.h.patch new file mode 100644 index 0000000000..a6214350ca --- /dev/null +++ b/package/nfs-utils/0005-nfs-utils-add-missing-include-of-stdint.h.patch @@ -0,0 +1,33 @@ +From b3ff26fa182b34b6faa1317f18a9dac4c7963334 Mon Sep 17 00:00:00 2001 +From: Matt Weber <matthew.weber@rockwellcollins.com> +Date: Mon, 2 Oct 2017 09:57:15 -0500 +Subject: [PATCH] nfs-utils: add missing include of stdint.h + +Glibc bump to 2.26 exposed this missing header when building +with the following combination using an i386 internal toolchain. +gcc5.4.0 +bin2.28.1 +linux4.1.43 + +Upstream: https://bugzilla.linux-nfs.org/show_bug.cgi?id=312 + +Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> +--- + support/nsm/rpc.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/support/nsm/rpc.c b/support/nsm/rpc.c +index 4e5f40e..d91c6ea 100644 +--- a/support/nsm/rpc.c ++++ b/support/nsm/rpc.c +@@ -40,6 +40,7 @@ + + #include <time.h> + #include <stdbool.h> ++#include <stdint.h> + #include <string.h> + #include <unistd.h> + #include <fcntl.h> +-- +1.9.1 + |