From: Richard Levitte Date: Thu, 15 Aug 2002 08:29:58 +0000 (+0000) Subject: Sometimes, the value of the variable containing the compiler call can X-Git-Tag: OpenSSL_0_9_6h~115 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ffcbf991b1ebbb4cf7060a4da79041b5e09cd60e;p=oweals%2Fopenssl.git 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. --- diff --git a/apps/makeapps.com b/apps/makeapps.com index fe55369843..411beea872 100644 --- a/apps/makeapps.com +++ b/apps/makeapps.com @@ -1077,7 +1077,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 fc6c00f1e1..08dc4a6779 100644 --- a/crypto/crypto-lib.com +++ b/crypto/crypto-lib.com @@ -1326,7 +1326,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. $! @@ -1357,7 +1357,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 7d2836478d..44ea1bb979 100644 --- a/ssl/ssl-lib.com +++ b/ssl/ssl-lib.com @@ -1089,7 +1089,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 3d1b208ddc..c2f81c5c1b 100644 --- a/test/maketests.com +++ b/test/maketests.com @@ -906,7 +906,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. $!