Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #16797 > unrolled thread
| Started by | "B.A.S." <sturdyworks@yahoo.com> |
|---|---|
| First post | 2011-12-07 18:21 -0800 |
| Last post | 2011-12-07 18:21 -0800 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
How to get Python make to detect /usr/local/ssl "B.A.S." <sturdyworks@yahoo.com> - 2011-12-07 18:21 -0800
| From | "B.A.S." <sturdyworks@yahoo.com> |
|---|---|
| Date | 2011-12-07 18:21 -0800 |
| Subject | How to get Python make to detect /usr/local/ssl |
| Message-ID | <mailman.3389.1323310925.27778.python-list@python.org> |
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 top | Article view | comp.lang.python
csiph-web