mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 05:19:16 -04:00
- Make dependency on devel/ncurses optional [1] - Fix SASL option and its description - Add secondary master site Requested by: Peter Jeremy <peter@rulingia.com> [1] Approved by: flo (mentor)
21 lines
596 B
Text
21 lines
596 B
Text
--- cmake/FindPython.cmake.orig 2012-08-11 14:06:55.086663842 +0100
|
|
+++ cmake/FindPython.cmake 2012-08-11 14:23:55.301504695 +0100
|
|
@@ -34,8 +34,7 @@
|
|
ENDIF(PYTHON_FOUND)
|
|
|
|
FIND_PROGRAM(PYTHON_EXECUTABLE
|
|
- NAMES python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python
|
|
- PATHS /usr/bin /usr/local/bin /usr/pkg/bin
|
|
+ NAMES ${BSD_PYTHON_CMD}
|
|
)
|
|
|
|
IF(PYTHON_EXECUTABLE)
|
|
@@ -65,7 +64,7 @@
|
|
)
|
|
|
|
FIND_LIBRARY(PYTHON_LIBRARY
|
|
- NAMES python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python
|
|
+ NAMES ${BSD_PYTHON_VER}
|
|
PATHS ${PYTHON_POSSIBLE_LIB_PATH}
|
|
)
|
|
|