1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/comms/usbmuxd/files/patch-src_client.c
Jason E. Hale 70540a8b17 comms/libimobiledevice: Update to 1.3.0
comms/libusbmuxd: Update to 2.0.2
comms/usbmuxd: Update to 1.1.1
devel/libplist: Update to 2.2.0

Resurrect comms/py-libimobiledevice, update to 1.3.0
Resurrect devel/py-libplist, update to 2.2.0

Take maintainership of the ports listed above.

Bump PORTREVISION on consumers and adjust LIB_DEPENDS to new versioned library
names.
2021-01-21 14:37:31 +00:00

14 lines
392 B
C

client.c:210:18: error: use of undeclared identifier 'IPPROTO_TCP'
setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY, (void*)&yes, sizeof(int));
--- src/client.c.orig 2020-06-09 16:20:07 UTC
+++ src/client.c
@@ -31,6 +31,7 @@
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
+#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/un.h>
#include <arpa/inet.h>