python 2.5 support in cmake

2006-09-26 Thread Dirk Mueller
Hi, it seems cmake misses python 2.5 support - something like the patch below should do I guess.. can this be added to CMake? its not in 2.4 CVS branch so far. Thanks, Dirk --- Modules/FindPythonLibs.cmake +++ Modules/FindPythonLibs.cmake @@ -12,8 +12,10 @@ IF(WIN32) FIND_LIBRARY(PYTH

Re: python 2.5 support in cmake

2006-09-26 Thread Alexander Neundorf
Am Dienstag 26 September 2006 20:02 schrieb Dirk Mueller: > Hi, > > it seems cmake misses python 2.5 support - something like the patch below > should do I guess.. can this be added to CMake? its not in 2.4 CVS branch > so far. Sure, but not today :-) Kennedy's is already waiting... Alex

Re: python 2.5 support in cmake

2006-09-26 Thread Dirk Mueller
On Tuesday, 26. September 2006 20:02, Dirk Mueller wrote: > it seems cmake misses python 2.5 support - something like the patch below > should do I guess.. can this be added to CMake? its not in 2.4 CVS branch > so far. a bit more complete patch. --- Modules/FindPythonInterp.cmake +++ Modules/F

Re: python 2.5 support in cmake

2006-09-27 Thread Alexander Neundorf
Am Dienstag 26 September 2006 20:52 schrieb Dirk Mueller: > On Tuesday, 26. September 2006 20:02, Dirk Mueller wrote: > > it seems cmake misses python 2.5 support - something like the patch below > > should do I guess.. can this be added to CMake? its not in 2.4 CVS branch > > so far. > > a bit mor