diff options
author | Robert Millan <rmh@freebsd.org> | 2014-01-23 14:46:05 +0000 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2014-01-24 17:52:14 -0500 |
commit | cbb31f2d6e674513c0f66484c414475baba09153 (patch) | |
tree | 4fad1d79c284c33e1915ffe3043d2a00784e86e0 /configure.ac | |
parent | ce62b8e0596b4805cb7e09a4a4e66de5c7b11cf3 (diff) |
drm: Implement drmCheckModesettingSupported() for FreeBSD
Add the missing implementation of drmCheckModesettingSupported()
to detect KMS support on FreeBSD (and GNU/kFreeBSD).
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=72847
Signed-off-by: Konstantin Belousov <kib@freebsd.org>
Signed-off-by: Robert Millan <rmh@freebsd.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 969fb83b..d2d19d66 100644 --- a/configure.ac +++ b/configure.ac @@ -185,6 +185,8 @@ AC_CANONICAL_HOST if test "x$LIBKMS" = xauto ; then case $host_os in linux*) LIBKMS="yes" ;; + freebsd* | kfreebsd*-gnu) + LIBKMS="yes" ;; *) LIBKMS="no" ;; esac fi |