Remove information on building Python SSL module

Even old systems have this module these days, so these instructions
only serve to confuse people.
This commit is contained in:
Pierre Ossman 2019-06-24 15:32:21 +02:00
parent 60413587ac
commit 1f717e83af
1 changed files with 0 additions and 22 deletions

View File

@ -186,25 +186,3 @@ before running `python setup.py install`.
Afterwards, websockify should be available in your path. Run
`websockify --help` to confirm it's installed correctly.
### Building the Python ssl module (for python 2.5 and older)
* Install the build dependencies. On Ubuntu use this command:
`sudo aptitude install python-dev bluetooth-dev`
* At the top level of the websockify repostory, download, build and
symlink the ssl module:
`wget --no-check-certificate http://pypi.python.org/packages/source/s/ssl/ssl-1.15.tar.gz`
`tar xvzf ssl-1.15.tar.gz`
`cd ssl-1.15`
`make`
`cd ../`
`ln -sf ssl-1.15/build/lib.linux-*/ssl ssl`