2010-11-30 10:08:30 +00:00
|
|
|
# Find Subversion client libraries, and dependencies
|
|
|
|
# including APR (Apache Portable Runtime)
|
|
|
|
|
2011-01-09 00:15:29 +00:00
|
|
|
include (CheckFunctionExists)
|
|
|
|
include (CheckIncludeFile)
|
2011-09-12 09:08:02 +00:00
|
|
|
include (CheckLibraryExists)
|
2011-01-09 00:15:29 +00:00
|
|
|
|
2011-09-12 10:14:08 +00:00
|
|
|
macro(find_static_component comp libs)
|
|
|
|
# account for alternative Windows svn distribution naming
|
|
|
|
if(MSVC)
|
|
|
|
set(compLib "lib${comp}")
|
|
|
|
else(MSVC)
|
|
|
|
set(compLib "${comp}")
|
|
|
|
endif(MSVC)
|
|
|
|
|
|
|
|
string(TOUPPER "${comp}" compLibBase)
|
|
|
|
set( compLibName ${compLibBase}_LIBRARY )
|
|
|
|
|
2012-08-11 14:23:17 +00:00
|
|
|
# NO_DEFAULT_PATH is important on Mac - we need to ensure subversion
|
|
|
|
# libraires in dist/ or Macports are picked over the Apple version
|
|
|
|
# in /usr, since that's what we will ship.
|
2011-09-12 10:14:08 +00:00
|
|
|
FIND_LIBRARY(${compLibName}
|
2012-08-11 14:23:17 +00:00
|
|
|
NO_DEFAULT_PATH
|
2011-09-12 10:14:08 +00:00
|
|
|
NAMES ${compLib}
|
2012-08-11 14:23:17 +00:00
|
|
|
HINTS $ENV{LIBSVN_DIR} ${CMAKE_INSTALL_PREFIX}
|
2011-09-12 10:14:08 +00:00
|
|
|
PATH_SUFFIXES lib64 lib libs64 libs libs/Win32 libs/Win64
|
|
|
|
PATHS
|
2012-08-11 14:23:17 +00:00
|
|
|
/opt/local
|
2011-09-12 10:14:08 +00:00
|
|
|
/usr/local
|
|
|
|
/usr
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND ${libs} ${${compLibName}})
|
|
|
|
endmacro()
|
|
|
|
|
2011-01-09 00:15:29 +00:00
|
|
|
find_program(HAVE_APR_CONFIG apr-1-config)
|
|
|
|
if(HAVE_APR_CONFIG)
|
|
|
|
|
2011-01-19 12:14:59 +00:00
|
|
|
execute_process(COMMAND apr-1-config --cppflags --includes
|
2011-01-09 00:15:29 +00:00
|
|
|
OUTPUT_VARIABLE APR_CFLAGS
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
|
|
|
|
execute_process(COMMAND apr-1-config --link-ld
|
|
|
|
OUTPUT_VARIABLE RAW_APR_LIBS
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
|
|
|
|
# clean up some vars, or other CMake pieces complain
|
2011-09-11 10:42:59 +00:00
|
|
|
string(STRIP "${RAW_APR_LIBS}" APR_LIBS)
|
2011-01-09 00:15:29 +00:00
|
|
|
|
|
|
|
else(HAVE_APR_CONFIG)
|
|
|
|
message(STATUS "apr-1-config not found, implement manual search for APR")
|
|
|
|
endif(HAVE_APR_CONFIG)
|
|
|
|
|
2011-09-12 09:08:02 +00:00
|
|
|
if(HAVE_APR_CONFIG OR MSVC)
|
2011-08-04 16:59:46 +00:00
|
|
|
find_path(LIBSVN_INCLUDE_DIR svn_client.h
|
2012-08-11 14:23:17 +00:00
|
|
|
NO_DEFAULT_PATH
|
2011-08-04 16:59:46 +00:00
|
|
|
HINTS
|
2012-08-11 14:23:17 +00:00
|
|
|
$ENV{LIBSVN_DIR} ${CMAKE_INSTALL_PREFIX}
|
2011-08-04 16:59:46 +00:00
|
|
|
PATH_SUFFIXES include/subversion-1
|
|
|
|
PATHS
|
2012-08-11 14:23:17 +00:00
|
|
|
/opt/local
|
2011-08-04 16:59:46 +00:00
|
|
|
/usr/local
|
|
|
|
/usr
|
|
|
|
)
|
2011-09-12 10:14:08 +00:00
|
|
|
|
|
|
|
set(LIBSVN_LIBRARIES "")
|
2011-09-12 09:08:02 +00:00
|
|
|
if (MSVC)
|
2011-09-12 10:14:08 +00:00
|
|
|
find_static_component("apr-1" LIBSVN_LIBRARIES)
|
2011-09-12 09:08:02 +00:00
|
|
|
else (MSVC)
|
2011-09-12 10:20:22 +00:00
|
|
|
list(APPEND LIBSVN_LIBRARIES ${APR_LIBS})
|
2011-09-12 09:08:02 +00:00
|
|
|
endif (MSVC)
|
2011-09-12 10:14:08 +00:00
|
|
|
find_static_component("svn_client-1" LIBSVN_LIBRARIES)
|
|
|
|
find_static_component("svn_subr-1" LIBSVN_LIBRARIES)
|
|
|
|
find_static_component("svn_ra-1" LIBSVN_LIBRARIES)
|
2011-01-09 00:15:29 +00:00
|
|
|
|
2011-08-04 16:59:46 +00:00
|
|
|
include(FindPackageHandleStandardArgs)
|
2011-09-12 10:14:08 +00:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBSVN DEFAULT_MSG LIBSVN_LIBRARIES LIBSVN_INCLUDE_DIR)
|
2012-08-11 14:23:17 +00:00
|
|
|
if(NOT LIBSVN_FOUND)
|
2011-09-14 07:57:57 +00:00
|
|
|
set(LIBSVN_LIBRARIES "")
|
2012-08-11 14:23:17 +00:00
|
|
|
endif(NOT LIBSVN_FOUND)
|
2011-09-12 09:08:02 +00:00
|
|
|
endif(HAVE_APR_CONFIG OR MSVC)
|