void-packages/srcpkgs/supertuxkart/patches/ns_name_ntop.patch
Érico Rolim 618b9d42e0 supertuxkart: update to 1.2.
Add patch for ns_name_ntop, which doesn't exist for musl.

Remove archs restriction, it needed atomics support.

Add more system dependencies.
2020-08-29 14:59:10 -05:00

17 lines
846 B
Diff

Patch from https://github.com/supertuxkart/stk-code/pull/4361
Necessary because musl does not (yet?) implement ns_name_ntop.
diff --git a/src/network/network_config.cpp b/src/network/network_config.cpp
index 605254808..fd4fd5d24 100644
--- src/network/network_config.cpp
+++ src/network/network_config.cpp
@@ -587,7 +587,7 @@ void NetworkConfig::fillStunList(std::vector<std::pair<std::string, int> >* l,
for (unsigned i = 0; i < srv.size(); i++)
{
char server_name[512] = {};
- if (ns_name_ntop(srv[i] + SRV_SERVER, server_name, 512) < 0)
+ if (ns_name_uncompress(response, response + response_len, srv[i] + SRV_SERVER, server_name, 512) < 0)
continue;
uint16_t port = ns_get16(srv[i] + SRV_PORT);
uint16_t weight = ns_get16(srv[i] + SRV_WEIGHT);