mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 00:00:07 +02:00
24 lines
640 B
Plaintext
24 lines
640 B
Plaintext
From 83911edfeeffbf2ffeb5e02a8282c452859d53c8 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Schleifer <js@nil.im>
|
|
Date: Sat, 2 Nov 2024 23:17:28 +0000
|
|
Subject: Don't require ESOCKTNOSUPPORT
|
|
|
|
|
|
diff --git a/tests/OFUNIXSequencedPacketSocketTests.m b/tests/OFUNIXSequencedPacketSocketTests.m
|
|
index 60c815e..f99833b 100644
|
|
--- a/tests/OFUNIXSequencedPacketSocketTests.m
|
|
+++ b/tests/OFUNIXSequencedPacketSocketTests.m
|
|
@@ -61,7 +61,9 @@
|
|
case EAFNOSUPPORT:
|
|
case EPERM:
|
|
case EPROTONOSUPPORT:
|
|
+#ifdef ESOCKTNOSUPPORT
|
|
case ESOCKTNOSUPPORT:
|
|
+#endif
|
|
OTSkip(@"UNIX sequenced packet sockets unsupported");
|
|
default:
|
|
@throw e;
|
|
--
|
|
2.43.2
|
|
|