Skip to content
Snippets Groups Projects
Commit c47e4a44 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix hunspell linkage on linux

parent e7b4ab8d
No related branches found
No related tags found
No related merge requests found
...@@ -176,7 +176,6 @@ elseif(LINUX) ...@@ -176,7 +176,6 @@ elseif(LINUX)
libaprutil-1.so.0 libaprutil-1.so.0
${EXPAT_COPY} ${EXPAT_COPY}
libGLOD.so libGLOD.so
libhunspell-1.3.so.0.0.0
libopenal.so libopenal.so
libuuid.so.16 libuuid.so.16
libuuid.so.16.0.22 libuuid.so.16.0.22
......
...@@ -13,7 +13,7 @@ else (USESYSTEMLIBS) ...@@ -13,7 +13,7 @@ else (USESYSTEMLIBS)
elseif(DARWIN) elseif(DARWIN)
set(HUNSPELL_LIBRARY hunspell-1.3) set(HUNSPELL_LIBRARY hunspell-1.3)
elseif(LINUX) elseif(LINUX)
set(HUNSPELL_LIBRARY hunspell-1.3) set(HUNSPELL_LIBRARY hunspell-1.7)
else() else()
message(FATAL_ERROR "Invalid platform") message(FATAL_ERROR "Invalid platform")
endif() endif()
......
...@@ -1467,7 +1467,6 @@ def construct(self): ...@@ -1467,7 +1467,6 @@ def construct(self):
self.path("libuuid.so*") self.path("libuuid.so*")
self.path("libSDL2*.so*") self.path("libSDL2*.so*")
self.path("libopenjpeg.so*") self.path("libopenjpeg.so*")
self.path("libhunspell-1.3.so*")
self.path("libepoxy.so") self.path("libepoxy.so")
self.path("libepoxy.so.0") self.path("libepoxy.so.0")
self.path("libepoxy.so.0.0.0") self.path("libepoxy.so.0.0.0")
...@@ -1544,7 +1543,6 @@ def construct(self): ...@@ -1544,7 +1543,6 @@ def construct(self):
self.path("libuuid.so*") self.path("libuuid.so*")
self.path("libSDL2*.so*") self.path("libSDL2*.so*")
self.path("libopenjpeg.so*") self.path("libopenjpeg.so*")
self.path("libhunspell-1.3.so*")
self.path("libepoxy.so") self.path("libepoxy.so")
self.path("libepoxy.so.0") self.path("libepoxy.so.0")
self.path("libepoxy.so.0.0.0") self.path("libepoxy.so.0.0.0")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment