diff options
author | Jon Turney <[email protected]> | 2018-01-16 23:27:43 +0000 |
---|---|---|
committer | Jon Turney <[email protected]> | 2018-02-01 15:13:00 +0000 |
commit | 7ad7a07c88b1b1c697132e8f990c0d9530fdf827 (patch) | |
tree | cdad6b788eb9ed8805f3d8b3670e04dbcf6c3d90 | |
parent | bbd00844a2244cfe2702a5577a8d68f65877952a (diff) |
configure: Default to gbm=no on osx
Signed-off-by: Jon Turney <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r-- | configure.ac | 4 |
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 ;; *) |