spack/var/spack/repos/builtin/packages/xfwp/package.py
bernhardkaindl 9a64a229a0
xfwp: Fix build using: env.append_flags('CPPFLAGS', '-D_GNU_SOURCE') (#26157)
Without -D_GNU_SOURCE, the build of xfwp has many compilation errors.
Example: io.c:1039:7: error: implicit declaration of function 'swab'
2021-09-26 10:29:43 +02:00

28 lines
953 B
Python

# Copyright 2013-2021 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 Xfwp(AutotoolsPackage, XorgPackage):
"""xfwp proxies X11 protocol connections, such as through a firewall."""
homepage = "https://cgit.freedesktop.org/xorg/app/xfwp"
xorg_mirror_path = "app/xfwp-1.0.3.tar.gz"
version('1.0.3', sha256='6fe243bde0374637e271a3f038b5d6d79a04621fc18162727782392069c5c04d')
depends_on('libice')
depends_on('xproto')
depends_on('xproxymanagementprotocol')
depends_on('pkgconfig', type='build')
depends_on('util-macros', type='build')
# Fixes this and a long list of other compilation errors:
# io.c:1039:7: error: implicit declaration of function 'swab'
def setup_build_environment(self, env):
env.append_flags('CPPFLAGS', '-D_GNU_SOURCE')