Re: [Python-Dev] Evaluated cmake as an autoconf replacement

2009-03-30 Thread Alexander Neundorf
Hi, On Mon, Mar 30, 2009 at 1:22 AM, Christian Heimes wrote: > Jeffrey Yasskin wrote: > >> 1. It can autogenerate the Visual Studio project files instead of >> needing them to be maintained separately > > I'm familiar with the Unix and the Windows build system. More than a > year ago I went to

Re: [Python-Dev] Evaluated cmake as an autoconf replacement

2009-03-30 Thread Alexander Neundorf
On Mon, Mar 30, 2009 at 12:09 AM, Neil Hodgson wrote: ... > while so I can't remember the details. The current Python project > files are hierarchical, building several DLLs and an EXE and I think > this was outside the scope of the tools I looked at. Not sure I understand. Having a project which

Re: [Python-Dev] Evaluated cmake as an autoconf replacement

2009-03-30 Thread Alexander Neundorf
On Mon, Mar 30, 2009 at 8:04 PM, David Cournapeau wrote: > On Tue, Mar 31, 2009 at 2:37 AM, Alexander Neundorf > wrote: ... >> Not sure I understand. >> Having a project which builds (shared) libraries and executables which >> use them (and which maybe have to be exec

Re: [Python-Dev] Evaluated cmake as an autoconf replacement

2009-03-30 Thread Alexander Neundorf
On Mon, Mar 30, 2009 at 8:49 PM, Christian Heimes wrote: > David Cournapeau wrote: >> On Tue, Mar 31, 2009 at 3:16 AM, Alexander Neundorf >> wrote: >>> Can you please explain ? What is "those" ? >> >> Everything in Lib. On windows, I believe this is

Re: [Python-Dev] Evaluated cmake as an autoconf replacement

2009-04-07 Thread Alexander Neundorf
On Tue, Apr 7, 2009 at 2:14 PM, wrote: > >Ondrej> ... while scons and other Python solutions imho encourage to >Ondrej> write full Python programs, which imho is a disadvantage for the >Ondrej> build system, as then every build system is nonstandard. I fully agree here. > Hmmm... L

Re: [Python-Dev] Evaluated cmake as an autoconf replacement

2009-04-07 Thread Alexander Neundorf
On Tue, Apr 7, 2009 at 3:23 PM, David Cournapeau wrote: > On Tue, Apr 7, 2009 at 10:08 PM, Alexander Neundorf > wrote: > >> >> What is involved in building python extensions ? Can you please explain ? > > Not much: at the core, a python extension is nothing more

Re: [Python-Dev] Evaluated cmake as an autoconf replacement

2009-04-07 Thread Alexander Neundorf
On Wed, Apr 8, 2009 at 12:43 AM, Greg Ewing wrote: > David Cournapeau wrote: >> >> Having a full >> fledged language for complex builds is nice, I think most familiar >> with complex makefiles would agree with this. > > Yes, people will still need general computation in their > build process from

Re: [Python-Dev] Evaluated cmake as an autoconf replacement

2009-04-08 Thread Alexander Neundorf
On Wed, Apr 8, 2009 at 4:18 AM, David Cournapeau wrote: ... >> I guess something similar could be useful for Python, maybe this is >> what distutils actually do ? > > distutils does roughly everything that autotools does, and more: > - configuration: not often used in extensions, we (numpy) are t

[Python-Dev] [PATCH] fixing 2.5.1 build with unicode and dynamic loading disabled

2007-07-11 Thread Alexander Neundorf
Hi, this is my first email to this list, I'm currently porting python to some platforms with limited capabilities and so I thought it would be a good idea to subscribe here. While doing the porting, I found two small problems in Python 2.5.1: If Py_USING_UNICODE is disabled, in Python/ast.c dec

Re: [Python-Dev] [PATCH] fixing 2.5.1 build with unicode and dynamic loading disabled

2007-07-11 Thread Alexander Neundorf
On Wednesday 11 July 2007 15:01, Aahz wrote: > On Wed, Jul 11, 2007, Alexander Neundorf wrote: > > A patch against 2.5.1 is attached. > > Patches to the list tend to get lost. Please post to SourceForge and > then send the ID to python-dev. Done, i

[Python-Dev] Building Python with CMake

2007-07-13 Thread Alexander Neundorf
Hi, as I wrote in my previous email, I'm currently porting Python to some more unusual platforms, namely to a super computer (http://www.research.ibm.com/bluegene/) and a tiny embedded operating system (http://ecos.sourceware.org), which have more or less surprisingly quite similar properties.

Re: [Python-Dev] Building Python with CMake

2007-07-13 Thread Alexander Neundorf
On Friday 13 July 2007 14:53, you wrote: > 2007/7/13, Alexander Neundorf <[EMAIL PROTECTED]>: > > as I wrote in my previous email, I'm currently porting Python to some > > more unusual platforms, namely to a super computer > > (http://www.research.ibm.com/bluegene

Re: [Python-Dev] Building Python with CMake

2007-08-03 Thread Alexander Neundorf
On Friday 13 July 2007 16:11, Giovanni Bajo wrote: ... > Because it would be a single unified build system instead of having two > build systems like we have one (UNIX and Windows). > > Also, it would be much easier to maintain because Visual Studio projects > are generated from a simple descriptio

[Python-Dev] HAVE_DECL_TZNAME in pyconfig.h.in, but no test for it ?

2007-08-30 Thread Alexander Neundorf
Hi, in current python svn there is a #undef HAVE_DECL_TZNAME but I can't find a configure test for it. Did I miss something ? Bye Alex ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: ht

Re: [Python-Dev] Building Python with CMake

2007-08-30 Thread Alexander Neundorf
On Friday 13 July 2007 16:11, Giovanni Bajo wrote: > On 13/07/2007 20.53, Facundo Batista wrote: > >> as I wrote in my previous email, I'm currently porting Python to some > >> more unusual platforms, namely to a super computer > >> (http://www.research.ibm.com/bluegene/) and a tiny embedded operat

Re: [Python-Dev] Building Python with CMake

2007-09-20 Thread Alexander Neundorf
Hi, On Thursday 30 August 2007 16:28, Alexander Neundorf wrote: ... > The cmake files for building python are now in a cvs repository: > http://www.cmake.org/cgi-bin/viewcvs.cgi/Utilities/CMakeBuildForPython/?roo >t=ParaView3 > > This is inside the ParaView3 repository: > http:

Re: [Python-Dev] Building Python with CMake

2007-09-20 Thread Alexander Neundorf
On Thursday 20 September 2007 16:58, Steven Bethard wrote: > On 9/20/07, Alexander Neundorf <[EMAIL PROTECTED]> wrote: > > On Thursday 30 August 2007 16:28, Alexander Neundorf wrote: > > ... > > > > > The cmake files for building python are now in a cvs reposi

Re: [Python-Dev] Python on ThreadX

2008-04-02 Thread Alexander Neundorf
On Wed, Apr 2, 2008 at 10:12 PM, Pree Raj <[EMAIL PROTECTED]> wrote: > Hi, > I have an application that used python on linux. > I want to port it to run on ThreadX. > Can you tell me if this can be possible. > If yes, how can I get started. I managed to get Python to work under eCos, which is also