[Spice-devel] [PATCH spice-gtk 4/4] Add check for macOS, disable ucontext on macOS (deprecated)
Christophe de Dinechin
christophe at dinechin.org
Wed May 10 16:18:41 UTC 2017
(This was already sent in a previous series - For the moment, I need ucontext disabled to be able to build successfully on macOS)
Signed-off-by: Christophe de Dinechin <dinechin at redhat.com>
---
configure.ac | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/configure.ac b/configure.ac
index 74b5811..ecab365 100644
--- a/configure.ac
+++ b/configure.ac
@@ -62,6 +62,18 @@ esac
AC_MSG_RESULT([$os_win32])
AM_CONDITIONAL([OS_WIN32],[test "$os_win32" = "yes"])
+AC_MSG_CHECKING([for native macOS])
+case "$host_os" in
+ *darwin*)
+ os_mac=yes
+ ;;
+ *)
+ os_mac=no
+ ;;
+esac
+AC_MSG_RESULT([$os_mac])
+AM_CONDITIONAL([OS_MAC],[test "$os_mac" = "yes"])
+
AC_CHECK_HEADERS([sys/socket.h netinet/in.h arpa/inet.h])
AC_CHECK_HEADERS([termios.h])
AC_CHECK_HEADERS([epoxy/egl.h],
@@ -468,6 +480,8 @@ esac
if test "$with_coroutine" = "auto"; then
if test "$os_win32" = "yes"; then
with_coroutine=winfiber
+ elif test "$os_mac" = "yes"; then
+ with_coroutine=gthread
else
with_coroutine=ucontext
fi
--
2.11.0 (Apple Git-81)
More information about the Spice-devel
mailing list