[wasm] Wasm actually has inet_pton but configure doesn't detect it.
[mono.git] / mono / utils / networking-missing.c
index 32aeb9633886e6fed3fd9f09e10ab79386cbd4f0..5c99dbb9e341065bfba3d36b7b4bef186a201423 100644 (file)
@@ -16,7 +16,8 @@
 #include <netdb.h>
 #endif
 
-#ifndef HAVE_INET_PTON
+//wasm does have inet_pton even though autoconf fails to find
+#if defined (HAVE_INET_PTON) && !defined (HOST_WASM)
 
 int
 inet_pton (int family, const char *address, void *inaddrp)