diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2014-03-26 15:24:45 -0400 |
---|---|---|
committer | Uli Schlachter <psychon@znc.in> | 2014-08-06 13:26:08 +0200 |
commit | 23f57ac8bf0812bbc851ec9a815e50a640b97db5 (patch) | |
tree | 0dbc46cdb725fdc367775967b4234b8d16050b0a | |
parent | 7f07b57be587a2ebe0cadceba3fe67ed4a1e79db (diff) |
config: issue an error if DRI3 is requested, but sendfds is not available
When a user issues the --enable-dri3 option and sendfds is not available
on the system, the configuration will abort with an error message.
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Signed-off-by: Uli Schlachter <psychon@znc.in>
-rw-r--r-- | m4/xcb.m4 | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -56,6 +56,11 @@ m4_if(xcb_defopt, [auto], [ # This extension has a default value of "auto" and depends on the value of $2 if test "x$BUILD_[]UP" = "xauto" ; then BUILD_[]UP=$2 +fi +if test "x$BUILD_[]UP" = "xyes" ; then + if test "x$2" = "xno" ; then + AC_MSG_ERROR([Extension []UP requested, but dependencies are not met]) + fi fi]) m4_undefine([xcb_defopt])dnl |