[issue3467] sqlite3 path is hard coded in setup.py

2010-08-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: If anyone reopens this, change the version to the then current trunk version if 3.2 is already out. -- resolution: -> later status: open -> closed type: compile error -> feature request versions: +Python 3.2 -Python 2.5 __

[issue3467] sqlite3 path is hard coded in setup.py

2010-08-03 Thread Martin v . Löwis
Martin v. Löwis added the comment: Modules/Setup does not exist in the source repository, hence the link can't work (and never did). It's a file generated during the build. This is an instance of a repeated request where people want Python to find their libraries in all kinds of places, eithe

[issue3467] sqlite3 path is hard coded in setup.py

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Martin, should this be closed? fixed? won't fix? out-of-date? The link to Modules/Setup does not work for py3k branch. -- nosy: +tjreedy ___ Python tracker

[issue3467] sqlite3 path is hard coded in setup.py

2008-07-30 Thread Eric L. Frederich
Eric L. Frederich <[EMAIL PROTECTED]> added the comment: If we put the following one liner right after sqlite_inc_paths is defined it will add include directories based on the PATH environment variable. sqlite_inc_paths.extend([re.sub('/bin[/]?$', '/include', p) for p in os.environ.get('PATH', '

[issue3467] sqlite3 path is hard coded in setup.py

2008-07-29 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: User with non-standard search paths should edit Modules/Setup. -- nosy: +loewis ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3467] sqlite3 path is hard coded in setup.py

2008-07-29 Thread Eric L. Frederich
New submission from Eric L. Frederich <[EMAIL PROTECTED]>: In setup.py, the paths that it searches for sqlite in is hard coded in a list sqlite_inc_paths. This should also search any path in either $PATH or $LD_LIBRARY_PATH. This is necessary for non-default installations of sqlite for users wi