Port ASPELL_DATADIR detection to CMake

Signed-off-by: OBATA Akio <obache@wizdas.com>
(cherry picked from commit ba75e441ea)
v3.5.13-sru
OBATA Akio 4 years ago committed by Slávek Banko
parent 0aa014e9d2
commit 431ab46758
Signed by: SlavekB
GPG Key ID: 608F5293A04BE668

@ -1093,14 +1093,26 @@ if ( NOT ISPELL_LIBDIR )
endif ( NOT ISPELL_LIBDIR )
##### check for aspell ##########################
# we need ASPELL_DATADIR too
if( WITH_ASPELL )
find_package( ASPELL )
if( NOT ASPELL_FOUND )
message(FATAL_ERROR "\nASPELL support are requested, but not found on your system" )
endif( NOT ASPELL_FOUND )
if( NOT ASPELL_DATADIR )
find_program( PSPELL_CONFIG_EXECUTABLE NAMES pspell-config DOC "path to the pspell-config executable" )
if( PSPELL_CONFIG_EXECUTABLE )
execute_process (
COMMAND ${PSPELL_CONFIG_EXECUTABLE} --pkgdatadir
OUTPUT_VARIABLE ASPELL_DATADIR
OUTPUT_STRIP_TRAILING_WHITESPACE)
endif( PSPELL_CONFIG_EXECUTABLE )
endif( NOT ASPELL_DATADIR )
endif( WITH_ASPELL )
if( NOT ASPELL_DATADIR )
set ( ASPELL_DATADIR "/usr/lib/aspell" )
endif( NOT ASPELL_DATADIR )
set ( ASPELL_DATADIR "${ASPELL_DATADIR}" CACHE PATH "aspell data directory" )
##### check for hspell ##########################

Loading…
Cancel
Save