chiark / gitweb /
tuntap: Use <net/if.h> not <linux/if.h>. Closes:#768766. (FTBFS)
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 9 Nov 2014 12:24:23 +0000 (12:24 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 9 Nov 2014 12:24:23 +0000 (12:24 +0000)
debian/changelog
tuntap/chiark_tcl_tuntap.h

index 92284f3e03528698bc048837f6a47f02cea81060..b0b4e5e149accae561ee4f83abe8c4aa893b50cf 100644 (file)
@@ -1,5 +1,6 @@
 chiark-tcl (1.1.2~) unstable; urgency=low
 
+  * tuntap: Use <net/if.h> not <linux/if.h>.  Closes:#768766.  (FTBFS)
   * Reintroduce .gitignore which a build tool brokenly deleted.
   * Remove .cvsignore files from git repo.
 
index 30a3f16aef35c49707530aa3f970255e91f1413b..6698c9a7045048280e3caaa501786f49efd9770c 100644 (file)
@@ -22,7 +22,8 @@
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/ioctl.h>
-#include <linux/if.h>
+
+#include <net/if.h>
 #include <linux/if_tun.h>
 
 #include "hbytes.h"