diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-11-14 21:26:54 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2018-11-25 14:44:59 +0100 |
commit | 2f3c3035c6fe81533817d1a451f15b2ef95da763 (patch) | |
tree | ea8d87ba518dd77f7bf556f21d9107e066702e5b | |
parent | 9f079b6353df761bd9219946a0cb861a221bd9bc (diff) |
Add NO_CRYPT to fix build with glibc 2.28
Since glibc 2.28
(https://savannah.gnu.org/forum/forum.php?forum_id=9205), the obsolete
functions encrypt, encrypt_r, setkey, setkey_r, cbc_crypt, ecb_crypt,
and des_setparity are no longer available to newly linked binaries, and
the headers <rpc/des_crypt.h> and <rpc/rpc_des.h> are no longer
installed. These functions encrypted and decrypted data with the DES
block cipher, which is no longer considered secure. Software that still
uses these functions should switch to a modern cryptography library,
such as libgcrypt.
So add a NO_CRYPT variable to disable test/crypt
Fixes:
- http://autobuild.buildroot.org/results/158438debb0ce313b012b871e199bed42ba38294
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-rw-r--r-- | test/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 5a136ea..6690d25 100644 --- a/test/Makefile +++ b/test/Makefile @@ -39,6 +39,10 @@ ifeq ($(NO_MATH),1) DIRS := $(filter-out math,$(DIRS)) endif +ifeq ($(NO_CRYPT),1) +DIRS := $(filter-out crypt,$(DIRS)) +endif + test check all: run run: subdirs_run |