-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes compilation with GCC14. Signed-off-by: Rosen Penev <[email protected]>
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
From 9fc45a2cf3b78573a568abf538a6e6f4bd30b2d7 Mon Sep 17 00:00:00 2001 | ||
From: Alex Kiernan <[email protected]> | ||
Date: Wed, 27 Sep 2023 11:45:26 +0100 | ||
Subject: [PATCH] Add missing limits.h | ||
|
||
Upstream-Status: Pending | ||
Signed-off-by: Alex Kiernan <[email protected]> | ||
--- | ||
mDNSShared/PlatformCommon.c | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
--- a/mDNSShared/PlatformCommon.c | ||
+++ b/mDNSShared/PlatformCommon.c | ||
@@ -32,6 +32,7 @@ | ||
#include <time.h> | ||
#include <sys/time.h> // Needed for #include <sys/time.h>(). | ||
#include <assert.h> | ||
+#include <limits.h> | ||
|
||
|
||
#include "mDNSEmbeddedAPI.h" // Defines the interface provided to the client layer above |