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