[issue10520] Build with --enable-shared fails

2010-11-27 Thread Łukasz Langa
Łukasz Langa luk...@langa.pl added the comment: Roumen's patch fixes a regression where readline extension would fail to build on Mac OS X 10.6.5. -- nosy: +lukasz.langa resolution: fixed - stage: - commit review status: closed - open ___ Python

[issue10520] Build with --enable-shared fails

2010-11-27 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: r86837 -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10520 ___

[issue10520] Build with --enable-shared fails

2010-11-25 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: It is wort to fix regression if all directories are absolute. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -54,7 +54,8 @@ for i, path in enumerate(dirlist): if not os.path.isabs(path):

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: skrah priority: normal severity: normal status: open title: Build with --enable-shared fails ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10520

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Stefan Krah
New submission from Stefan Krah stefan-use...@bytereef.org: Building the modules fails if --enable-shared is used. The linker picks up an existing library from /usr/local/lib, which has not been compiled with -fPIC: gcc -pthread -shared

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +barry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10520 ___ ___ Python-bugs-list mailing

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: So, you must have done a 'make install' or 'make altinstall' to get a build into /usr/local, right? Without that of course it works fine. You're probably still right about changing the order so it picks up the local copy first. --

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: I'm bumping the status down since this likely won't affect the average user, only developers who do their own source installs. -- assignee: - barry priority: critical - high ___ Python tracker

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Matthias Klose
Matthias Klose d...@debian.org added the comment: -L. should appear before -L/usr/local/lib. -- nosy: +doko ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10520 ___

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Since I'm on Linux, I did a prior install into /usr/local. But I'm pretty sure that BSD ports (which you might view as the system install) also use /usr/local. -- ___ Python tracker

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: r86734 -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10520 ___

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: BTW, I am not sure it's worth backporting this to 3.1 and 2.7. It seems like a corner case that will not affect most users. -- ___ Python tracker rep...@bugs.python.org

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +benjamin.peterson, eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10520 ___ ___