We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84da91c commit 8f85fdbCopy full SHA for 8f85fdb
libc-test/build.rs
@@ -241,9 +241,12 @@ fn main() {
241
}
242
243
if linux || android {
244
- // DCCP support
245
if !uclibc && !musl && !emscripten {
+ // DCCP support
246
cfg.header("linux/dccp.h");
247
+
248
+ // SCTP support
249
+ //cfg.header("netinet/sctp.h");
250
251
252
@@ -255,6 +258,9 @@ fn main() {
255
258
cfg.header("sys/ipc.h");
256
259
cfg.header("sys/msg.h");
257
260
cfg.header("sys/shm.h");
261
262
263
+ cfg.header("netinet/sctp.h");
264
265
266
if netbsd {
@@ -264,6 +270,9 @@ fn main() {
270
271
// DCCP support
272
cfg.header("netinet/dccp.h");
273
274
275
267
276
268
277
269
278
if openbsd {
0 commit comments