[wasm] Wasm actually has inet_pton but configure doesn't detect it.
[mono.git] / mono / utils / networking-missing.c
index 8c8c75b5a1012ffdaab66fdac3d976abb6c76cea..5c99dbb9e341065bfba3d36b7b4bef186a201423 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * networking-missing.c: Implements missing standard socket functions.
+/**
+ * \file
+ * Implements missing standard socket functions.
  *
  * Author:
  *     Rodrigo Kumpera (kumpera@gmail.com)
@@ -15,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)