Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #16797
| Date | 2011-12-07 18:21 -0800 |
|---|---|
| From | "B.A.S." <sturdyworks@yahoo.com> |
| Subject | How to get Python make to detect /usr/local/ssl |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3389.1323310925.27778.python-list@python.org> (permalink) |
Any Python developers out there that help me?
I would like to configure/make Python so it uses my local OpenSSL-1.0.0e install in /usr/local/ssl.
I have tried uncommenting the promising section of
./Python 2.7.2/Modules/Setup.dist below without success.
How to do it! Would like to upgrade SQLite as well...
------ snip of Setup.dist ------------
# Socket module helper for socket(2)
_socket socketmodule.c
# Socket module helper for SSL support; you must comment out the other
# socket line above, and possibly edit the SSL variable:
SSL=/usr/local/ssl
_ssl _ssl.c \
-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
-L$(SSL)/lib -lssl -lcrypto
Brad
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
How to get Python make to detect /usr/local/ssl "B.A.S." <sturdyworks@yahoo.com> - 2011-12-07 18:21 -0800
csiph-web