mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
6ce9858a52
Oops, forgot the new patches.
20 lines
656 B
Plaintext
20 lines
656 B
Plaintext
*** src/gated/task.h.orig Sun May 14 14:58:18 2000
|
|
--- src/gated/task.h Sun May 14 14:59:44 2000
|
|
***************
|
|
*** 321,327 ****
|
|
extern size_t task_recv_buffer_len;
|
|
|
|
|
|
! #if defined(SUNOS5_0) || !defined(HAVE_CMSG_SPACE)
|
|
#ifndef CMSG_ALIGN
|
|
#define CMSG_ALIGN(n) (((n) + 3) & ~3)
|
|
#define CMSG_SPACE(l) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(l))
|
|
--- 321,327 ----
|
|
extern size_t task_recv_buffer_len;
|
|
|
|
|
|
! #if (defined(SUNOS5_0) || !defined(HAVE_CMSG_SPACE)) && !defined(__FreeBSD__)
|
|
#ifndef CMSG_ALIGN
|
|
#define CMSG_ALIGN(n) (((n) + 3) & ~3)
|
|
#define CMSG_SPACE(l) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(l))
|