mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 09:00:33 -04:00
- Old VirtualBox OSE 5.2.44 preserved as "-legacy" versions of the ports (repocopied) - Add back extra patch removed in r528258, actually required to build DEBUG kmod - Correctly define WITH_DEBUG when enabling the DEBUG option, so binaries are not stripped Please note that this new version supports only amd64 CPUs. If you need to use older hardware please install the legacy ports. Note that moving VM snapshots across major updates is unsupported, it's strongly suggested to properly shutdown VMs before upgrading, please check UPDATING for further details. This update is the result of work from many people, and thanks to all who gave feedback and tested things. Patch based on work from: Mario Lobo <lobo@bsd.com.br> and jkim. PR: 234878 Submitted by: kunda <chitty_cloud@me.com> Approved by: vbox (implicit) Reviewed by: decke Tested by: jwb, martin ilavsky <ilavsky.martin@gmail.com>, Mario Lobo <lobo@bsd.com.br> Relnotes: https://www.virtualbox.org/wiki/Changelog-6.1 Differential Revision: https://reviews.freebsd.org/D28871
12 lines
602 B
C
12 lines
602 B
C
--- src/VBox/Devices/Network/slirp/bsd/sys/mbuf.h.orig 2020-05-13 19:42:23 UTC
|
|
+++ src/VBox/Devices/Network/slirp/bsd/sys/mbuf.h
|
|
@@ -245,6 +245,9 @@ struct mbuf {
|
|
#define M_FRAG 0x00000800 /* packet is a fragment of a larger packet */
|
|
#define M_FIRSTFRAG 0x00001000 /* packet is first fragment */
|
|
#define M_LASTFRAG 0x00002000 /* packet is last fragment */
|
|
+#ifdef M_SKIP_FIREWALL
|
|
+#undef M_SKIP_FIREWALL
|
|
+#endif
|
|
#define M_SKIP_FIREWALL 0x00004000 /* skip firewall processing */
|
|
#define M_FREELIST 0x00008000 /* mbuf is on the free list */
|
|
#define M_VLANTAG 0x00010000 /* ether_vtag is valid */
|