From: Kornel Benko Date: Tue, 16 Mar 2010 07:37:22 +0000 (+0000) Subject: Find hunspell on 64-bit OpenSuSE 11 too X-Git-Tag: 2.0.0~3792 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a97b5c423b7570cfd64235d015eeca3437b2323b;p=features.git Find hunspell on 64-bit OpenSuSE 11 too git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33760 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/cmake/CMakeLists.txt b/development/cmake/CMakeLists.txt index ccf25da503..b55d9f2e75 100644 --- a/development/cmake/CMakeLists.txt +++ b/development/cmake/CMakeLists.txt @@ -208,7 +208,7 @@ if(WIN32) find_library(HUNSPELL_LIBRARY "libhunspell") else() #find_library(HUNSPELL_LIBRARY NAME "hunspell" PATH "/usr/local/lib" "/usr/lib" NO_DEFAULT_PATH) - find_library(HUNSPELL_LIBRARY "hunspell" "/usr/local/lib" "/usr/lib") + find_library(HUNSPELL_LIBRARY NAMES "hunspell" "hunspell-1.2" PATHS "/usr/local/lib" "/usr/lib" "/usr/lib64") endif() if (HUNSPELL_LIBRARY) find_file(HUNSPELL_FOUND "hunspell/hunspell.hxx")