diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2022-09-14 12:50:23 +0200 |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2022-09-14 12:50:23 +0200 |
commit | 1909de2e843f1dfd5e031d3d4aa6901a5b9a139d (patch) | |
tree | 8f33ed557df0957c028de952d06763346ac4acea /gl/m4/sha256.m4 | |
parent | 5da988e07a96ff154db040befb5472f0dc784a17 (diff) | |
download | monitoring-plugins-1909de2.tar.gz |
Add Gnulib module "crypto/sha256" and remote "crypto/sha1"
Diffstat (limited to 'gl/m4/sha256.m4')
-rw-r--r-- | gl/m4/sha256.m4 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gl/m4/sha256.m4 b/gl/m4/sha256.m4 new file mode 100644 index 00000000..b3d8f92e --- /dev/null +++ b/gl/m4/sha256.m4 | |||
@@ -0,0 +1,14 @@ | |||
1 | # sha256.m4 serial 8 | ||
2 | dnl Copyright (C) 2005, 2008-2022 Free Software Foundation, Inc. | ||
3 | dnl This file is free software; the Free Software Foundation | ||
4 | dnl gives unlimited permission to copy and/or distribute it, | ||
5 | dnl with or without modifications, as long as this notice is preserved. | ||
6 | |||
7 | AC_DEFUN([gl_SHA256], | ||
8 | [ | ||
9 | dnl Prerequisites of lib/sha256.c. | ||
10 | AC_REQUIRE([gl_BIGENDIAN]) | ||
11 | |||
12 | dnl Determine HAVE_OPENSSL_SHA256 and LIB_CRYPTO | ||
13 | gl_CRYPTO_CHECK([SHA256]) | ||
14 | ]) | ||