83 lines
2.4 KiB
CMake
83 lines
2.4 KiB
CMake
# Copyright (c) 2003-2008 FlashCode <flashcode@flashtux.org>
|
|
#
|
|
# This program 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.
|
|
#
|
|
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
# - Find Perl libraries
|
|
# This module finds if Perl 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:
|
|
#
|
|
# PERL_EXECUTABLE = full path to the perl binary
|
|
# PERL_INCLUDE_PATH = path to where perl.h can be found
|
|
# PERL_LIBRARY = path to where libperl.so* can be found
|
|
# PERL_CFLAGS = perl compiler options for compiling
|
|
# PERL_LFLAGS = perl compiler options for linking
|
|
|
|
IF(PERL_FOUND)
|
|
# Already in cache, be silent
|
|
SET(PERL_FIND_QUIETLY TRUE)
|
|
ENDIF(PERL_FOUND)
|
|
|
|
FIND_PROGRAM(PERL_EXECUTABLE
|
|
NAMES perl perl5
|
|
PATHS /usr/bin /usr/local/bin /usr/pkg/bin
|
|
)
|
|
|
|
IF(PERL_EXECUTABLE)
|
|
|
|
EXECUTE_PROCESS(
|
|
COMMAND ${PERL_EXECUTABLE} -MConfig -e "print \"\$Config{archlibexp}/CORE\""
|
|
OUTPUT_VARIABLE PERL_INTERNAL_DIR
|
|
)
|
|
|
|
EXECUTE_PROCESS(
|
|
COMMAND ${PERL_EXECUTABLE} -MExtUtils::Embed -e ccopts
|
|
OUTPUT_VARIABLE PERL_CFLAGS
|
|
)
|
|
|
|
EXECUTE_PROCESS(
|
|
COMMAND ${PERL_EXECUTABLE} -MExtUtils::Embed -e ldopts
|
|
OUTPUT_VARIABLE PERL_LFLAGS
|
|
)
|
|
|
|
# remove the new lines from the output by replacing them with empty strings
|
|
STRING(REPLACE "\n" "" PERL_INTERNAL_DIR "${PERL_INTERNAL_DIR}")
|
|
STRING(REPLACE "\n" "" PERL_CFLAGS "${PERL_CFLAGS}")
|
|
STRING(REPLACE "\n" "" PERL_LFLAGS "${PERL_LFLAGS}")
|
|
|
|
FIND_PATH(PERL_INCLUDE_PATH
|
|
NAMES perl.h
|
|
PATHS ${PERL_INTERNAL_DIR}
|
|
)
|
|
|
|
FIND_LIBRARY(PERL_LIBRARY
|
|
NAMES perl
|
|
PATHS /usr/lib /usr/local/lib /usr/pkg/lib ${PERL_INTERNAL_DIR}
|
|
)
|
|
|
|
IF(PERL_LIBRARY AND PERL_INCLUDE_PATH)
|
|
SET(PERL_FOUND TRUE)
|
|
ENDIF(PERL_LIBRARY AND PERL_INCLUDE_PATH)
|
|
|
|
MARK_AS_ADVANCED(
|
|
PERL_EXECUTABLE
|
|
PERL_INCLUDE_PATH
|
|
PERL_LIBRARY
|
|
PERL_CFLAGS
|
|
PERL_LFLAGS
|
|
)
|
|
ENDIF(PERL_EXECUTABLE)
|
|
|