[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Ned Deily
Ned Deily added the comment: Good! Yes, that should go into the devguide. Unfortunately, it only works with 3.7+, so the CFLAGS/LDFLAGS stuff is still needed for 3.6- and 2.7. -- ___ Python tracker ___

[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Yury Selivanov
Yury Selivanov added the comment: OK, so the trick is to first install pkg-config: sudo port install pkgconfig ./configure make python -m ssl # works I'll close the PR then, but we need to document this trick with pkg-config somewhere. -- ___

[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Yury Selivanov
Yury Selivanov added the comment: > The good news is that, since Christian's recent enhancements in Issue32598 to > have autoconf use pkg-config to detect OpenSSL header and lib files, > configure will now automatically find the MacPorts OpenSSL as long as the > MacPorts bin directory (typica

[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Ned Deily
Ned Deily added the comment: The good news is that, since Christian's recent enhancements in Issue32598 to have autoconf use pkg-config to detect OpenSSL header and lib files, configure will now automatically find the MacPorts OpenSSL as long as the MacPorts bin directory (typically /opt/loca

[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Christian Heimes
Change by Christian Heimes : -- assignee: -> christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +5223 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Yury Selivanov
New submission from Yury Selivanov : Not sure if we should do it or not: 1. MacPorts maintainers will create a port file for Python 3.7 and they will just configure it with `configure --with-openssl=$PREFIX", where PREFIX is /opt/local by default. 2. This, however, would certainly improve the

[issue32694] macos/configure: Discover OpenSSL when installed with MacPorts

2018-01-28 Thread Yury Selivanov
Change by Yury Selivanov : -- components: Cross-Build nosy: Alex.Willmer, christian.heimes, ned.deily, yselivanov priority: normal severity: normal status: open title: macos/configure: Discover OpenSSL when installed with MacPorts type: enhancement versions: Python 3.7 _