diff options
author | lloyd <[email protected]> | 2015-02-06 04:01:31 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-02-06 04:01:31 +0000 |
commit | 9693089c88a1d7731c0633c7c0517cf4f9c28ae2 (patch) | |
tree | 6c72671da882b28d824babe655929a41d2f764f0 /src/lib | |
parent | f41ae8e3119fa5647f142dc2a806799cdafa21d4 (diff) |
Mark modules pulling in external deps (zlib, boost, etc) as such, and
notify the user when they are enabled.
Drop botan-config, replaced by `botan config` command added in 1.11.8
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/compression/bzip2/info.txt | 2 | ||||
-rw-r--r-- | src/lib/compression/lzma/info.txt | 2 | ||||
-rw-r--r-- | src/lib/compression/zlib/info.txt | 2 | ||||
-rw-r--r-- | src/lib/vendor/boost/info.txt | 4 | ||||
-rw-r--r-- | src/lib/vendor/openssl/info.txt | 2 | ||||
-rw-r--r-- | src/lib/vendor/sqlite3/info.txt | 2 |
6 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/compression/bzip2/info.txt b/src/lib/compression/bzip2/info.txt index a0f8d82ee..ea2efa6f1 100644 --- a/src/lib/compression/bzip2/info.txt +++ b/src/lib/compression/bzip2/info.txt @@ -1,6 +1,6 @@ define BZIP2_TRANSFORM 20141118 -load_on request +load_on vendor <libs> all -> bz2 diff --git a/src/lib/compression/lzma/info.txt b/src/lib/compression/lzma/info.txt index 1ec668ca8..443a96919 100644 --- a/src/lib/compression/lzma/info.txt +++ b/src/lib/compression/lzma/info.txt @@ -1,6 +1,6 @@ define LZMA_TRANSFORM 20141118 -load_on request +load_on vendor <libs> all -> lzma diff --git a/src/lib/compression/zlib/info.txt b/src/lib/compression/zlib/info.txt index ba5abd4ec..8b722350f 100644 --- a/src/lib/compression/zlib/info.txt +++ b/src/lib/compression/zlib/info.txt @@ -1,6 +1,6 @@ define ZLIB_TRANSFORM 20141118 -load_on request +load_on vendor <libs> all -> z diff --git a/src/lib/vendor/boost/info.txt b/src/lib/vendor/boost/info.txt index 119a54175..c335dcd74 100644 --- a/src/lib/vendor/boost/info.txt +++ b/src/lib/vendor/boost/info.txt @@ -1,8 +1,10 @@ define BOOST_FILESYSTEM 20131228 define BOOST_ASIO 20131228 +load_on vendor + <libs> all -> boost_system,boost_filesystem </libs> -load_on request + diff --git a/src/lib/vendor/openssl/info.txt b/src/lib/vendor/openssl/info.txt index fe0ca9ced..a1faac3e3 100644 --- a/src/lib/vendor/openssl/info.txt +++ b/src/lib/vendor/openssl/info.txt @@ -1,4 +1,4 @@ -load_on request +load_on vendor <libs> all -> crypto diff --git a/src/lib/vendor/sqlite3/info.txt b/src/lib/vendor/sqlite3/info.txt index 6370f4b2b..98ce5f796 100644 --- a/src/lib/vendor/sqlite3/info.txt +++ b/src/lib/vendor/sqlite3/info.txt @@ -1,5 +1,5 @@ -load_on request +load_on vendor <libs> all -> sqlite3 |