# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1628713933 0 # Node ID 038f83009cdbd11080588cc0e022bbc527cfa0fa # Parent 3ec675648cf5b22f403f08d8711b3970727ef355 iOS/Android: With no autoconf #define HAVE_PIPE, Android and iOS should have it access to pipe(). iOS was failing to use the domain socket or loopback socket fallback, so make sure we are using pipe(). diff -r 3ec675648cf5 -r 038f83009cdb dwcompat.h --- a/dwcompat.h Wed Aug 11 11:46:36 2021 +0000 +++ b/dwcompat.h Wed Aug 11 20:32:13 2021 +0000 @@ -10,6 +10,7 @@ #include "dwconfig.h" #else #define HAVE_DIRENT_H 1 +#define HAVE_PIPE 1 #endif /* Attempt to include 64 bit file functions on various unix flavors */