[issue4010] configure options don't trickle down to distutils

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If y

[issue4010] configure options don't trickle down to distutils

2013-02-01 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue4010] configure options don't trickle down to distutils

2012-02-10 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue4010] configure options don't trickle down to distutils

2010-11-17 Thread Brett Cannon
Brett Cannon added the comment: On Wed, Nov 17, 2010 at 17:19, Éric Araujo wrote: > > Éric Araujo added the comment: > > I don’t think there can be a unit test for that, so do we agree on just > removing the reversed call? As long as the person removing it verifies it and keeps an eye on the

[issue4010] configure options don't trickle down to distutils

2010-11-17 Thread Éric Araujo
Éric Araujo added the comment: I don’t think there can be a unit test for that, so do we agree on just removing the reversed call? -- ___ Python tracker ___

[issue4010] configure options don't trickle down to distutils

2010-11-17 Thread Brett Cannon
Brett Cannon added the comment: When I did the patch they were coming in reversed, so I reversed the reversal. Obviously something changed so now the manual reversal is not necessary anymore. -- ___ Python tracker

[issue4010] configure options don't trickle down to distutils

2010-11-17 Thread Éric Araujo
Changes by Éric Araujo : -- keywords: -easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue4010] configure options don't trickle down to distutils

2010-11-17 Thread Éric Araujo
Éric Araujo added the comment: The reversed call was added by Brett in r60537. Brett, can you comment? -- nosy: +brett.cannon ___ Python tracker ___

[issue4010] configure options don't trickle down to distutils

2010-07-31 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok stage: -> patch review type: compile error -> behavior versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker

[issue4010] configure options don't trickle down to distutils

2010-05-20 Thread Skip Montanaro
Changes by Skip Montanaro : -- nosy: -skip.montanaro ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue4010] configure options don't trickle down to distutils

2009-08-21 Thread John P. Speno
John P. Speno added the comment: Furthermore, there's another bug in setup.py When extensions are built and CPPFLAGS (or other arguments) has multiple arguments, the order of the arguments are reversed. This is the wrong behavior. The specified directories should be used in the given order.

[issue4010] configure options don't trickle down to distutils

2009-08-21 Thread John P. Speno
John P. Speno added the comment: Hi. We encountered this issue on a Solaris 10 while building python 2.6.2. There's a problem with reptrov's patch from 2009-01-04. The LDFLAGS in the Makefile.pre.in patch need to be quoted also. Like so: LDFLAGS='$(LDFLAGS)' This allows for multiple flags. O

[issue4010] configure options don't trickle down to distutils

2009-02-28 Thread Akira Kitada
Akira Kitada added the comment: Updated issue4010 to honor os.environ['CPPFLAGS']. Added file: http://bugs.python.org/file13212/issue4010.diff ___ Python tracker ___

[issue4010] configure options don't trickle down to distutils

2009-02-28 Thread Akira Kitada
Changes by Akira Kitada : Removed file: http://bugs.python.org/file12954/issue4010.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue4010] configure options don't trickle down to distutils

2009-02-06 Thread Akira Kitada
Akira Kitada added the comment: s/get_config_vars/get_config_var/ -- versions: +Python 3.1 Added file: http://bugs.python.org/file12954/issue4010.diff ___ Python tracker ___

[issue4010] configure options don't trickle down to distutils

2009-02-06 Thread Akira Kitada
Changes by Akira Kitada : Removed file: http://bugs.python.org/file12868/issue4010.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue4010] configure options don't trickle down to distutils

2009-01-26 Thread Tarek Ziadé
Changes by Tarek Ziadé : -- assignee: -> tarek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue4010] configure options don't trickle down to distutils

2009-01-26 Thread Akira Kitada
Akira Kitada added the comment: Attached patch changes distutils to pass CPPFLAGS to compiler. -- nosy: +tarek Added file: http://bugs.python.org/file12868/issue4010.diff ___ Python tracker

[issue4010] configure options don't trickle down to distutils

2009-01-04 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file12583/py-issue-4010.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue4010] configure options don't trickle down to distutils

2009-01-04 Thread Roumen Petrov
Roumen Petrov added the comment: correct patch uploaded Added file: http://bugs.python.org/file12585/py-issue-4010.patch ___ Python tracker ___ __

[issue4010] configure options don't trickle down to distutils

2009-01-04 Thread Roumen Petrov
Roumen Petrov added the comment: May I propose a patch. The patch is only for linker flags(LDFLAGS). If is accepted I will prepare another one for compiler flags. The patch is not minimal. It is mostly cleanup patch. For minimal patch - only change in Makefile.pre.in is enough. Cleanup patch re

[issue4010] configure options don't trickle down to distutils

2008-12-20 Thread Martin v. Löwis
Changes by Martin v. Löwis : -- versions: -Python 2.5.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue4010] configure options don't trickle down to distutils

2008-12-11 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue4010] configure options don't trickle down to distutils

2008-12-11 Thread Akira Kitada
Akira Kitada added the comment: Is there anyone knowing the historical reason for this? In that case I will take this and submit a patch here soon. -- versions: +Python 2.5.3, Python 2.7 ___ Python tracker

[issue4010] configure options don't trickle down to distutils

2008-11-27 Thread Akira Kitada
Akira Kitada <[EMAIL PROTECTED]> added the comment: I'm having similar problem with distutils. http://mail.python.org/pipermail/python-dev/2008-November/083670.html Is there any reason customize_compiler - only get CPPFLAGS in env, not ones from sysconfig? - doesn't get OPT from from sysconfig,

[issue4010] configure options don't trickle down to distutils

2008-10-10 Thread Roumen Petrov
Roumen Petrov <[EMAIL PROTECTED]> added the comment: I don't have rights to derive a new issue. May be a new new title about distutils and makefile integration is more appropriate. ___ Python tracker <[EMAIL PROTECTED]> _

[issue4010] configure options don't trickle down to distutils

2008-10-06 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: I checked in r66823 to add the -R flag extraction like Brett's -L extraction. I'll leave the issue open while folks discuss Roumen's proposal. I have no particular desire to delve deeper into distutils.

[issue4010] configure options don't trickle down to distutils

2008-10-05 Thread Roumen Petrov
Roumen Petrov <[EMAIL PROTECTED]> added the comment: Lets see method customize_compiler(from sysconfig.py) The method search variables 'CPP', 'LDFLAGS' and 'CPPFLAGS' only in environment. The variable CPP is not a Makefile variable. 'LDFLAGS' and 'CPPFLAGS' are makefile variables(macros). Usuall

[issue4010] configure options don't trickle down to distutils

2008-10-02 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: On Thu, Oct 2, 2008 at 1:57 PM, Roumen Petrov <[EMAIL PROTECTED]> wrote: > > Roumen Petrov <[EMAIL PROTECTED]> added the comment: > > One of the problems that I see in that LDFLAGS is Makefile variable and > Makefile is part of distribution for

[issue4010] configure options don't trickle down to distutils

2008-10-02 Thread Roumen Petrov
Roumen Petrov <[EMAIL PROTECTED]> added the comment: One of the problems that I see in that LDFLAGS is Makefile variable and Makefile is part of distribution for posix build systems. If you set specific LDFLAGS and you want to distribute own python build user will get you specific settings. One a

[issue4010] configure options don't trickle down to distutils

2008-10-01 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: Seems to work for framework builds as well. ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue4010] configure options don't trickle down to distutils

2008-10-01 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: Confirmed that nothing seems broken on my OS X 10.5 laptop (doing a unix-style build, not a framework build). ___ Python tracker <[EMAIL PROTECTED]> __

[issue4010] configure options don't trickle down to distutils

2008-10-01 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: Here's a patch. Works for me on Solaris 10. I'll try to check it out on OS X 10.5. Would appreciate it if someone on Linux can kick the tires too. -- keywords: +easy, patch Added file: http://bugs.python.org/file11675/runtime.diff

[issue4010] configure options don't trickle down to distutils

2008-10-01 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: Brett> Well, all of my modules are in a non-standard location and I have Brett> no build issues on OS X 10.5. If you look at Brett> PyBuildExt.detect_modules() you will see that the paths are at Brett> least added for the search pa

[issue4010] configure options don't trickle down to distutils

2008-10-01 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: Well, all of my modules are in a non-standard location and I have no build issues on OS X 10.5. If you look at PyBuildExt.detect_modules() you will see that the paths are at least added for the search path from LDFLAGS and CPPFLAGS. --

[issue4010] configure options don't trickle down to distutils

2008-10-01 Thread Skip Montanaro
New submission from Skip Montanaro <[EMAIL PROTECTED]>: If you are fortunate enough to have all your third-party libraries in a single quasi-standard location, say, /usr/local/lib, you will probably have never encountered this problem, but setting environment variables like LDFLAGS don't get tran