summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2022-01-14 18:02:53 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-01-14 18:02:53 +0000
commit2f5d7e1a5d6125ed7a598a7bc5b4d2979f1dddeb (patch)
treef3b587567b0b2da4ce3bb40d0f8d85b37c46a843
parentff18ccf5dbbc8482ef76e6af3da616e1c094dc47 (diff)
parent99f2246ae5fc8b4ebae089fe7eb2f436b4b3d2c8 (diff)
downloadparameter-framework-2f5d7e1a5d6125ed7a598a7bc5b4d2979f1dddeb.tar.gz
Fix building parameter-framework against musl am: 8f04302f2b am: 290ad7f861 am: cdbb0b56b8 am: 99f2246ae5
Original change: https://android-review.googlesource.com/c/platform/external/parameter-framework/+/1949439 Change-Id: I3ecc09ce45b473d031b225fcb2c4b115a99f3dbf
-rw-r--r--asio-1.10.6/include/asio/detail/socket_types.hpp2
-rw-r--r--asio-1.10.6/include/asio/impl/error_code.ipp2
2 files changed, 2 insertions, 2 deletions
diff --git a/asio-1.10.6/include/asio/detail/socket_types.hpp b/asio-1.10.6/include/asio/detail/socket_types.hpp
index 379f035..80ae520 100644
--- a/asio-1.10.6/include/asio/detail/socket_types.hpp
+++ b/asio-1.10.6/include/asio/detail/socket_types.hpp
@@ -15,7 +15,7 @@
#include "asio/detail/config.hpp"
# include <sys/ioctl.h>
-# include <sys/poll.h>
+# include <poll.h>
# include <sys/types.h>
# include <sys/stat.h>
# include <fcntl.h>
diff --git a/asio-1.10.6/include/asio/impl/error_code.ipp b/asio-1.10.6/include/asio/impl/error_code.ipp
index 4704245..02875bd 100644
--- a/asio-1.10.6/include/asio/impl/error_code.ipp
+++ b/asio-1.10.6/include/asio/impl/error_code.ipp
@@ -42,7 +42,7 @@ public:
#if defined(__sun) || defined(__QNX__) || defined(__SYMBIAN32__)
using namespace std;
return strerror(value);
-#elif defined(__MACH__) && defined(__APPLE__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(_AIX) || defined(__hpux) || defined(__osf__) || defined(__ANDROID__)
+#elif defined(__MACH__) && defined(__APPLE__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(_AIX) || defined(__hpux) || defined(__osf__) || defined(__ANDROID__) || defined(ANDROID_HOST_MUSL)
char buf[256] = "";
using namespace std;
strerror_r(value, buf, sizeof(buf));