Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,16 +1,16 @@
$NetBSD: patch-aa,v 1.5 2013/06/15 20:24:19 adam Exp $
$NetBSD: patch-aa,v 1.6 2016/05/09 11:07:51 adam Exp $
--- scapy/arch/__init__.py.orig 2010-08-10 23:09:39.000000000 +0000
--- scapy/arch/__init__.py.orig 2016-01-15 13:10:59.000000000 +0000
+++ scapy/arch/__init__.py
@@ -50,6 +50,7 @@ NETBSD = sys.platform.startswith("netbsd
@@ -50,6 +50,7 @@ NETBSD=sys.platform.startswith("netbsd")
DARWIN=sys.platform.startswith("darwin")
SOLARIS=sys.platform.startswith("sunos")
WINDOWS=sys.platform.startswith("win32")
+DRAGONFLY=sys.platform.startswith("dragonfly")
X86_64 = not WINDOWS and (os.uname()[4] == 'x86_64')
@@ -71,7 +72,7 @@ if LINUX:
ARM_64 = not WINDOWS and (os.uname()[4] == 'aarch64')
@@ -72,7 +73,7 @@ if LINUX:
from linux import *
if scapy.config.conf.use_pcap or scapy.config.conf.use_dnet:
from pcapdnet import *