summaryrefslogtreecommitdiffstats
path: root/include/internal/dso.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-09-08 20:48:30 +0200
committerRichard Levitte <levitte@openssl.org>2016-09-11 23:18:03 +0200
commit278a33da3cf10f0a9ab12c2a1f643f9027b06679 (patch)
treea87e8a896e1bffa1ed8a775ebf4ab8bbd293701a /include/internal/dso.h
parent6462876f8d9f6538ad0fcd70717077d9ae174e56 (diff)
VMS: be less picky when loading DSOs
The DSO API was picky about casing of symbol names on VMS. There's really no reason to be that picky, it's mostly just annoying. Therefore, we take away the possibility to flag for a choice, and will instead first try to find a symbol with exact case, and failing that, we try to find it in upper case. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include/internal/dso.h')
-rw-r--r--include/internal/dso.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/internal/dso.h b/include/internal/dso.h
index 970beeb195..79d98f4785 100644
--- a/include/internal/dso.h
+++ b/include/internal/dso.h
@@ -43,12 +43,6 @@ extern "C" {
# define DSO_FLAG_NAME_TRANSLATION_EXT_ONLY 0x02
/*
- * The following flag controls the translation of symbol names to upper case.
- * This is currently only being implemented for OpenVMS.
- */
-# define DSO_FLAG_UPCASE_SYMBOL 0x10
-
-/*
* This flag loads the library with public symbols. Meaning: The exported
* symbols of this library are public to all libraries loaded after this
* library. At the moment only implemented in unix.