1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Fix build on 9 and 10.

PR:		ports/163341
Submitted by:	Jan Beich <jbeich@tormail.net>
This commit is contained in:
Wesley Shields 2011-12-18 19:44:58 +00:00
parent cc664e12ee
commit b351d3e4a7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=287614

View File

@ -1,11 +1,11 @@
--- setup.py.orig 2005-10-16 19:07:03.000000000 -0400
+++ setup.py 2010-01-27 22:53:23.749001522 -0500
--- ./setup.py.orig 2005-10-16 19:07:03.000000000 -0400
+++ ./setup.py 2011-12-18 14:32:02.170660843 -0500
@@ -25,7 +25,10 @@
d = {}
if os.path.exists(os.path.join(cfg['include_dirs'][0], 'pcap-int.h')):
d['HAVE_PCAP_INT_H'] = 1
- buf = open(os.path.join(cfg['include_dirs'][0], 'pcap.h')).read()
+ if os.uname()[2][0] >= '8':
+ if int(os.uname()[2].split('.')[0]) >= 8:
+ buf = open(os.path.join(cfg['include_dirs'][1], 'pcap.h')).read()
+ else:
+ buf = open(os.path.join(cfg['include_dirs'][0], 'pcap.h')).read()