From d5783d1eaa4aed08d64732523349ed2d5c349cdc Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Thu, 16 Dec 2021 14:35:39 +0100 Subject: [PATCH] Missing config for krb5 1.16.1 --- configure.ac | 3 ++- wolfssl/openssl/camellia.h | 27 +++++++++++++++++++++++++++ wolfssl/openssl/include.am | 1 + 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 wolfssl/openssl/camellia.h diff --git a/configure.ac b/configure.ac index ee1b1d612..52b00c645 100644 --- a/configure.ac +++ b/configure.ac @@ -4730,7 +4730,8 @@ fi if test "$ENABLED_KRB" = "yes" then - AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_KRB -DWOLFSSL_AES_DIRECT" + AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_KRB -DWOLFSSL_AES_DIRECT -DWOLFSSL_DES_ECB" + AM_CFLAGS="$AM_CFLAGS -DHAVE_EX_DATA" # Requires PKCS7 if test "x$ENABLED_PKCS7" = "xno" diff --git a/wolfssl/openssl/camellia.h b/wolfssl/openssl/camellia.h new file mode 100644 index 000000000..024b4e337 --- /dev/null +++ b/wolfssl/openssl/camellia.h @@ -0,0 +1,27 @@ +/* camellia.h + * + * Copyright (C) 2006-2021 wolfSSL Inc. + * + * This file is part of wolfSSL. + * + * wolfSSL is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * wolfSSL is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA + */ + +#ifndef WOLFSSL_CAMELLIA_H_ +#define WOLFSSL_CAMELLIA_H_ + +#include + +#endif /* WOLFSSL_CAMELLIA_H_ */ diff --git a/wolfssl/openssl/include.am b/wolfssl/openssl/include.am index e1da39845..e4ae651cd 100644 --- a/wolfssl/openssl/include.am +++ b/wolfssl/openssl/include.am @@ -8,6 +8,7 @@ nobase_include_HEADERS+= \ wolfssl/openssl/bio.h \ wolfssl/openssl/bn.h \ wolfssl/openssl/buffer.h \ + wolfssl/openssl/camellia.h \ wolfssl/openssl/cmac.h \ wolfssl/openssl/cms.h \ wolfssl/openssl/compat_types.h \