objfw: Update to 1.2

This commit is contained in:
Jonathan Schleifer
2024-11-03 00:23:48 +01:00
parent cda048e3b1
commit 54fdde81be
2 changed files with 43 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
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