diff options
author | louiz’ <louiz@louiz.org> | 2017-01-10 23:27:01 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-01-10 23:27:01 +0100 |
commit | 81b21bfc2660820d84040ecdd553b2e4a8ae3ea9 (patch) | |
tree | c42b61acc42cf6cf46ac3d2dc13657ea5dfcf799 | |
parent | 5e33b6184a842e2a2a7cff368c974edf496fb608 (diff) | |
download | biboumi-81b21bfc2660820d84040ecdd553b2e4a8ae3ea9.tar.gz biboumi-81b21bfc2660820d84040ecdd553b2e4a8ae3ea9.tar.bz2 biboumi-81b21bfc2660820d84040ecdd553b2e4a8ae3ea9.tar.xz biboumi-81b21bfc2660820d84040ecdd553b2e4a8ae3ea9.zip |
Update INSTALL.rst to talk about botan-2, and give priority to 2 over 1.11
-rw-r--r-- | INSTALL.rst | 3 | ||||
-rw-r--r-- | louloulibs/cmake/Modules/FindBOTAN.cmake | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/INSTALL.rst b/INSTALL.rst index 5016d5f..fa88ffb 100644 --- a/INSTALL.rst +++ b/INSTALL.rst @@ -41,10 +41,9 @@ udns_ (optional, but recommended) performances when connecting to a big number of IRC servers at the same time. -libbotan_ 1.11 (optional) +libbotan_ 1.11 or 2.0 (optional) Provides TLS support. Without it, IRC connections are all made in plain-text mode. - Other branches than the 1.11 are not supported. litesql_ (optional) Provides a way to store various options in a (sqlite3) database. Each user diff --git a/louloulibs/cmake/Modules/FindBOTAN.cmake b/louloulibs/cmake/Modules/FindBOTAN.cmake index 75f17dd..26069f4 100644 --- a/louloulibs/cmake/Modules/FindBOTAN.cmake +++ b/louloulibs/cmake/Modules/FindBOTAN.cmake @@ -16,10 +16,10 @@ # This file is in the public domain find_path(BOTAN_INCLUDE_DIRS NAMES botan/botan.h - PATH_SUFFIXES botan-1.11 botan-2 + PATH_SUFFIXES botan-2 botan-1.11 DOC "The botan include directory") -find_library(BOTAN_LIBRARIES NAMES botan botan-1.11 botan-2 +find_library(BOTAN_LIBRARIES NAMES botan botan-2 botan-1.11 DOC "The botan library") # Use some standard module to handle the QUIETLY and REQUIRED arguments, and |