Skip to content

Commit

Permalink
Current version of Psi+ is 1.2.57
Browse files Browse the repository at this point in the history
It is based on:
* psi: 4f2147b4
* patches: 6120428
* plugins: 845bcbc
* resources: b261bbc
  • Loading branch information
tehnick committed Sep 8, 2017
1 parent 87ee92f commit 9c8dedb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion src/libpsi/tools/CMakeLists.txt
Expand Up @@ -145,7 +145,16 @@ endif()

# spellchecker
if(USE_ENCHANT)
add_definitions(-DHAVE_ENCHANT)
if(Enchant_VERSION)
if(${Enchant_VERSION} VERSION_LESS "2.0")
add_definitions(-DHAVE_ENCHANT)
else()
add_definitions(-DHAVE_ENCHANT2)
endif()
message(STATUS "Enchant version - ${Enchant_VERSION}")
else()
add_definitions(-DHAVE_ENCHANT)
endif()

include_directories(
${Enchant_INCLUDE_DIR}
Expand Down
2 changes: 1 addition & 1 deletion version
@@ -1 +1 @@
1.2.56 (2017-09-09, Psi:41fbc7f0, Psi+:6120428)
1.2.57 (2017-09-09, Psi:4f2147b4, Psi+:6120428)

0 comments on commit 9c8dedb

Please sign in to comment.