[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> out of date status: open -> closed superseder: -> Provide configure option --with-ssl for compilation with custom openssl ___ Python tracker ___

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2014-05-20 Thread Pavel Machyniak
Pavel Machyniak added the comment: Unfortunately this patch will not work if there is other (system) openssl installed in the default locations (`/usr/include`, `/usr/lib`) because this patch only add another path at the end of the search list. Instead of this I will make a ticket for providi

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2013-01-07 Thread Isaac (.ike) Levy
Changes by Isaac (.ike) Levy : -- nosy: +ikeaxial ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2011-06-16 Thread Collin Winter
Collin Winter added the comment: I don't know that the variables are Python-specific. We used these variables to build various Python modules statically against the versions of openssl and sqlite maintained in Google's internal third-party repository. -- assignee: collinwinter -> __

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2011-06-14 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo versions: +Python 3.3 -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2010-04-24 Thread Sean Reifschneider
Sean Reifschneider added the comment: Collin: Antoine has asked for some feedback, can you answer that question? -- assignee: -> collinwinter nosy: +jafo priority: -> normal ___ Python tracker ___

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2009-04-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Are these environment variables Python-specific? -- nosy: +pitrou ___ Python tracker ___ ___ Python-

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2009-04-20 Thread Ilya Sandler
Ilya Sandler added the comment: I think this would be useful for anyone who builds cpython on a non-mainstream platform. I know this would have been useful for me when I tried to build cpython on an older linux distro where libs were installed in a non-std location. -- nosy: +isandler

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2009-03-26 Thread Collin Winter
New submission from Collin Winter : This patch adds SSL_ROOT, SQLITE_INC and SQLITE_LIB environment variables used to inject additional libraries/headers for building the sqlite, hashlib and ssl modules. We've found this very useful for building these modules against their dependencies statically