1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 02:07:44 +00:00

Ports: Update SDL2_net's patches to use git patches

This commit is contained in:
Ali Mohammad Pur 2022-05-16 19:21:27 +04:30 committed by Ali Mohammad Pur
parent 7574dc0258
commit 98260975c0
5 changed files with 65 additions and 25 deletions

View file

@ -0,0 +1,28 @@
From 39364e14fd4259ab6c618a228f0b06dc8b9af24b Mon Sep 17 00:00:00 2001
From: Gunnar Beutner <gbeutner@serenityos.org>
Date: Wed, 16 Jun 2021 11:08:32 +0200
Subject: [PATCH 1/2] Undefine 'SIOCGIFCONF' on serenity
FIXME: We don't know why yet.
---
SDLnet.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/SDLnet.c b/SDLnet.c
index 53d125a..87eab4c 100644
--- a/SDLnet.c
+++ b/SDLnet.c
@@ -184,6 +184,10 @@ const char *SDLNet_ResolveIP(const IPaddress *ip)
return inet_ntoa(in);
}
+#ifdef __serenity__
+#undef SIOCGIFCONF
+#endif
+
int SDLNet_GetLocalAddresses(IPaddress *addresses, int maxcount)
{
int count = 0;
--
2.36.1