summaryrefslogtreecommitdiffstats
path: root/cryptmount/build
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2007-04-29 12:08:34 +0000
committer Eric Hameleers <alien@slackware.com>2007-04-29 12:08:34 +0000
commitefbb8421bb33ab64f30a761cf20bf7948ed85b56 (patch)
tree7e0f4069938abf0b160936f0830022aa26015229 /cryptmount/build
parent4210bc17e917b628916ebd3bc03bd88cc5513ec9 (diff)
downloadasb-efbb8421bb33ab64f30a761cf20bf7948ed85b56.tar.gz
asb-efbb8421bb33ab64f30a761cf20bf7948ed85b56.tar.xz
Parametrize GCRYPT_KEYS and OPENSSL_KEYS
Diffstat (limited to 'cryptmount/build')
-rwxr-xr-xcryptmount/build/cryptmount.SlackBuild6
1 files changed, 4 insertions, 2 deletions
diff --git a/cryptmount/build/cryptmount.SlackBuild b/cryptmount/build/cryptmount.SlackBuild
index 6ea77727..6fdd144d 100755
--- a/cryptmount/build/cryptmount.SlackBuild
+++ b/cryptmount/build/cryptmount.SlackBuild
@@ -52,9 +52,11 @@ BUILD=${BUILD:-1}
DOCS="AUTHORS ChangeLog COPYING NEWS README RELNOTES ToDo"
# Cryptmount can use OpenSSL and/or libgcrypt for encryption of keys.
+# Slackware 11.0 does not have gcrypt for instance unless you install it as
+# an add-on package.
# Set values to "YES" or "NO" to en/disable support for these crypt methods:
-OPENSSL_KEYS="YES"
-GCRYPT_KEYS="YES"
+OPENSSL_KEYS=${OPENSSL_KEYS:-"YES"}
+GCRYPT_KEYS=${GCRYPT_KEYS:-"YES"}
# Where do we look for sources?
CWD=`pwd`