summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-01-16 23:27:43 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2018-02-05 19:06:02 +0000
commiteeee001d784716f25acdb8c3a283164230b1b96c (patch)
tree6ea183d5db2b8af862a0d6654a9e503732c0fd76
parent6fb0121e2c153002286681b3bb6560e6954e0a4d (diff)
downloadmesa-eeee001d784716f25acdb8c3a283164230b1b96c.tar.gz
configure: Default to gbm=no on osx
Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> (cherry picked from commit 7ad7a07c88b1b1c697132e8f990c0d9530fdf827)
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index ae5162319d1..daa040d3194 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1270,10 +1270,10 @@ AC_ARG_ENABLE([xa],
[enable_xa=no])
AC_ARG_ENABLE([gbm],
[AS_HELP_STRING([--enable-gbm],
- [enable gbm library @<:@default=yes except cygwin@:>@])],
+ [enable gbm library @<:@default=yes except cygwin and macOS@:>@])],
[enable_gbm="$enableval"],
[case "$host_os" in
- cygwin*)
+ cygwin* | darwin*)
enable_gbm=no
;;
*)