diff options
author | David Seikel | 2011-03-02 23:22:54 +1000 |
---|---|---|
committer | David Seikel | 2011-03-02 23:22:54 +1000 |
commit | 1c78e0d301ae23398f4c1572ce493cf7bc950ef5 (patch) | |
tree | 32b3db8c47fb17ffac80121a3e1bf841a08d2ce6 /linden | |
parent | We don't care if LL changes their protocol, and one less thing to need the 'n... (diff) | |
download | meta-impy-1c78e0d301ae23398f4c1572ce493cf7bc950ef5.zip meta-impy-1c78e0d301ae23398f4c1572ce493cf7bc950ef5.tar.gz meta-impy-1c78e0d301ae23398f4c1572ce493cf7bc950ef5.tar.bz2 meta-impy-1c78e0d301ae23398f4c1572ce493cf7bc950ef5.tar.xz |
Look for more versions of python. Isn't pythen wonderful like that? Noooot!
Diffstat (limited to 'linden')
-rw-r--r-- | linden/indra/cmake/Python.cmake | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/linden/indra/cmake/Python.cmake b/linden/indra/cmake/Python.cmake index e4257f4..6cdd559 100644 --- a/linden/indra/cmake/Python.cmake +++ b/linden/indra/cmake/Python.cmake | |||
@@ -6,15 +6,15 @@ if (WINDOWS) | |||
6 | # On Windows, explicitly avoid Cygwin Python. | 6 | # On Windows, explicitly avoid Cygwin Python. |
7 | 7 | ||
8 | find_program(PYTHON_EXECUTABLE | 8 | find_program(PYTHON_EXECUTABLE |
9 | NAMES python25.exe python23.exe python.exe | 9 | NAMES python27.exe python26.exe python25.exe python24.exe python23.exe python.exe |
10 | NO_DEFAULT_PATH # added so that cmake does not find cygwin python | 10 | NO_DEFAULT_PATH # added so that cmake does not find cygwin python |
11 | PATHS | 11 | PATHS |
12 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.7\\InstallPath] | 12 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.7\\InstallPath] |
13 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.6\\InstallPath] | 13 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.6\\InstallPath] |
14 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.5\\InstallPath] | 14 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.5\\InstallPath] |
15 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.4\\InstallPath] | 15 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.4\\InstallPath] |
16 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.3\\InstallPath] | 16 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.3\\InstallPath] |
17 | [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\2.7\\InstallPath] | 17 | [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\2.7\\InstallPath] |
18 | [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\2.6\\InstallPath] | 18 | [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\2.6\\InstallPath] |
19 | [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\2.5\\InstallPath] | 19 | [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\2.5\\InstallPath] |
20 | [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\2.4\\InstallPath] | 20 | [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\2.4\\InstallPath] |
@@ -23,7 +23,7 @@ if (WINDOWS) | |||
23 | elseif (EXISTS /etc/debian_version) | 23 | elseif (EXISTS /etc/debian_version) |
24 | # On Debian and Ubuntu, avoid Python 2.4 if possible. | 24 | # On Debian and Ubuntu, avoid Python 2.4 if possible. |
25 | 25 | ||
26 | find_program(PYTHON_EXECUTABLE python2.5 python2.3 python PATHS /usr/bin) | 26 | find_program(PYTHON_EXECUTABLE python2.7 python2.6 python2.5 python2.3 python PATHS /usr/bin) |
27 | 27 | ||
28 | if (PYTHON_EXECUTABLE) | 28 | if (PYTHON_EXECUTABLE) |
29 | set(PYTHONINTERP_FOUND ON) | 29 | set(PYTHONINTERP_FOUND ON) |
@@ -33,7 +33,7 @@ elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") | |||
33 | 33 | ||
34 | string(REPLACE ":" ";" PATH_LIST "$ENV{PATH}") | 34 | string(REPLACE ":" ";" PATH_LIST "$ENV{PATH}") |
35 | find_program(PYTHON_EXECUTABLE | 35 | find_program(PYTHON_EXECUTABLE |
36 | NAMES python python25 python24 python23 | 36 | NAMES python python27 python26 python25 python24 python23 |
37 | NO_DEFAULT_PATH # Avoid searching non-standard locations first | 37 | NO_DEFAULT_PATH # Avoid searching non-standard locations first |
38 | PATHS | 38 | PATHS |
39 | /bin | 39 | /bin |
@@ -54,3 +54,4 @@ if (NOT PYTHON_EXECUTABLE) | |||
54 | endif (NOT PYTHON_EXECUTABLE) | 54 | endif (NOT PYTHON_EXECUTABLE) |
55 | 55 | ||
56 | mark_as_advanced(PYTHON_EXECUTABLE) | 56 | mark_as_advanced(PYTHON_EXECUTABLE) |
57 | |||