aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmil Velikov2015-03-16 19:19:26 -0500
committerEmil Velikov2015-03-17 17:37:03 -0500
commit648508518ef4f199eee58dbca8d6412af989fe71 (patch)
tree875c115c84c7895519f996180b716775ee556f01 /configure.ac
parent0e4d5a3a460fd00358132fd4b2391a093c5fe8dd (diff)
downloadexternal-libdrm-648508518ef4f199eee58dbca8d6412af989fe71.tar.gz
external-libdrm-648508518ef4f199eee58dbca8d6412af989fe71.tar.xz
external-libdrm-648508518ef4f199eee58dbca8d6412af989fe71.zip
configure.ac: fix help string copy/pasta
The message "enabled on x86" was meant for the intel libdrm. Take the opportunity to mention how libkms is autodetected. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 414383c0..7f76083e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -61,12 +61,12 @@ AC_ARG_ENABLE([udev],
61 61
62AC_ARG_ENABLE(libkms, 62AC_ARG_ENABLE(libkms,
63 AS_HELP_STRING([--disable-libkms], 63 AS_HELP_STRING([--disable-libkms],
64 [Disable KMS mm abstraction library (default: auto, enabled on x86]), 64 [Disable KMS mm abstraction library (default: auto, enabled on supported platforms)]),
65 [LIBKMS=$enableval], [LIBKMS=auto]) 65 [LIBKMS=$enableval], [LIBKMS=auto])
66 66
67AC_ARG_ENABLE(intel, 67AC_ARG_ENABLE(intel,
68 AS_HELP_STRING([--disable-intel], 68 AS_HELP_STRING([--disable-intel],
69 [Enable support for intel's KMS API (default: auto)]), 69 [Enable support for intel's KMS API (default: auto, enabled on x86)]),
70 [INTEL=$enableval], [INTEL=auto]) 70 [INTEL=$enableval], [INTEL=auto])
71 71
72AC_ARG_ENABLE(radeon, 72AC_ARG_ENABLE(radeon,