diff options
| author | Alexey Neyman <stilor@att.net> | 2018-04-29 15:04:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-29 15:04:23 -0700 |
| commit | 5c24106d3b6ddb5229874a74e3cfe0059fa8ce8d (patch) | |
| tree | 6ae4685ef53ec2b10593fe19fc1397bc8619f311 /config | |
| parent | 51f0e7c649a84c66ce0111703498dc4466e35562 (diff) | |
| parent | 74979fb19b2c7220dab4196c0d34e0c29b341b09 (diff) | |
| download | crosstool-ng-5c24106d3b6ddb5229874a74e3cfe0059fa8ce8d.tar.gz crosstool-ng-5c24106d3b6ddb5229874a74e3cfe0059fa8ce8d.tar.bz2 crosstool-ng-5c24106d3b6ddb5229874a74e3cfe0059fa8ce8d.zip | |
Merge pull request #953 from stilor/docker-testing2
Docker configuration for Gentoo + a bunch of fixes
Diffstat (limited to 'config')
| -rw-r--r-- | config/configure.in.in | 12 | ||||
| -rw-r--r-- | config/global/download.in | 5 |
2 files changed, 17 insertions, 0 deletions
diff --git a/config/configure.in.in b/config/configure.in.in index c8003a03..3d6a628b 100644 --- a/config/configure.in.in +++ b/config/configure.in.in @@ -45,5 +45,17 @@ config CONFIGURE_has_svn config CONFIGURE_has_git @KCONFIG_git@ +config CONFIGURE_has_md5sum + @KCONFIG_md5sum@ + +config CONFIGURE_has_sha1sum + @KCONFIG_sha1sum@ + +config CONFIGURE_has_sha256sum + @KCONFIG_sha256sum@ + +config CONFIGURE_has_sha512sum + @KCONFIG_sha512sum@ + config CONFIGURE_has_install_with_strip_program @KCONFIG_install_with_strip_program@ diff --git a/config/global/download.in b/config/global/download.in index 89b05cea..57f42e6f 100644 --- a/config/global/download.in +++ b/config/global/download.in @@ -135,6 +135,7 @@ endif # USE_MIRROR config VERIFY_DOWNLOAD_DIGEST bool "Verify download digests (checksums)" default y + depends on CONFIGURE_has_sha512sum || CONFIGURE_has_sha256sum || CONFIGURE_has_sha1sum || CONFIGURE_has_md5sum if VERIFY_DOWNLOAD_DIGEST @@ -143,14 +144,18 @@ choice config VERIFY_DOWNLOAD_DIGEST_SHA512 bool "SHA-512" + depends on CONFIGURE_has_sha512sum config VERIFY_DOWNLOAD_DIGEST_SHA256 + depends on CONFIGURE_has_sha256sum bool "SHA-256" config VERIFY_DOWNLOAD_DIGEST_SHA1 + depends on CONFIGURE_has_sha1sum bool "SHA-1" config VERIFY_DOWNLOAD_DIGEST_MD5 + depends on CONFIGURE_has_md5sum bool "MD5" endchoice |
