-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch curl so that it builds without BinaryBuilder (#55290)
Also removes nss flag as NSS seems to have been removed from curl and I think the flag was dropped in https://github.com/curl/curl/pull/11459/files. Fixes #55286.
- Loading branch information
Showing
2 changed files
with
33 additions
and
2 deletions.
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,23 @@ | ||
From 5cc2b016c36aaf5a08e2feb7c068fca5bb0a8052 Mon Sep 17 00:00:00 2001 | ||
From: Daniel Stenberg <[email protected]> | ||
Date: Mon, 5 Feb 2024 15:22:08 +0100 | ||
Subject: [PATCH] md4: include strdup.h for the memdup proto | ||
|
||
Reported-by: Erik Schnetter | ||
Fixes #12849 | ||
Closes #12863 | ||
--- | ||
lib/md4.c | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/lib/md4.c b/lib/md4.c | ||
index 067c211e420afd..58dd1166cf924f 100644 | ||
--- a/lib/md4.c | ||
+++ b/lib/md4.c | ||
@@ -28,6 +28,7 @@ | ||
|
||
#include <string.h> | ||
|
||
+#include "strdup.h" | ||
#include "curl_md4.h" | ||
#include "warnless.h" |