mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
GNetworkAddress: Build if AI_NUMERICSERV not defined
This is not defined on all Win32 SDKs and in some unixes. If its not defined its safe to just ignore it though.
This commit is contained in:
@@ -251,7 +251,11 @@ g_network_address_parse_sockaddr (GNetworkAddress *addr)
|
||||
gchar port[32];
|
||||
|
||||
memset (&hints, 0, sizeof (hints));
|
||||
hints.ai_flags = AI_NUMERICHOST | AI_NUMERICSERV;
|
||||
hints.ai_flags = AI_NUMERICHOST
|
||||
#ifdef AI_NUMERICSERV
|
||||
| AI_NUMERICSERV
|
||||
#endif
|
||||
;
|
||||
g_snprintf (port, sizeof (port), "%u", addr->priv->port);
|
||||
|
||||
if (getaddrinfo (addr->priv->hostname, port, &hints, &res) != 0)
|
||||
|
Reference in New Issue
Block a user