forked from zeromq/zproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zproject_known_projects.xml
140 lines (113 loc) · 4.34 KB
/
zproject_known_projects.xml
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<known_projects>
<!-- ZeroMQ Projects -->
<!--
Problem: naming style is inconsistent
we sometimes use libxxx and sometimes xxx; the git repo name
is unpredictable; sometimes we override with the prefix and
sometimes with libname.
Proposed solution: project name should always be git repo
name; prefix and libname should always be specified. For
compatibility we can define aliases. E.g.:
Also, 'cmake name' is target specific and must go.
Suggested model:
<use
project = "libzmq" required
master = "https://github.com/zeromq"
required
libname = "libzmq" default = lib<prefix>
prefix = "zmq" default = project
test = "zmq_init" required same as AC_CHECK_LIB in autoconf
release = "<tagname>" default = "master"
abi = "version" default = "0:0:0"
header = "<filename>" default = <prefix>.h
language = "C|C++" default = "C"
optional = "1" default = "0"
</use>
-->
<use project = "libzmq" prefix = "zmq"
repository = "https://github.com/zeromq/libzmq"
test = "zmq_init" />
<use project = "czmq" libname = "libczmq"
repository = "https://github.com/zeromq/czmq"
test = "zctx_test">
<use project = "libzmq" />
</use>
<use project = "zyre" libname = "libzyre"
repository = "https://github.com/zeromq/zyre"
test = "zyre_test">
<use project = "czmq" />
</use>
<use project = "malamute" libname = "libmlm"
repository = "https://github.com/zeromq/malamute"
header = "malamute.h"
prefix = "mlm"
test = "mlm_server_test">
<use project = "libzmq" />
<use project = "czmq" />
</use>
<!-- Edgenet Projects -->
<use project = "drops" libname = "libdrops"
repository = "https://github.com/edgenet/drops"
test = "drops_test">
<use project = "czmq" />
<use project = "zyre" />
</use>
<use project = "hydra" libname = "libhydra"
repository = "https://github.com/edgenet/hydra"
test = "hydra_server_test">
<use project = "czmq" />
</use>
<!-- Various known third-party projects
(If you're unsure of where a project belongs, add it here) -->
<use project = "libsodium" prefix = "sodium"
repository = "https://github.com/jedisct1/libsodium"
release = "stable"
test = "sodium_init" />
<use project = "libcurl"
repository = "https://github.com/bagder/curl"
test = "curl_easy_init"
header = "curl/curl.h" />
<use project = "editline"
repository = "https://github.com/troglobit/editline"
test = "readline" />
<use project = "fuse"
repository = "http://git.code.sf.net/p/fuse/fuse"
test = "fuse_main" />
<use project = "jansson"
repository = "https://github.com/akheron/jansson"
test = "json_object" />
<use project = "jemalloc"
repository = "https://github.com/jemalloc/jemalloc"
test = "malloc"
header = "jemalloc/jemalloc.h" />
<use project = "msgpack"
repository = "https://github.com/msgpack/msgpack-c.git"
test = "msgpack_version" />
<use project = "uuid"
test = "uuid_generate"
header = "uuid/uuid.h"
debian_name = "uuid-dev" />
<use project = "asound"
test = "snd_asoundlib_version"
header = "alsa/asoundlib.h" />
<use project = "zdb"
repository = "https://bitbucket.org/tildeslash/libzdb.git"
test = "ConnectionPool_start" />
<use project = "json-c"
header = "json-c/json.h"
test = "json_object_to_json_string" />
<use project = "lognorm"
test = "ln_initCtx">
<use project = "json-c" />
</use>
<use project = "systemd"
libname = "libsystemd"
prefix = "libsystemd"
linkname = "systemd"
header = "systemd/sd-daemon.h"
test = "sd_listen_fds" />
<use project = "protobuf-c"
repository = "https://github.com/protobuf-c/protobuf-c/"
test = "protobuf_c_version"
header = "protobuf-c/protobuf-c.h"/>
</known_projects>