|
|
|
@ -109,6 +109,7 @@ OPTION( WITH_XCOMPOSITE "Enable xcomposite support" ON )
|
|
|
|
|
OPTION( WITH_MITSHM "Use MIT-SHM for pixmap loading/saving" ${WITH_ALL_OPTIONS} )
|
|
|
|
|
OPTION( WITH_KDE4_MENU_SUFFIX "Add [KDE4] tag to KDE4 menu items" OFF )
|
|
|
|
|
|
|
|
|
|
OPTION( WITH_ISPELL "Enable ispell support" ON )
|
|
|
|
|
OPTION( WITH_ASPELL "Enable aspell support" ${WITH_ALL_OPTIONS} )
|
|
|
|
|
OPTION( WITH_HSPELL "Enable hspell support" ${WITH_ALL_OPTIONS} )
|
|
|
|
|
|
|
|
|
@ -1208,7 +1209,8 @@ endif( WITH_GAMIN )
|
|
|
|
|
|
|
|
|
|
##### check for ispell ##########################
|
|
|
|
|
|
|
|
|
|
if ( NOT ISPELL_LIBDIR )
|
|
|
|
|
if( WITH_ISPELL )
|
|
|
|
|
if( NOT ISPELL_LIBDIR )
|
|
|
|
|
find_program( ISPELL_EXECUTABLE NAMES ispell DOC "path to the ispell executable" )
|
|
|
|
|
if( ISPELL_EXECUTABLE )
|
|
|
|
|
execute_process (
|
|
|
|
@ -1222,7 +1224,9 @@ if ( NOT ISPELL_LIBDIR )
|
|
|
|
|
unset ( ISPELL_LIBDIR )
|
|
|
|
|
endif ( ISPELL_LIBDIR )
|
|
|
|
|
endif( ISPELL_EXECUTABLE )
|
|
|
|
|
endif ( NOT ISPELL_LIBDIR )
|
|
|
|
|
endif ( NOT ISPELL_LIBDIR )
|
|
|
|
|
endif( WITH_ISPELL )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##### check for aspell ##########################
|
|
|
|
|
|
|
|
|
|