about summary refs log tree commit diff stats
path: root/WWW/Library/vms/libmake.com
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library/vms/libmake.com')
-rw-r--r--WWW/Library/vms/libmake.com10
1 files changed, 9 insertions, 1 deletions
diff --git a/WWW/Library/vms/libmake.com b/WWW/Library/vms/libmake.com
index 4ad07d19..bf905fe7 100644
--- a/WWW/Library/vms/libmake.com
+++ b/WWW/Library/vms/libmake.com
@@ -67,12 +67,20 @@ $!
 $ if transport .eqs. "SOCKETSHR_TCP" then extra = extra + ",_DECC_V4_SOURCE"
 $ if transport .eqs. "TCPWARE" then extra = extra + ",UCX"
 $!
+$ if p2 .nes. ""
+$ then
+$   ssl_arg = "openssl"
+$   extra = extra + ",USE_SSL,USE_OPENSSL_INCL"
+$ else
+$   ssl_arg = ""
+$ endif
+$!
 $!	Compiler options can be specified here.  If there was
 $!	a second argument (with any value), then debugger mode
 $!	with no optimization will be specified as well. - FM
 $!
 $ cc_opts = ""
-$ if p2 .nes. "" then cc_opts = cc_opts + "/DEBUG/NOOPT"
+$ if p3 .nes. "" then cc_opts = cc_opts + "/DEBUG/NOOPT"
 $!
 $ IF f$trnlnm("VAXCMSG") .eqs. "DECC$MSG" .or. -
      f$trnlnm("DECC$CC_DEFAULT") .eqs. "/DECC" .or. -
8'>148 149 150 151 152 153 154 155 156 157 158 159 160 161 162