1From 1d7e71e72c597ffcc19c04373a477d1fbd3ad955 Mon Sep 17 00:00:00 2001
2From: Beniamin Sandu <beniaminsandu@gmail.com>
3Date: Thu, 15 Jun 2023 17:02:58 +0000
4Subject: [PATCH] remove unneeded headers
5
6From a quick look, these seem to not be needed and having them
7breaks the build with mbedtls 3.x. Without them it builds fine
8on both 2.x and 3.x versions.
9
10Upstream-Status: Pending
11
12Signed-off-by: Beniamin Sandu <beniaminsandu@gmail.com>
13---
14 mDNSPosix/mbedtls.c | 2 --
15 1 file changed, 2 deletions(-)
16
17Index: mDNSResponder/mDNSPosix/mbedtls.c
18===================================================================
19--- mDNSResponder.orig/mDNSPosix/mbedtls.c
20+++ mDNSResponder/mDNSPosix/mbedtls.c
21@@ -38,10 +38,8 @@
22 #include <mbedtls/sha256.h>
23 #include <mbedtls/base64.h>
24
25-#include <mbedtls/certs.h>
26 #include <mbedtls/x509.h>
27 #include <mbedtls/ssl.h>
28-#include <mbedtls/config.h>
29
30 // Posix TLS server context
31 struct TLSContext_struct {
32