summaryrefslogtreecommitdiff
path: root/src/libs/openssl-3.0.3/crypto/hmac/Makefile.kmk
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2022-06-08 07:22:34 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2022-06-08 07:22:34 +0000
commit32a5f378232cb97f1a4108a075e29bf3d1bd2d7f (patch)
treec023b6c31a111470e0cae45f3746e98257f25bbc /src/libs/openssl-3.0.3/crypto/hmac/Makefile.kmk
parent402cecee16fef704744ed60a1e6ad4aa9161bc11 (diff)
downloadVirtualBox-svn-32a5f378232cb97f1a4108a075e29bf3d1bd2d7f.tar.gz
libs: Copied our OpenSSL v3.0.2 in preparation for v3.0.3 upgrade. bugref:10128
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@95218 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/libs/openssl-3.0.3/crypto/hmac/Makefile.kmk')
-rw-r--r--src/libs/openssl-3.0.3/crypto/hmac/Makefile.kmk28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/libs/openssl-3.0.3/crypto/hmac/Makefile.kmk b/src/libs/openssl-3.0.3/crypto/hmac/Makefile.kmk
new file mode 100644
index 00000000000..e219e64d400
--- /dev/null
+++ b/src/libs/openssl-3.0.3/crypto/hmac/Makefile.kmk
@@ -0,0 +1,28 @@
+# $Id$
+## @file
+# OpenSSL Sub-Makefile.
+#
+
+#
+# Copyright (C) 2019-2022 Oracle Corporation
+#
+# This file is part of VirtualBox Open Source Edition (OSE), as
+# available from http://www.virtualbox.org. This file is free software;
+# you can redistribute it and/or modify it under the terms of the GNU
+# General Public License (GPL) as published by the Free Software
+# Foundation, in version 2 as it comes in the "COPYING" file of the
+# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
+# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
+#
+
+SUB_DEPTH = ../../../../..
+include $(KBUILD_PATH)/subheader.kmk
+
+LIBRARIES += crypto_hmac
+crypto_hmac_TEMPLATE = SUBLIBCRYPTO
+crypto_hmac_DEFS = OPENSSL_NO_DEPRECATED
+crypto_hmac_SOURCES = \
+ hmac.c
+$(evalcall VBOX_OPENSSL_X86,crypto_hmac)
+
+include $(FILE_KBUILD_SUB_FOOTER)