aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/dso
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-04-03 08:31:45 +0000
committerRichard Levitte <levitte@openssl.org>2001-04-03 08:31:45 +0000
commit58eef36b4de649a6decb3e6870d793fba5cc698c (patch)
treec6f7c79a9183f175f965d0d66a4e4bb2dd767694 /crypto/dso
parent79311176b23fb2db57f5975ea88bfe8f80e63ee0 (diff)
downloadopenssl-58eef36b4de649a6decb3e6870d793fba5cc698c.tar.gz
libfisdef.h and LIB do not exist on older VMS versions
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso_vms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/dso/dso_vms.c b/crypto/dso/dso_vms.c
index 8ff7090129..ab48b63eb7 100644
--- a/crypto/dso/dso_vms.c
+++ b/crypto/dso/dso_vms.c
@@ -62,7 +62,6 @@
#ifdef VMS
#pragma message disable DOLLARID
#include <lib$routines.h>
-#include <libfisdef.h>
#include <stsdef.h>
#include <descrip.h>
#include <starlet.h>
@@ -260,7 +259,8 @@ void vms_bind_sym(DSO *dso, const char *symname, void **sym)
{
DSO_VMS_INTERNAL *ptr;
int status;
- int flags = LIB$M_FIS_MIXEDCASE;
+ int flags = (1<<4); /* LIB$M_FIS_MIXEDCASE, but this symbol isn't
+ defined in VMS older than 7.0 or so */
struct dsc$descriptor_s symname_dsc;
*sym = NULL;