summaryrefslogtreecommitdiff
path: root/CryptoPkg/Library/Include
diff options
context:
space:
mode:
authorLaszlo Ersek <lersek@redhat.com>2018-05-07 21:59:23 +0200
committerLaszlo Ersek <lersek@redhat.com>2018-05-08 13:29:06 +0200
commitee3198e672e2f27d31e82adad572dbb4f3bbdf1f (patch)
tree593fcd4164f75365bc5586c43679865451d9cb24 /CryptoPkg/Library/Include
parentd9476a7ef1476621c14a7e632b8b8fc3ca419f61 (diff)
downloadedk2-ee3198e672e2f27d31e82adad572dbb4f3bbdf1f.zip
edk2-ee3198e672e2f27d31e82adad572dbb4f3bbdf1f.tar.gz
edk2-ee3198e672e2f27d31e82adad572dbb4f3bbdf1f.tar.bz2
CryptoPkg/CrtLibSupport: add secure_getenv() stub function
The Fedora distro ships a modified OpenSSL 1.1.0 package stream. One of their patches calls the secure_getenv() C library function. We already have a stub for getenv(); it applies trivially to secure_getenv() as well. Add the secure_getenv() stub so that edk2 can be built with Fedora's OpenSSL 1.1.0 sources. Cc: Qin Long <qin.long@intel.com> Cc: Ting Ye <ting.ye@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Long Qin <qin.long@intel.com>
Diffstat (limited to 'CryptoPkg/Library/Include')
-rw-r--r--CryptoPkg/Library/Include/CrtLibSupport.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/CryptoPkg/Library/Include/CrtLibSupport.h b/CryptoPkg/Library/Include/CrtLibSupport.h
index 7f1ec12..feaf58b 100644
--- a/CryptoPkg/Library/Include/CrtLibSupport.h
+++ b/CryptoPkg/Library/Include/CrtLibSupport.h
@@ -163,6 +163,7 @@ gid_t getgid (void);
gid_t getegid (void);
void qsort (void *, size_t, size_t, int (*)(const void *, const void *));
char *getenv (const char *);
+char *secure_getenv (const char *);
#if defined(__GNUC__) && (__GNUC__ >= 2)
void abort (void) __attribute__((__noreturn__));
#else