# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) from spack import * class Libxcb(AutotoolsPackage): """The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.""" homepage = "https://xcb.freedesktop.org/" url = "https://xcb.freedesktop.org/dist/libxcb-1.13.tar.gz" version('1.13', sha256='0bb3cfd46dbd90066bf4d7de3cad73ec1024c7325a4a0cbf5f4a0d4fa91155fb') version('1.12', sha256='092f147149d8a6410647a848378aaae749304d5b73e028ccb8306aa8a9e26f06') version('1.11.1', sha256='660312d5e64d0a5800262488042c1707a0261fa01a759bad265b1b75dd4844dd') version('1.11', sha256='4b351e1dc95eb0a1c25fa63611a6f4cf033cb63e20997c4874c80bbd1876d0b4') depends_on('libpthread-stubs') depends_on('libxau@0.99.2:') depends_on('libxdmcp') # libxcb 1.X requires xcb-proto >= 1.X depends_on('xcb-proto', type='build') depends_on('xcb-proto@1.13:', when='@1.13:1.13.999', type='build') depends_on('xcb-proto@1.12:', when='@1.12:1.12.999', type='build') depends_on('xcb-proto@1.11:', when='@1.11:1.11.999', type='build') # TODO: uncomment once build deps can be resolved separately # See #7646, #4145, #4063, and #2548 for details # libxcb 1.13 added Python 3 support # depends_on('python', type='build') # depends_on('python@2:2.8', when='@:1.12', type='build') depends_on('pkgconfig', type='build') depends_on('util-macros', type='build') def configure_args(self): config_args = [] # -Werror flags are not properly interpreted by the NVIDIA compiler if self.spec.satisfies('%nvhpc'): config_args.append('--disable-selective-werror') return config_args def patch(self): filter_file( 'typedef struct xcb_auth_info_t {', 'typedef struct {', 'src/xcb.h')