mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
21 lines
448 B
Plaintext
21 lines
448 B
Plaintext
$NetBSD: patch-ah,v 1.1.1.1 2011/12/02 05:40:00 agc Exp $
|
|
|
|
Get the right header files
|
|
|
|
--- rttsends.c 2011/11/30 21:11:57 1.1
|
|
+++ rttsends.c 2011/11/30 21:12:19
|
|
@@ -26,10 +26,10 @@
|
|
|
|
#include "rttmain.h"
|
|
#include <net/if.h>
|
|
-#ifdef _SUN
|
|
-#include <sys/sockio.h> /* define SIOCGIFADDR */
|
|
-#else
|
|
+#ifdef __linux__
|
|
#include <linux/sockios.h>
|
|
+#else
|
|
+#include <sys/sockio.h> /* define SIOCGIFADDR */
|
|
#endif
|
|
|
|
extern char * my_MCAST_ADDR;
|