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/build-data | |
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/build-data')
-rw-r--r-- | src/build-data/botan-config.in | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/src/build-data/botan-config.in b/src/build-data/botan-config.in deleted file mode 100644 index e8d8bc2c1..000000000 --- a/src/build-data/botan-config.in +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -prefix=%{prefix} -includedir=%{includedir}/botan-%{version_major}.%{version_minor} -libdir=%{libdir} - -prefix= - -usage() -{ - echo "$0 [--prefix[=DIR]] [--version] [--libs] [--cflags]" - exit 1 -} - -if test $# -eq 0; then - usage -fi - -while test $# -gt 0; do - case "$1" in - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - case "$1" in - --prefix=*) - prefix=$optarg - ;; - --prefix) - echo $prefix - ;; - --version) - echo %{version} - exit 0 - ;; - --cflags) - echo -I$prefix/$includedir - ;; - --libs) - if [ $prefix != "/usr" ] - then - echo -L$prefix/$libdir -lbotan-%{version_major}.%{version_minor} %{link_to} - else - echo -lbotan-%{version_major}.%{version_minor} %{link_to} - fi - ;; - *) - usage - ;; - esac - shift -done - -exit 0 |