[issue10520] Build with --enable-shared fails

2010-11-27 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: r86837 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue10520] Build with --enable-shared fails

2010-11-27 Thread Łukasz Langa
Łukasz Langa 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 tracker

[issue10520] Build with --enable-shared fails

2010-11-25 Thread Roumen Petrov
Roumen Petrov 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): dirlist.insert(i + 1, dir) -

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +benjamin.peterson, eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Barry A. Warsaw
Barry A. Warsaw 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 __

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: r86734 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Stefan Krah
Stefan Krah 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 Matthias Klose
Matthias Klose added the comment: -L. should appear before -L/usr/local/lib. -- nosy: +doko ___ Python tracker ___ ___ Python-bugs-li

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Barry A. Warsaw
Barry A. Warsaw 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 Barry A. Warsaw
Barry A. Warsaw 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 Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Stefan Krah
New submission from Stefan Krah : 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 build/temp.linux-x86_64-3.2/home/stefan/svn/py3k/Modules/_struct.o -L/usr/local/li

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: skrah priority: normal severity: normal status: open title: Build with --enable-shared fails ___ Python tracker ___