You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
From: Kai Wasserbäch <debian@carbon-project.org>
|
|
Description: FindTCL.cmake switches variables in the FIND_LIBRARY invocation.
|
|
The FIND_LIBRARY() statement for TCL used the TK variables and vice versa.
|
|
This patch reverses that into the right usage. (Closes: #600245)
|
|
Last-Update: 2010-11-27
|
|
Origin: vendor
|
|
Forwarded: http://cmake.org/Bug/view.php?id=11528
|
|
Applied-Upstream: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d95913e2
|
|
---
|
|
Modules/FindTCL.cmake | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/Modules/FindTCL.cmake
|
|
+++ b/Modules/FindTCL.cmake
|
|
@@ -104,7 +104,7 @@ ENDIF(WIN32)
|
|
FIND_LIBRARY(TCL_LIBRARY
|
|
NAMES
|
|
tcl
|
|
- tcl${TK_LIBRARY_VERSION} tcl${TCL_TCLSH_VERSION} tcl${TK_WISH_VERSION}
|
|
+ tcl${TCL_LIBRARY_VERSION} tcl${TCL_TCLSH_VERSION} tcl${TK_WISH_VERSION}
|
|
tcl86 tcl8.6
|
|
tcl85 tcl8.5
|
|
tcl84 tcl8.4
|
|
@@ -117,7 +117,7 @@ FIND_LIBRARY(TCL_LIBRARY
|
|
FIND_LIBRARY(TK_LIBRARY
|
|
NAMES
|
|
tk
|
|
- tk${TCL_LIBRARY_VERSION} tk${TCL_TCLSH_VERSION} tk${TK_WISH_VERSION}
|
|
+ tk${TK_LIBRARY_VERSION} tk${TCL_TCLSH_VERSION} tk${TK_WISH_VERSION}
|
|
tk86 tk8.6
|
|
tk85 tk8.5
|
|
tk84 tk8.4
|