aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadpilot <madpilot@FreeBSD.org>2013-04-17 02:12:02 +0800
committermadpilot <madpilot@FreeBSD.org>2013-04-17 02:12:02 +0800
commitd3b1989763b07c28fcf0b10e1e166846455808e4 (patch)
tree9f05eea1e3d9f80df92041ebd1ddeb02400af855
parentde212bd8128ceea6257376f817e4a90462e9240d (diff)
downloadfreebsd-ports-gnome-d3b1989763b07c28fcf0b10e1e166846455808e4.tar.gz
freebsd-ports-gnome-d3b1989763b07c28fcf0b10e1e166846455808e4.tar.zst
freebsd-ports-gnome-d3b1989763b07c28fcf0b10e1e166846455808e4.zip
- Fix runtime problem on CURRENT after r248534
Reviewed by: jilles Feature safe: yes
-rw-r--r--comms/openobex/files/patch-lib_cloexec.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/comms/openobex/files/patch-lib_cloexec.h b/comms/openobex/files/patch-lib_cloexec.h
new file mode 100644
index 000000000000..23625cd0bfcf
--- /dev/null
+++ b/comms/openobex/files/patch-lib_cloexec.h
@@ -0,0 +1,19 @@
+--- lib/cloexec.h.orig 2012-03-26 20:25:19.000000000 +0200
++++ lib/cloexec.h 2013-04-11 16:12:55.161482749 +0200
+@@ -22,6 +22,7 @@
+ #ifndef _WIN32
+ #include <sys/types.h>
+ #include <sys/socket.h>
++#include <sys/param.h>
+ #include <fcntl.h>
+ static __inline void fcntl_cloexec(socket_t fd)
+ {
+@@ -55,7 +56,7 @@
+ static __inline socket_t accept_cloexec(socket_t sockfd, struct sockaddr *addr,
+ socklen_t *addrlen)
+ {
+-#ifdef SOCK_CLOEXEC
++#if defined(SOCK_CLOEXEC) && !defined(__FreeBSD__)
+ return accept4(sockfd, addr, addrlen, SOCK_CLOEXEC);
+ #else
+ socket_t fd = accept(sockfd, addr, addrlen);