From 3c7ae8abe1eee1b1231f7c81e9898485940901c7 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Fri, 16 Apr 2010 10:12:37 -0700 Subject: Make libkms build default OS-dependent Signed-off-by: Alan Coopersmith --- configure.ac | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index fcfd07ba..3794838b 100644 --- a/configure.ac +++ b/configure.ac @@ -46,8 +46,8 @@ AC_ARG_ENABLE(udev, AS_HELP_STRING([--enable-udev], AC_ARG_ENABLE(libkms, AS_HELP_STRING([--disable-libkms], - [Disable KMS mm abstraction library (default: enabled)]), - [LIBKMS=$enableval], [LIBKMS=yes]) + [Disable KMS mm abstraction library (default: auto)]), + [LIBKMS=$enableval], [LIBKMS=auto]) AC_ARG_ENABLE(intel, AS_HELP_STRING([--disable-intel], @@ -146,6 +146,14 @@ if test "x$UDEV" = xyes; then AC_DEFINE(UDEV, 1, [Have UDEV support]) fi +AC_CANONICAL_HOST +if test "x$LIBKMS" = xauto ; then + case $host_os in + linux*) LIBKMS="yes" ;; + *) LIBKMS="no" ;; + esac +fi + AM_CONDITIONAL(HAVE_LIBKMS, [test "x$LIBKMS" = xyes]) AM_CONDITIONAL(HAVE_VMWGFX, [test "x$VMWGFX" = xyes]) -- cgit v1.2.3