1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
# $Id: setup.py 41 2008-10-24 18:51:34Z aweil $
from distutils.core import setup, Extension
import sys, os
PACKAGE_NAME = 'pcapy'
# You might want to change these to reflect your specific configuration
include_dirs = []
library_dirs = []
libraries = []
if sys.platform =='win32':
# WinPcap include files
include_dirs.append(r'c:\devel\oss\wpdpack\Include')
# WinPcap library files
library_dirs.append(r'c:\devel\oss\wpdpack\Lib')
libraries = ['wpcap', 'packet', 'ws2_32']
else:
libraries = ['pcap']
# end of user configurable parameters
macros = []
sources = ['pcapdumper.cc',
'bpfobj.cc',
'pcapy.cc',
'pcapobj.cc',
'pcap_pkthdr.cc',
]
if sys.platform == 'win32':
sources.append(os.path.join('win32', 'dllmain.cc'))
macros.append(('WIN32', '1'))
# HACK replace linker gcc with g++
from distutils import sysconfig
save_init_posix = sysconfig._init_posix
def my_init_posix():
save_init_posix()
g = sysconfig._config_vars
if g['LDSHARED'][:3]=='gcc':
print 'my_init_posix: changing LDSHARED =',`g['LDSHARED']`,
g['LDSHARED'] = 'g++'+g['LDSHARED'][3:]
print 'to',`g['LDSHARED']`
sysconfig._init_posix = my_init_posix
setup(name = PACKAGE_NAME,
version = "0.10.6",
url = "http://oss.coresecurity.com/projects/pcapy.html",
author = "Maximiliano Caceres",
author_email = "oss@coresecurity.com",
maintainer = "Core Security Technologies",
maintainer_email = "oss@coresecurity.com",
description = "Python pcap extension",
ext_modules = [Extension(
name = PACKAGE_NAME,
sources = sources,
define_macros = macros,
include_dirs = include_dirs,
library_dirs = library_dirs,
libraries = libraries)],
)
|