aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-08-15 08:28:38 +0000
committerRichard Levitte <levitte@openssl.org>2002-08-15 08:28:38 +0000
commit265e892fede07013088e383bc630b8186c8b6e7c (patch)
tree84cb6c76702a948af851a30d425e4bd28b3e817e
parent623e9e66c0de2981420af35c9f06b2c900538d22 (diff)
downloadopenssl-265e892fede07013088e383bc630b8186c8b6e7c.tar.gz
Sometimes, the value of the variable containing the compiler call can
become rather large. This becomes a problem when the default 1024 character large buffer that WRITE uses isn't enough. WRITE/SYMBOL uses a 2048 byte large buffer instead.
-rw-r--r--apps/makeapps.com2
-rw-r--r--crypto/crypto-lib.com4
-rw-r--r--ssl/ssl-lib.com2
-rw-r--r--test/maketests.com2
4 files changed, 5 insertions, 5 deletions
diff --git a/apps/makeapps.com b/apps/makeapps.com
index 546e5f8c18..b03c44535c 100644
--- a/apps/makeapps.com
+++ b/apps/makeapps.com
@@ -1086,7 +1086,7 @@ $ CC = CC + "/DEFINE=(" + CCDEFS + ")" + CCDISABLEWARNINGS
$!
$! Show user the result
$!
-$ WRITE SYS$OUTPUT "Main Compiling Command: ",CC
+$ WRITE/SYMBOL SYS$OUTPUT "Main Compiling Command: ",CC
$!
$! Special Threads For OpenVMS v7.1 Or Later
$!
diff --git a/crypto/crypto-lib.com b/crypto/crypto-lib.com
index fa787867a5..7fb5b4e916 100644
--- a/crypto/crypto-lib.com
+++ b/crypto/crypto-lib.com
@@ -1328,7 +1328,7 @@ $ CC4 = CC - CCDISABLEWARNINGS + CC4DISABLEWARNINGS
$!
$! Show user the result
$!
-$ WRITE SYS$OUTPUT "Main C Compiling Command: ",CC
+$ WRITE/SYMBOL SYS$OUTPUT "Main C Compiling Command: ",CC
$!
$! Else The User Entered An Invalid Arguement.
$!
@@ -1359,7 +1359,7 @@ $ IF ARCH .EQS. "AXP" THEN MACRO = "MACRO/MIGRATION/''DEBUGGER'/''MACRO_OPTIMIZE
$!
$! Show user the result
$!
-$ WRITE SYS$OUTPUT "Main MACRO Compiling Command: ",MACRO
+$ WRITE/SYMBOL SYS$OUTPUT "Main MACRO Compiling Command: ",MACRO
$!
$! Time to check the contents, and to make sure we get the correct library.
$!
diff --git a/ssl/ssl-lib.com b/ssl/ssl-lib.com
index 1f1921e162..d6829a8d64 100644
--- a/ssl/ssl-lib.com
+++ b/ssl/ssl-lib.com
@@ -1067,7 +1067,7 @@ $ ENDIF
$!
$! Show user the result
$!
-$ WRITE SYS$OUTPUT "Main Compiling Command: ",CC
+$ WRITE/SYMBOL SYS$OUTPUT "Main Compiling Command: ",CC
$!
$! Else The User Entered An Invalid Arguement.
$!
diff --git a/test/maketests.com b/test/maketests.com
index 66d79a21a1..0026cf003f 100644
--- a/test/maketests.com
+++ b/test/maketests.com
@@ -888,7 +888,7 @@ $ CC = CC + "/DEFINE=(" + CCDEFS + ")" + CCDISABLEWARNINGS
$!
$! Show user the result
$!
-$ WRITE SYS$OUTPUT "Main Compiling Command: ",CC
+$ WRITE/SYMBOL SYS$OUTPUT "Main Compiling Command: ",CC
$!
$! Else The User Entered An Invalid Arguement.
$!