Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.052 X-Spam-Evidence: '*H*': 0.90; '*S*': 0.01; 'socket': 0.04; 'subject:Python': 0.05; 'brad': 0.07; 'sqlite': 0.07; 'python': 0.08; '_socket': 0.16; '_ssl': 0.16; 'possibly': 0.19; 'helper': 0.23; 'module': 0.26; 'tried': 0.27; 'developers': 0.32; 'me?': 0.32; 'comment': 0.32; 'there': 0.33; 'to:addr:python-list': 0.34; 'ssl': 0.34; 'subject:/': 0.35; 'subject:How': 0.35; 'install': 0.35; 'uses': 0.36; 'charset:us-ascii': 0.37; 'help': 0.39; 'to:addr:python.org': 0.40; 'below': 0.63; '------': 0.68; 'skip:2 20': 0.71; 'subject:make': 0.73; 'received:98.139.44': 0.84; 'received:access.bullet.mail.sp2.yahoo.com': 0.84; 'subject:local': 0.84; 'variable:': 0.84 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 605445.41140.bm@omp1003.access.mail.sp2.yahoo.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1323310915; bh=/Ve1Mhg2MF0EeURAUIBTd9IWM+ztaqoe+Zq6fWQ6mRs=; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Subject:To:MIME-Version:Content-Type; b=vJijNNN6rPRoXQrCUs0L8qxOBZ5khwnVdpxJAfEEjzd6THC+9AsmjTXB8l3iLRmdAco84nXDsX9CPaEf2Br+Ti5wVhsleqgzlEU6DUSWOWt5ir0s+AWfMDqN/geHhlZKVuSRhj+Um/Vt1MbuiliHyqTAKOPjLG8L1aAnh92QaIA= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Subject:To:MIME-Version:Content-Type; b=lc097KwM4IYfPG2lxGKkPRtYheP52UW/ltch9Kkrd+bENwPLAyEIJr+Nis1yUcPj5iwzGJfDRWldX94dXoIv9utXvbQDIo332YQnZVq6RRZKh8vGis5PGABIQwcZTgL/Fc8uiXR84Vv6D2Mu5gRkF9PlMXLFFSYy9pUz25QSHfY=; X-YMail-OSG: d6tNiJYVM1kU8W5a9tAsnmacZMrl86G2pmNKRz4diFva7Vi 2ZJc13ijTMTIq23S0WX4fGa8yc4M_Fuv4Z6tbNWim_5yfHF8zUoPPcm2Sw2T vAojcMwzW6aFaYjFDOqsiXQXrIILcKBIwASaNNPrt.U1sjSJPIb1ZnqFtWzv DSeEDkNfewJWoUwIES0kCzkUw88lPQKw1pUW2hKtxPy1vuYImqqJ6Oo6BQTj QLxdtOj4_JHuJQafKJ6SbSGOGti8qIHEtakPmseGxAqRcZ3s132qEFexvz7A .vR7rFW53rh0dm23rely2OmsZKO6_AjaIPd.vTCuFD49pbohPp0XqMlgtk0H _XFloZ1VEZZL09Lfn1ePhZhbikl2oBK48JVTzo1sAbrWZVe9Ebbk3S1TE8I5 Ld90qxBbA0.g1QbFElP8_imdVvqe6..QQw3qhBji3rM6cG9UsYZvdym1CqZY S8yA- X-Mailer: YahooMailClassic/15.0.4 YahooMailWebService/0.8.115.331698 Date: Wed, 7 Dec 2011 18:21:54 -0800 (PST) From: "B.A.S." Subject: How to get Python make to detect /usr/local/ssl To: python-list@python.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1323310925 news.xs4all.nl 6941 [2001:888:2000:d::a6]:49955 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:16797 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