mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
- make a symbol new in FreeBSD 13 optional - mark a union as packed that will require unaligned access - define TEST_TARGET Approved by: portmgr (build fix blanket) MFH: 2023Q4
11 lines
265 B
C
11 lines
265 B
C
--- tcp_options.h.orig 2023-10-07 04:31:15 UTC
|
|
+++ tcp_options.h
|
|
@@ -166,7 +166,7 @@ struct tcp_option {
|
|
struct {
|
|
u8 data[MAX_TCP_OPTION_DATA_BYTES];
|
|
} generic;
|
|
- };
|
|
+ } __packed;
|
|
u32 flags; /* meta information, not going on the wire */
|
|
} __packed;
|
|
|