diff options
author | Clément Bœsch <u@pkh.me> | 2015-01-03 09:52:32 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-01-03 09:56:53 +0100 |
commit | cc5f5e140cdcc96a9a0574d4587b176adfb4a6ac (patch) | |
tree | 6cd9be4f735ab423e9bc1bce61852ac68779023a /configure | |
parent | 38c1bffd80c106ec42938178ad3e71e58eef3b09 (diff) | |
download | ffmpeg-cc5f5e140cdcc96a9a0574d4587b176adfb4a6ac.tar.gz |
build: require libxcb >= 1.4
Fixes Ticket #4139
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5057,8 +5057,8 @@ enabled xlib && check_lib X11/Xlib.h XOpenDisplay -lX11 || disable xlib if ! disabled libxcb; then - check_pkg_config xcb xcb/xcb.h xcb_connect || { - enabled libxcb && die "ERROR: libxcb not found"; + check_pkg_config "xcb >= 1.4" xcb/xcb.h xcb_connect || { + enabled libxcb && die "ERROR: libxcb >= 1.4 not found"; } && disable x11grab && enable libxcb if enabled libxcb; then |