P1sec / pysctp

SCTP stack for Python
http://www.p1sec.com
165 stars 67 forks source link

The Makefile must be manually edited with the current python version number #6

Closed jeffsilverm closed 11 years ago

jeffsilverm commented 13 years ago

The Makefile has a variable, PYTHON_VERSION, which must be edited to be the version number of python on this system. It should be documented in the README that you have to do that before you can install pysctp.

This is a consequence of python's "scorched earth" policy concerning backwards compatibility.

philpraxis commented 11 years ago

fixed with now:

CFLAGS = -Wall `python-config --cflags` -fPIC
LDFLAGS = `python-config --ldflags` -fPIC -shared -lsctp

in commit:

commit a22627aabc33455d26a238811cca981c0f3e7adb Author: p1sec p1sec@vm-pta-dev.(none) Date: Sat Dec 1 19:45:48 2012 +0100

Modification for correct way to build with python-dev