2010-06-22 19:46:28 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net>
|
2017-01-01 11:32:04 +01:00
|
|
|
# Copyright (C) 2008-2017 Sébastien Helleu <flashcode@flashtux.org>
|
2010-06-22 19:46:28 +02:00
|
|
|
#
|
|
|
|
# This file is part of WeeChat, the extensible chat client.
|
|
|
|
#
|
|
|
|
# WeeChat is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# WeeChat is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2008-10-18 13:54:59 +02:00
|
|
|
# - Find Tcl includes and libraries.
|
|
|
|
# This module finds if Tcl is installed and determines where the
|
|
|
|
# include files and libraries are. It also determines what the name of
|
|
|
|
# the library is. This code sets the following variables:
|
|
|
|
# TCL_FOUND = Tcl was found
|
|
|
|
# TK_FOUND = Tk was found
|
|
|
|
# TCLTK_FOUND = Tcl and Tk were found
|
|
|
|
# TCL_LIBRARY = path to Tcl library (tcl tcl80)
|
|
|
|
# TCL_INCLUDE_PATH = path to where tcl.h can be found
|
|
|
|
# TCL_TCLSH = path to tclsh binary (tcl tcl80)
|
|
|
|
# TK_LIBRARY = path to Tk library (tk tk80 etc)
|
|
|
|
# TK_INCLUDE_PATH = path to where tk.h can be found
|
|
|
|
# TK_WISH = full path to the wish executable
|
|
|
|
#
|
|
|
|
# In an effort to remove some clutter and clear up some issues for people
|
|
|
|
# who are not necessarily Tcl/Tk gurus/developpers, some variables were
|
|
|
|
# moved or removed. Changes compared to CMake 2.4 are:
|
|
|
|
# - The stub libraries are now found in FindTclStub.cmake
|
|
|
|
# => they were only useful for people writing Tcl/Tk extensions.
|
|
|
|
# - TCL_LIBRARY_DEBUG and TK_LIBRARY_DEBUG were removed.
|
2010-03-19 23:33:14 +01:00
|
|
|
# => these libs are not packaged by default with Tcl/Tk distributions.
|
2008-10-18 13:54:59 +02:00
|
|
|
# Even when Tcl/Tk is built from source, several flavors of debug libs
|
|
|
|
# are created and there is no real reason to pick a single one
|
2010-03-19 23:33:14 +01:00
|
|
|
# specifically (say, amongst tcl84g, tcl84gs, or tcl84sgx).
|
|
|
|
# Let's leave that choice to the user by allowing him to assign
|
2008-10-18 13:54:59 +02:00
|
|
|
# TCL_LIBRARY to any Tcl library, debug or not.
|
|
|
|
# - TK_INTERNAL_PATH was removed.
|
|
|
|
# => this ended up being only a Win32 variable, and there is a lot of
|
|
|
|
# confusion regarding the location of this file in an installed Tcl/Tk
|
|
|
|
# tree anyway (see 8.5 for example). If you need the internal path at
|
|
|
|
# this point it is safer you ask directly where the *source* tree is
|
|
|
|
# and dig from there.
|
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
if(TCL_FOUND)
|
|
|
|
set(TCL_FIND_QUIETLY TRUE)
|
|
|
|
endif()
|
2008-10-19 15:50:38 +02:00
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
include(CMakeFindFrameworks)
|
|
|
|
include(FindTclsh)
|
2008-10-18 13:54:59 +02:00
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
get_filename_component(TCL_TCLSH_PATH "${TCL_TCLSH}" PATH)
|
|
|
|
get_filename_component(TCL_TCLSH_PATH_PARENT "${TCL_TCLSH_PATH}" PATH)
|
|
|
|
string(REGEX REPLACE
|
2008-10-18 13:54:59 +02:00
|
|
|
"^.*tclsh([0-9]\\.*[0-9]).*$" "\\1" TCL_TCLSH_VERSION "${TCL_TCLSH}")
|
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
get_filename_component(TCL_INCLUDE_PATH_PARENT "${TCL_INCLUDE_PATH}" PATH)
|
2008-10-18 13:54:59 +02:00
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
get_filename_component(TCL_LIBRARY_PATH "${TCL_LIBRARY}" PATH)
|
|
|
|
get_filename_component(TCL_LIBRARY_PATH_PARENT "${TCL_LIBRARY_PATH}" PATH)
|
|
|
|
string(REGEX REPLACE
|
2008-10-18 13:54:59 +02:00
|
|
|
"^.*tcl([0-9]\\.*[0-9]).*$" "\\1" TCL_VERSION "${TCL_LIBRARY}")
|
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
set(TCL_POSSIBLE_LIB_PATHS
|
2008-10-18 13:54:59 +02:00
|
|
|
"${TCL_INCLUDE_PATH_PARENT}/lib"
|
2011-03-26 17:59:01 +01:00
|
|
|
"${TCL_INCLUDE_PATH_PARENT}/lib64"
|
2008-10-18 13:54:59 +02:00
|
|
|
"${TCL_LIBRARY_PATH}"
|
|
|
|
"${TCL_TCLSH_PATH_PARENT}/lib"
|
2011-03-26 17:59:01 +01:00
|
|
|
"${TCL_TCLSH_PATH_PARENT}/lib64"
|
2010-03-19 23:33:14 +01:00
|
|
|
/usr/lib
|
2011-03-26 17:59:01 +01:00
|
|
|
/usr/lib64
|
2008-10-18 13:54:59 +02:00
|
|
|
/usr/local/lib
|
2011-03-26 17:59:01 +01:00
|
|
|
/usr/local/lib64
|
2008-10-18 13:54:59 +02:00
|
|
|
)
|
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
if(WIN32)
|
|
|
|
get_filename_component(
|
2010-03-19 23:33:14 +01:00
|
|
|
ActiveTcl_CurrentVersion
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\ActiveState\\ActiveTcl;CurrentVersion]"
|
2008-10-18 13:54:59 +02:00
|
|
|
NAME)
|
2014-04-12 18:00:27 +02:00
|
|
|
set(TCLTK_POSSIBLE_LIB_PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
2008-10-18 13:54:59 +02:00
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\ActiveState\\ActiveTcl\\${ActiveTcl_CurrentVersion}]/lib"
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.6;Root]/lib"
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.5;Root]/lib"
|
|
|
|
"$ENV{ProgramFiles}/Tcl/Lib"
|
2010-03-19 23:33:14 +01:00
|
|
|
"C:/Program Files/Tcl/lib"
|
|
|
|
"C:/Tcl/lib"
|
2008-10-18 13:54:59 +02:00
|
|
|
)
|
2014-04-12 18:00:27 +02:00
|
|
|
endif()
|
2008-10-18 13:54:59 +02:00
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
find_library(TCL_LIBRARY
|
2010-03-19 23:33:14 +01:00
|
|
|
NAMES
|
|
|
|
tcl86 tcl8.6
|
|
|
|
tcl85 tcl8.5
|
2010-11-09 21:53:59 +01:00
|
|
|
tcl
|
|
|
|
tcl${TCL_VERSION} tcl${TCL_TCLSH_VERSION}
|
2008-10-18 13:54:59 +02:00
|
|
|
PATHS ${TCL_POSSIBLE_LIB_PATHS}
|
|
|
|
)
|
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
cmake_find_frameworks(Tcl)
|
2008-10-18 13:54:59 +02:00
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
set(TCL_FRAMEWORK_INCLUDES)
|
|
|
|
if(Tcl_FRAMEWORKS)
|
|
|
|
if(NOT TCL_INCLUDE_PATH)
|
|
|
|
foreach(dir ${Tcl_FRAMEWORKS})
|
|
|
|
set(TCL_FRAMEWORK_INCLUDES ${TCL_FRAMEWORK_INCLUDES} ${dir}/Headers)
|
|
|
|
endforeach(dir)
|
|
|
|
endif()
|
|
|
|
endif()
|
2008-10-18 13:54:59 +02:00
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
set(TCL_POSSIBLE_INCLUDE_PATHS
|
2008-10-18 13:54:59 +02:00
|
|
|
"${TCL_LIBRARY_PATH_PARENT}/include"
|
|
|
|
"${TCL_INCLUDE_PATH}"
|
2010-03-19 23:33:14 +01:00
|
|
|
${TCL_FRAMEWORK_INCLUDES}
|
2008-10-18 13:54:59 +02:00
|
|
|
"${TCL_TCLSH_PATH_PARENT}/include"
|
2010-11-09 21:53:59 +01:00
|
|
|
/usr/include/tcl8.6
|
|
|
|
/usr/include/tcl8.5
|
2008-10-18 13:54:59 +02:00
|
|
|
/usr/include
|
|
|
|
/usr/local/include
|
|
|
|
/usr/include/tcl${TCL_VERSION}
|
|
|
|
/usr/local/include/tcl${TCL_VERSION}
|
|
|
|
/usr/local/include/tcl8.6
|
|
|
|
/usr/local/include/tcl8.5
|
|
|
|
)
|
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
if(WIN32)
|
|
|
|
set(TCLTK_POSSIBLE_INCLUDE_PATHS ${TCLTK_POSSIBLE_INCLUDE_PATHS}
|
2008-10-18 13:54:59 +02:00
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\ActiveState\\ActiveTcl\\${ActiveTcl_CurrentVersion}]/include"
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.6;Root]/include"
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.5;Root]/include"
|
|
|
|
"$ENV{ProgramFiles}/Tcl/include"
|
|
|
|
"C:/Program Files/Tcl/include"
|
|
|
|
"C:/Tcl/include"
|
|
|
|
)
|
2014-04-12 18:00:27 +02:00
|
|
|
endif()
|
2008-10-18 13:54:59 +02:00
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
find_path(TCL_INCLUDE_PATH
|
2008-10-18 13:54:59 +02:00
|
|
|
NAMES tcl.h
|
|
|
|
PATHS ${TCL_POSSIBLE_INCLUDE_PATHS}
|
|
|
|
)
|
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
if(TCL_LIBRARY AND TCL_INCLUDE_PATH)
|
|
|
|
set(TCL_VERSION ${TCL_VERSION})
|
|
|
|
set(TCL_LIBARY ${TCL_LIBRARY})
|
|
|
|
set(TCL_INCLUDE_PATH ${TCL_INCLUDE_PATH})
|
|
|
|
set(TCL_FOUND TRUE)
|
|
|
|
endif()
|
2008-10-18 13:54:59 +02:00
|
|
|
|
2014-04-12 18:00:27 +02:00
|
|
|
mark_as_advanced(
|
2008-10-18 13:54:59 +02:00
|
|
|
TCL_INCLUDE_PATH
|
|
|
|
TCL_LIBRARY
|
|
|
|
TCL_VERSION
|
|
|
|
)
|