mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 07:26:29 -04:00
Unfortunately, this new release breaks GSSAPI_NONE, which is removed for now. Bug has been reported upstream. Changelog: https://www.chiark.greenend.org.uk/~sgtatham/putty/changes.html MFH: 2019Q1 Security: 46e1ece5-48bd-11e9-9c40-080027ac955c
16 lines
355 B
C
16 lines
355 B
C
--- unix/uxnet.c.orig 2019-03-16 12:26:37 UTC
|
|
+++ unix/uxnet.c
|
|
@@ -11,8 +11,13 @@
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/ioctl.h>
|
|
+#ifdef __FreeBSD__
|
|
+#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
+#else
|
|
+#include <arpa/inet.h>
|
|
#include <netinet/in.h>
|
|
+#endif
|
|
#include <netinet/tcp.h>
|
|
#include <netdb.h>
|
|
#include <sys/un.h>
|