Lines Matching full:pkgconfig
4 import cffi.pkgconfig as pkgconfig namespace
21 pkgconfig.merge_flags(d1, d2)
30 assert pkgconfig.flags_from_pkgconfig([]) == {}
32 saved = pkgconfig.call
34 pkgconfig.call = mock_call
35 flags = pkgconfig.flags_from_pkgconfig(["foobarbaz"])
37 pkgconfig.call = saved
60 saved = pkgconfig.subprocess
62 pkgconfig.subprocess = mock_subprocess
65 e = py.test.raises(PkgConfigError, pkgconfig.call, "libfoo", "--cflags")
69 e = py.test.raises(PkgConfigError, pkgconfig.call, "libfoo", "--cflags")
73 e = py.test.raises(PkgConfigError, pkgconfig.call, "libfoo", "--cflags")
78 result = pkgconfig.call("libfoo", "--cflags")
82 result = pkgconfig.call("libfoo", "--cflags")
87 e = py.test.raises(PkgConfigError, pkgconfig.call,
94 pkgconfig.subprocess = saved