From d9922c0cf642da50794c3d23b61dcdd49684af8e Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Thu, 12 Sep 2013 17:01:59 +0200 Subject: Migrated from libnl-1 to libnl-3 This ports the current functionality from libnl-1 to libnl-3.0. At the current stage, it should be functional but more patches cleaning up the code will come. Signed-off-by: David Sommerseth --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 99dc718..6bf992d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup, Extension import commands import sys -version = '0.8' +version = '0.9' def pkgconfig(pkg): def _str2list(pkgstr, onlystr): @@ -43,7 +43,8 @@ def pkgconfig(pkg): } -libnl = pkgconfig('libnl-1') +libnl = pkgconfig('libnl-3.0') +libnl['libs'].append('nl-route-3') # don't reformat this line, Makefile parses it setup(name='ethtool', -- cgit