summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2019-06-24 15:32:21 +0200
committerPierre Ossman <ossman@cendio.se>2019-06-24 15:32:21 +0200
commit1f717e83afe656a234d2bbea76a31b0f96030d24 (patch)
tree4c923c048dbd5b774abf0f281c4e86d79dffd69a /README.md
parent60413587ac0692e0a27242f26ed2d6689e965b83 (diff)
downloadwebsockify-1f717e83afe656a234d2bbea76a31b0f96030d24.tar.gz
Remove information on building Python SSL module
Even old systems have this module these days, so these instructions only serve to confuse people.
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/README.md b/README.md
index 5a3a30f..9d24ef7 100644
--- a/README.md
+++ b/README.md
@@ -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`