summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2007-07-26 09:15:12 +0000
committerWerner Koch <wk@gnupg.org>2007-07-26 09:15:12 +0000
commitdb6a84d79e4293194dfa0f68f7ac7dc66bb9c5d5 (patch)
treeead7238449daf8c7fa9056e0e968bec494892b4a /autogen.sh
parent44e19ed44c2a8c8bd6e94fcf5e98fdc850f15eb5 (diff)
downloadlibgcrypt-db6a84d79e4293194dfa0f68f7ac7dc66bb9c5d5.tar.gz
Fixed symbol prefix detection.
Typo fixes.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index e9e41e88..6bc47c4e 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -31,7 +31,7 @@ check_version () {
DIE=no
FORCE=
-if test "$1" = "--force"; then
+if test x"$1" = x"--force"; then
FORCE=" --force"
shift
fi
@@ -75,11 +75,9 @@ if test "$1" = "--build-w32"; then
fi
fi
- # Note: we include Camellia because this is anyway a GPLed build.
./configure --enable-maintainer-mode --prefix=${w32root} \
--host=${host} --build=${build} \
- --with-gpg-error-prefix=${w32root} \
- --enable-ciphers=arcfour:blowfish:cast5:des:aes:twofish:serpent:rfc2268:seed:camellia
+ --with-gpg-error-prefix=${w32root}
exit $?
fi
# ***** end W32 build script *******