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