mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 15:50:33 -04:00
- Revert r326014 as nothing to substitute in pkg-message [1] - Clarify server works only on Linux [1] - Unbreak build on DragonFly [2] - Drop poorly maintained CLANG option [3] - Simplify patching via MAKE_ARGS - Respect LOCALBASE != PREFIX - Pet portlint (makepatch) - Clarify LICENSE PR: 195313 Reported by: DPorts [2] Requested by: many [3] Submitted by: vsityz@gmail.com (maintainer [1], based on) Reviewed by: marino [2] Approved by: maintainer timeout (~3 weeks)
14 lines
282 B
C
14 lines
282 B
C
--- src/tun_dev_freebsd.c.orig 2014-02-07 03:36:31 UTC
|
|
+++ src/tun_dev_freebsd.c
|
|
@@ -31,7 +31,11 @@
|
|
#include <errno.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
+#ifdef __DragonFly__
|
|
+#include <net/tun/if_tun.h>
|
|
+#else
|
|
#include <net/if_tun.h>
|
|
+#endif
|
|
|
|
/* #include "vtun.h"
|
|
#include "lib.h" */
|