This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author barry
Recipients Alex.Willmer, barry, christian.heimes, ned.deily, yselivanov
Date 2018-01-30.02:06:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1517278019.03.0.467229070634.issue32694@psf.upfronthosting.co.za>
In-reply-to
Content
Can we also cover Brew?

Here's the dumb little configure wrapper I use:

```
#!/bin/sh

export CPPFLAGS="-I$(brew --prefix sqlite3)/include -I$(brew --prefix zlib)/include"
export LDFLAGS="-L$(brew --prefix sqlite3)/lib -L$(brew --prefix zlib)/lib"
export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig"

./configure
```
History
Date User Action Args
2018-01-30 02:06:59barrysetrecipients: + barry, christian.heimes, ned.deily, yselivanov, Alex.Willmer
2018-01-30 02:06:59barrysetmessageid: <1517278019.03.0.467229070634.issue32694@psf.upfronthosting.co.za>
2018-01-30 02:06:59barrylinkissue32694 messages
2018-01-30 02:06:58barrycreate