summaryrefslogtreecommitdiffstats
path: root/VMS
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2011-03-25 09:40:18 +0000
committerRichard Levitte <levitte@openssl.org>2011-03-25 09:40:18 +0000
commitf819147028b01459c0ad28d623a380bdb95656ca (patch)
tree32a20e9675b6fed0256c78f7e3a4822e0a624572 /VMS
parenta530963f05c4f7f30b36f040b2fb78b450b1871f (diff)
For VMS, implement the possibility to choose 64-bit pointers with
different options: "64" The build system will choose /POINTER_SIZE=64=ARGV if the compiler supports it, otherwise /POINTER_SIZE=64. "64=" The build system will force /POINTER_SIZE=64. "64=ARGV" The build system will force /POINTER_SIZE=64=ARGV.
Diffstat (limited to 'VMS')
-rw-r--r--VMS/mkshared.com2
1 files changed, 2 insertions, 0 deletions
diff --git a/VMS/mkshared.com b/VMS/mkshared.com
index d92a823f0b..794e1de62a 100644
--- a/VMS/mkshared.com
+++ b/VMS/mkshared.com
@@ -328,6 +328,8 @@ $ entrycount=0
$ loop:
$ read /end=loop_end /err=loop_end libnum line
$ lin = f$edit( line, "COMPRESS,TRIM")
+$! Skip a "#" comment line.
+$ if (f$extract( 0, 1, lin) .eqs. "#") then goto loop
$ entrynum = f$int(f$element( 1, " ", lin))
$ entryinfo = f$element( 2, " ", lin)
$ curentry = f$element( 0, " ", lin)