add openssl dependency to python
maybe this should be optional?
This commit is contained in:
parent
f5ca504a39
commit
4c14123e53
2 changed files with 3 additions and 1 deletions
|
@ -50,3 +50,5 @@ pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Mo
|
|||
|
||||
# Future (used by numpy)
|
||||
future_builtins future_builtins.c
|
||||
|
||||
_ssl _ssl.c -DUSE_SSL -lssl -lcrypto
|
||||
|
|
|
@ -7,7 +7,7 @@ import os
|
|||
class PythonRecipe(Recipe):
|
||||
version = "2.7.1"
|
||||
url = "https://www.python.org/ftp/python/{version}/Python-{version}.tar.bz2"
|
||||
depends = ["hostpython", "libffi", ]
|
||||
depends = ["hostpython", "libffi", "openssl"]
|
||||
library = "libpython2.7.a"
|
||||
pbx_libraries = ["libz", "libbz2", "libsqlite3"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue