commit | 91b71d701f7b1b56d7e25a7d21a351e104abfb8f | [log] [tgz] |
---|---|---|
author | neuralassembly <neuralassembly@gmail.com> | Wed Mar 29 17:25:14 2017 +0900 |
committer | neuralassembly <neuralassembly@gmail.com> | Wed Mar 29 17:25:14 2017 +0900 |
tree | 16b0b2742ff2982ffd739f0d2d22d5d3fb44f96d | |
parent | 321ca837fd62fb2feff87cefebc2b37acf41810c [diff] [blame] |
Add fix for kernel 4.9.
diff --git a/setup.py b/setup.py index 0189589..9e40f3e 100755 --- a/setup.py +++ b/setup.py
@@ -12,12 +12,13 @@ _wiringpi = Extension( '_wiringpi', include_dirs=['WiringPi/wiringPi','WiringPi/devLib'], - sources=sources + sources=sources, + extra_link_args=['-lcrypt', '-lrt'] ) setup( name = 'wiringpi', - version = '2.32.1', + version = '2.44', author = "Philip Howard", author_email = "phil@gadgetoid.com", url = 'https://github.com/WiringPi/WiringPi-Python/',