From f09877c12c830d16f38064dace415679e867fc0f Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 13 Sep 2018 17:08:04 +0200 Subject: [PATCH] VMS libtestutil: look for lower case "main" Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/7208) --- Configurations/descrip.mms.tmpl | 4 +++- test/build.info | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl index fa629ee552..b1c00b7dc3 100644 --- a/Configurations/descrip.mms.tmpl +++ b/Configurations/descrip.mms.tmpl @@ -1034,7 +1034,9 @@ EOF "\@ WRITE OPT_FILE \"$x" } @objs). "\""; my $write_opt2 = - join("\n\t", map { my @lines = (); + join("\n\t", map { my @lines = ( + "\ WRITE OPT_FILE \"CASE_SENSITIVE=YES\"" + ); my $x = $_ =~ /\[/ ? $_ : "[]".$_; if ($x =~ m|\.EXE$|) { push @lines, "\@ WRITE OPT_FILE \"$x/SHARE\""; diff --git a/test/build.info b/test/build.info index 08657c8011..fa154f07ee 100644 --- a/test/build.info +++ b/test/build.info @@ -17,10 +17,10 @@ IF[{- !$disabled{tests} -}] DEPEND[libtestutil.a]=../libcrypto # Special hack for descrip.mms to include the MAIN object module - # explicitly. This will only be done if there isn't a MAIN in the + # explicitly. This will only be done if there isn't a 'main' in the # program's object modules already. BEGINRAW[descrip.mms] -INCLUDE_MAIN___test_libtestutil_OLB = /INCLUDE=MAIN +INCLUDE_MAIN___test_libtestutil_OLB = /INCLUDE=main ENDRAW[descrip.mms] PROGRAMS_NO_INST=\ -- 2.25.1