opnsense-ports/multimedia/py-kaa-base/files/patch-base-src-process.py
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

11 lines
527 B
Python

--- src/process.py.orig 2009-05-25 16:47:25.000000000 -0400
+++ src/process.py 2009-05-29 13:38:51.000000000 -0400
@@ -75,7 +75,7 @@
try:
# Python 2.5
import ctypes
- ctypes.CDLL("libc.so.6").siginterrupt(signal.SIGCHLD, 0)
+ ctypes.CDLL("libc.so").siginterrupt(signal.SIGCHLD, 0)
except (ImportError, OSError):
# Python 2.4- is not supported.
raise SystemError('kaa.base requires Python 2.5 or later')