blob: 68c6d84312941a13277554b342e818b558aed563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
TESTS_ENVIRONMENT = PKG_CONFIG='$(TESTS_PKG_CONFIG)' $(TESTS_SHELL)
TESTS = \
check-cflags \
check-libs \
check-mixed-flags \
check-non-l-flags \
check-define-variable \
check-libs-private \
check-requires-private \
check-circular-requires \
check-includedir \
check-conflicts \
check-missing \
check-special-flags \
check-sort-order \
check-duplicate-flags \
check-whitespace \
check-cmd-options \
check-version \
check-requires-version \
check-print-options \
check-path \
check-sysroot \
check-uninstalled \
check-debug \
check-gtk \
check-tilde \
check-relocatable \
check-variable-override \
check-variables \
check-dependencies \
check-system-flags \
$(NULL)
EXTRA_DIST = \
$(TESTS) \
common \
simple.pc \
requires-test.pc \
public-dep.pc \
private-dep.pc \
includedir.pc \
missing-requires-private.pc \
missing-requires.pc \
special-flags.pc \
conflicts-test.pc \
whitespace.pc \
fields-blank.pc \
sub/sub1.pc \
sub/sub2.pc \
sub/broken.pc \
inst.pc \
inst-uninstalled.pc \
other.pc \
requires-version-1.pc \
requires-version-2.pc \
requires-version-3.pc \
non-l.pc \
non-l-required.pc \
circular-1.pc \
circular-2.pc \
circular-3.pc \
no-variables.pc \
sort-order-1-1.pc \
sort/sort-order-2-1.pc \
sort/sort/sort-order-3-1.pc \
sort-order-1-2.pc \
sort/sort-order-2-2.pc \
sort/sort/sort-order-3-2.pc \
sort-order-1-3.pc \
sort/sort-order-2-3.pc \
sort/sort/sort-order-3-3.pc \
flag-dup-1.pc \
flag-dup-2.pc \
gtk/atk.pc \
gtk/cairo-gobject.pc \
gtk/cairo.pc \
gtk/fontconfig.pc \
gtk/freetype2.pc \
gtk/gdk-3.0.pc \
gtk/gdk-pixbuf-2.0.pc \
gtk/gio-2.0.pc \
gtk/glib-2.0.pc \
gtk/gmodule-no-export-2.0.pc \
gtk/gobject-2.0.pc \
gtk/gthread-2.0.pc \
gtk/gtk+-3.0.pc \
gtk/kbproto.pc \
gtk/libpng12.pc \
gtk/libpng.pc \
gtk/pangocairo.pc \
gtk/pangoft2.pc \
gtk/pango.pc \
gtk/pixman-1.pc \
gtk/renderproto.pc \
gtk/x11.pc \
gtk/xau.pc \
gtk/xcb.pc \
gtk/xproto.pc \
gtk/xrender.pc \
tilde.pc \
pkgconfig/empty-prefix.pc \
pkgconfig/prefixdef.pc \
pkgconfig/prefixdef-expanded.pc \
pcfiledir.pc \
variables.pc \
dependencies/a_dep_c.pc \
dependencies/b_dep_c.pc \
dependencies/c_dep.pc \
dependencies/d_dep_e_f.pc \
dependencies/d_dep_f_e.pc \
dependencies/e_dep_g_f.pc \
dependencies/f_dep_g.pc \
dependencies/g_dep.pc \
dependencies/h_dep_k_i_j.pc \
dependencies/i_dep_k_j.pc \
dependencies/j_dep_k.pc \
dependencies/k_dep.pc \
system.pc \
$(NULL)
|