diff -urN curl-7.19.7/lib/vms_misc.c curl-7.19.7_s1/lib/vms_misc.c
--- curl-7.19.7/lib/vms_misc.c	1969-12-31 18:00:00 -0600
+++ curl-7.19.7_s1/lib/vms_misc.c	2009-12-13 23:18:49 -0600
@@ -0,0 +1,158 @@
+#ifdef __VMS
+
+#include <stdio.h>
+
+/*
+ * 2004-09-19 SMS.
+ *
+ *----------------------------------------------------------------------
+ *
+ *       decc_init()
+ *
+ *    On non-VAX systems, use LIB$INITIALIZE to set a collection of C
+ *    RTL features without using the DECC$* logical name method.
+ *
+ *----------------------------------------------------------------------
+ */
+
+#ifdef __DECC
+
+#ifdef __CRTL_VER
+
+#if !defined( __VAX) && (__CRTL_VER >= 70301000)
+
+#include <unixlib.h>
+
+/*--------------------------------------------------------------------*/
+
+/* Global storage. */
+
+/*    Flag to sense if decc_init() was called. */
+
+int decc_init_done = -1;
+
+/*--------------------------------------------------------------------*/
+
+/* decc_init()
+
+      Uses LIB$INITIALIZE to set a collection of C RTL features without
+      requiring the user to define the corresponding logical names.
+*/
+
+/* Structure to hold a DECC$* feature name and its desired value. */
+
+typedef struct
+   {
+   char *name;
+   int value;
+   } decc_feat_t;
+
+/* Array of DECC$* feature names and their desired values. */
+
+decc_feat_t decc_feat_array[] = {
+
+   /* Preserve command-line case with SET PROCESS/PARSE_STYLE=EXTENDED */
+ { "DECC$ARGV_PARSE_STYLE", 1 },
+
+   /* Preserve case for file names on ODS5 disks. */
+ { "DECC$EFS_CASE_PRESERVE", 1 },
+
+   /* Enable multiple dots (and most characters) in ODS5 file names,
+      while preserving VMS-ness of ";version". */
+ { "DECC$EFS_CHARSET", 1 },
+
+   /* List terminator. */
+ { (char *)NULL, 0 } };
+
+/* LIB$INITIALIZE initialization function. */
+
+static void decc_init( void)
+{
+int feat_index;
+int feat_value;
+int feat_value_max;
+int feat_value_min;
+int i;
+int sts;
+
+/* Set the global flag to indicate that LIB$INITIALIZE worked. */
+
+decc_init_done = 1;
+
+/* Loop through all items in the decc_feat_array[]. */
+
+for (i = 0; decc_feat_array[ i].name != NULL; i++)
+   {
+   /* Get the feature index. */
+   feat_index = decc$feature_get_index( decc_feat_array[ i].name);
+   if (feat_index >= 0)
+      {
+      /* Valid item.  Collect its properties. */
+      feat_value = decc$feature_get_value( feat_index, 1);
+      feat_value_min = decc$feature_get_value( feat_index, 2);
+      feat_value_max = decc$feature_get_value( feat_index, 3);
+
+      if ((decc_feat_array[ i].value >= feat_value_min) &&
+       (decc_feat_array[ i].value <= feat_value_max))
+         {
+         /* Valid value.  Set it if necessary. */
+         if (feat_value != decc_feat_array[ i].value)
+            {
+            sts = decc$feature_set_value( feat_index,
+             1,
+             decc_feat_array[ i].value);
+            }
+         }
+      else
+         {
+         /* Invalid DECC feature value. */
+         printf( " INVALID DECC FEATURE VALUE, %d: %d <= %s <= %d.\n",
+          feat_value,
+          feat_value_min, decc_feat_array[ i].name, feat_value_max);
+         }
+      }
+   else
+      {
+      /* Invalid DECC feature name. */
+      printf( " UNKNOWN DECC FEATURE: %s.\n", decc_feat_array[ i].name);
+      }
+   }
+}
+
+/* Get "decc_init()" into a valid, loaded LIB$INITIALIZE PSECT. */
+
+#pragma nostandard
+
+/* Establish the LIB$INITIALIZE PSECTs, with proper alignment and
+   other attributes.  Note that "nopic" is significant only on VAX.
+*/
+#pragma extern_model save
+
+#pragma extern_model strict_refdef "LIB$INITIALIZ" 2, nopic, nowrt
+const int spare[ 8] = { 0 };
+
+#pragma extern_model strict_refdef "LIB$INITIALIZE" 2, nopic, nowrt
+void (*const x_decc_init)() = decc_init;
+
+#pragma extern_model restore
+
+/* Fake reference to ensure loading the LIB$INITIALIZE PSECT. */
+
+#pragma extern_model save
+
+int LIB$INITIALIZE( void);
+
+#pragma extern_model strict_refdef
+int dmy_lib$initialize = (int) LIB$INITIALIZE;
+
+#pragma extern_model restore
+
+#pragma standard
+
+#endif /* !defined( __VAX) && (__CRTL_VER >= 70301000) */
+
+#endif /* def __CRTL_VER */
+
+#endif /* def __DECC */
+
+#endif /* def __VMS */
diff -urN curl-7.19.7/packages/vms/axp/README curl-7.19.7_s1/packages/vms/axp/README
--- curl-7.19.7/packages/vms/axp/README	2004-03-22 15:42:07 -0600
+++ curl-7.19.7_s1/packages/vms/axp/README	1969-12-31 18:00:00 -0600
@@ -1 +0,0 @@
-1
diff -urN curl-7.19.7/packages/vms/build_vms.com curl-7.19.7_s1/packages/vms/build_vms.com
--- curl-7.19.7/packages/vms/build_vms.com	2009-10-28 15:21:58 -0500
+++ curl-7.19.7_s1/packages/vms/build_vms.com	2009-12-16 00:00:14 -0600
@@ -4,26 +4,36 @@
 $! I've taken the original build_vms.com, supplied by Nico Baggus, if
 $! memory serves me correctly, and made some modifications.
 $!
-$! SSL support is based on logicals, or lack thereof.  If SSL$INCLUDE
-$! is defined, then it assumed that hp's SSL product has been installed.
-$! If OPENSSL is defined, but SSL$INCLUDE isn't, then the OpenSSL defined
-$! via the defines.com procedure will be used.  If neither logical is 
-$! defined, then SSL support will not be compiled/linked in.
-$!
-$! If CURL_BUILD_NOSSL is defined to anything, then no SSL support will
-$! be built in.  This way you can build without SSL support on systems
-$! that have it without the "automatic" build/link "features".
-$!
-$! If CURL_BUILD_NOHPSSL is defined to anything, it will override the
-$! SSL$INCLUDE check.  This way you can build against OpenSSL, even if
-$! you have hp SSL installed.
-$!
-$! Parameter(s):
-$!
-$! P1 - LISTING will create .lis files during the C compile
-$!      DEBUG   will compile and link with debug; also will create
-$!              compiler listings and linker map files
-$!      64      will compile and link with 64-bit pointers
+$! SSL support is controlled by logical names.  If SSL$INCLUDE is
+$! defined, then it is assumed that HP's SSL product has been installed.
+$! If OPENSSL is defined, but SSL$INCLUDE is not, then OpenSSL will be
+$! used.  If neither logical name is defined, then SSL support will not
+$! be compiled/linked in.  Command-line options NOHPSSL and NOSSL can be
+$! specified to override the automatic SSL selection.
+$!
+$! Command-line Options:
+$!
+$!    CLEAN     Delete product files for this host architecture.  (No
+$!              build done.)
+$!    CLEAN_ALL Delete product files for all host architectures.  (No
+$!              build done.)
+$!
+$!    64        Compile with 64-bit pointers.
+$!    CCQUAL=x  Add "x" to the C compiler qualifiers.
+$!    DEBUG     Compile and link with debug.
+$!    IEEE      Use IEEE floating point.  (Alpha.)
+$!    LARGE     Enable large-file support.  (Non-VAX, VMS >= V7.2.)
+$!    LDAP      Enable LDAP support.
+$!    LIST      Create C compiler listings and linker maps.
+$!    NOHPSSL   Don't use HP SSL, even if available.
+$!    NOSSL     Don't use any SSL, even if available.
+$!    OSSLOLB   Use OpenSSL object libraries (.OLB), even if shared
+$!              images (.EXE) are available.
+$!
+$! DCL Symbols:
+$!
+$!    CURL_CCDEFS="c_macro_1=value1 [, c_macro_2=value2 [...]]"
+$!              Compile with these additional C macros defined.
 $!
 $! Revisions:
 $!
@@ -47,12 +57,48 @@
 $! 11-FEB-2005, MSK, If [--.LIB]AMIGAOS.C and NWLIB.C are there, rename them
 $! 23-MAR-2005, MSK, relocated cc_qual define so that DEBUG option would work
 $! 25-APR-2007, STL, allow compilation in 64-bit mode.
-$!
+$! 13-DEC-2009. SMS, Changed to skip unwanted source files without
+$!                   renaming the original files.
+$!                   Eliminated needless, persistent logical names.
+$!                   Added CURL_CCDEFS DCL symbol for user-specified C
+$!                   macro definitions.
+$!                   Added CLEAN and CLEAN_ALL options.
+$!                   Added CCQUAL option for user-specified C compiler
+$!                   qualifiers.
+$!                   Added IEEE option for IEEE floating point (Alpha).
+$!                   Added LARGE option for large-file support.
+$!                   Added OSSLOLB option, and support for OpenSSL
+$!                   shared images.
+$!                   Changed to put listing and map files into lisdir:.
+$!                   Changed to avoid case confusion on ODS5 disks.
+$!                   Added more default dev:[dir] save+restore.
+$!                   Moved remaining "defines.com" code (back) into
+$!                   here, eliminating the hard-coded OpenSSL nonsense.
+$!                   Changed to use F$GETSYI( "ARCH_NAME") (or
+$!                   equivalent) to name architecture-specific product
+$!                   file destination directory, and to create the
+$!                   directory if needed (obviating inclusion of these
+$!                   directories and dummy files in the distribution
+$!                   kit).
+$!                   Changed the "compile" subroutine to break the CC
+$!                   command across multiple lines to avoid DCL
+$!                   line-too-long problems.
+$!                   Changed "vo_c" messages to show the CC qualifiers
+$!                   once, not with every compile command.
+$!
+$!
+$! Save the original default dev:[dir], and arrange for its restoration
+$! at exit.
+$!
+$ curl = ""
+$ orig_def = f$environment( "DEFAULT")
+$ on error then goto Common_Exit
 $ on control_y then goto Common_Exit
+$!
 $ ctrl_y  = 1556 
-$ origdir = f$environment("DEFAULT")
-$ proc    = f$environment("PROCEDURE")
-$ thisdir = f$parse( proc,,,"DEVICE") + f$parse( proc,,,"DIRECTORY")
+$ proc = f$environment( "PROCEDURE")
+$ proc_dev_dir = -
+   f$parse( proc, , , "DEVICE")+ f$parse( proc, , , "DIRECTORY")
 $!
 $! Verbose output message stuff.  Define symbol to "write sys$output" or "!".
 $! vo_c - verbose output for compile
@@ -63,186 +109,464 @@
 $ vo_l = "write sys$output"
 $ vo_o = "!"
 $!
-$ defines = thisdir + "defines.com"
-$ if f$trnlnm( "curl_defines_done") .eqs. "" 
-$ then 
-$    if f$search( defines) .eqs. "" 
-$    then
-$       write sys$output "%CURL-F-DEFFNF, cannot find defines.com procedure"
-$       exit %X18290 ! FNF
-$    else
-$       @'defines'
-$    endif
+$! Determine the main distribution directory ("[--]") in an
+$! ODS5-tolerant (case-insensitive) way.  (We do assume that the only
+$! "]" is the one at the end.)
+$!
+$ set default 'proc_dev_dir'
+$ set default [--]
+$ top_dev_dir = f$environment( "DEFAULT")- "]"
+$!
+$! Define the architecture-specific product file destination directory
+$! name(s).
+$!
+$ if (f$getsyi( "HW_MODEL") .lt. 1024)
+$ then
+$    arch_name = "VAX"
+$ else
+$    arch_name = ""
+$    arch_name = arch_name+ f$edit( f$getsyi( "ARCH_NAME"), "UPCASE")
+$    if (arch_name .eqs. "") then arch_name = "UNK"
 $ endif
-$ set def 'thisdir'
 $!
-$ hpssl   = 0
+$ exedir = proc_dev_dir- "]"+ ".''arch_name']"
+$ lisdir = exedir
+$ objdir = exedir
+$!
+$! Interpret command-line options.
+$!
+$ hpssl = 0
+$ ldap = 0
+$ nohpssl = 0
+$ nossl = 0
 $ openssl = 0
-$ cc_qual = "/define=HAVE_CONFIG_H=1"
+$ osslolb = 0
+$ cc_qual1 = ""
+$ cc_qual2 = ""
+$ cc_defs = "HAVE_CONFIG_H=1"
+$ if (f$type( CURL_CCDEFS) .nes. "")
+$ then
+$    CURL_CCDEFS = f$edit( CURL_CCDEFS, "TRIM")
+$    cc_defs = cc_defs+ ", "+ CURL_CCDEFS
+$ endif
 $ link_qual = ""
-$ if f$trnlnm( "CURL_BUILD_NOSSL") .eqs. ""
+$ ssl_opt = ""
+$!
+$ arg = 1
+$arg_loop:
+$    p = "p''arg'"
+$    arg_val = 'p'
+$    if (arg_val .eqs. "") then goto arg_loop_out
+$    arg_val = f$edit( arg_val, "upcase")
+$!
+$    if (arg_val .eqs. "CLEAN")
+$    then
+$       prods = "''exedir'*.*;*"
+$       if (f$search( prods) .nes. "") then delete /log 'prods'
+$       prods = proc_dev_dir+ arch_name+ ".DIR;1"
+$       if (f$search( prods) .nes. "") then delete /log 'prods'
+$       goto Common_Exit
+$    endif
+$!
+$    if (arg_val .eqs. "CLEAN_ALL")
+$    then
+$       prods = proc_dev_dir- "]"+ ".ALPHA]*.*;*"
+$       if (f$search( prods) .nes. "") then delete /log 'prods'
+$       prods = proc_dev_dir+ "ALPHA"+ ".DIR;1"
+$       if (f$search( prods) .nes. "") then delete /log 'prods'
+$       prods = proc_dev_dir- "]"+ ".IA64]*.*;*"
+$       if (f$search( prods) .nes. "") then delete /log 'prods'
+$       prods = proc_dev_dir+ "IA64"+ ".DIR;1"
+$       if (f$search( prods) .nes. "") then delete /log 'prods'
+$       prods = proc_dev_dir- "]"+ ".VAX]*.*;*"
+$       if (f$search( prods) .nes. "") then delete /log 'prods'
+$       prods = proc_dev_dir+ "VAX"+ ".DIR;1"
+$       if (f$search( prods) .nes. "") then delete /log 'prods'
+$       goto Common_Exit
+$    endif
+$!
+$    if (arg_val .eqs. "64")
+$    then
+$       cc_qual1 = cc_qual1 + " /POINTER = 64"
+$       goto arg_loop_end
+$    endif
+$!
+$    if (f$extract( 0, 6, arg_val) .eqs. "CCQUAL")
+$    then
+$       opts = f$edit( arg_val, "COLLAPSE")
+$       eq = f$locate( "=", opts)
+$       cc_qual2 = f$extract( (eq+ 1), 1000, opts)
+$       goto arg_loop_end
+$    endif
+$!
+$    if (arg_val .eqs. "DEBUG")
+$    then
+$       cc_qual1 = cc_qual1 + -
+         " /debug /nooptimize"
+$       link_qual = link_qual+ " /debug /map = ''lisdir'"
+$       goto arg_loop_end
+$    endif
+$!
+$    if (arg_val .eqs. "IEEE")
+$    then
+$       cc_qual1 = cc_qual1 + " /FLOAT = IEEE_FLOAT"
+$       goto arg_loop_end
+$    endif
+$!
+$    if (arg_val .eqs. "LARGE")
+$    then
+$       if (arch_name .eqs. "VAX")
+$       then
+$          write sys$output """LARGE"" is ignored on VAX."
+$       else
+$          cc_defs = cc_defs+ ", _LARGEFILE=1"
+$       endif
+$       goto arg_loop_end
+$    endif
+$!
+$    if (arg_val .eqs. "LDAP")
+$    then
+$       ldap = 1
+$       goto arg_loop_end
+$    endif
+$!
+$    if (f$extract( 0, 4, arg_val) .eqs. "LIST")
+$    then
+$       cc_qual1 = cc_qual1 + " /list = ''lisdir' /show = (all, nomessages)"
+$       goto arg_loop_end
+$    endif
+$!
+$    if (arg_val .eqs. "NOHPSSL")
+$    then
+$       nohpssl = 1
+$       goto arg_loop_end
+$    endif
+$!
+$    if (arg_val .eqs. "NOSSL")
+$    then
+$       nossl = 1
+$       goto arg_loop_end
+$    endif
+$!
+$    if (arg_val .eqs. "OSSLOLB")
+$    then
+$       osslolb = 1
+$       goto arg_loop_end
+$    endif
+$!
+$    write sys$output "Unrecognized command-line option: ''arg_val'"
+$    goto Common_Exit
+$!
+$arg_loop_end:
+$ arg = arg+ 1
+$ goto arg_loop
+$arg_loop_out:
+$!
+$! Create product directory, if needed.
+$!
+$ if (f$search( proc_dev_dir+ arch_name+ ".DIR;1") .eqs. "")
 $ then
-$    if f$trnlnm( "OPENSSL") .nes. "" 
+$    create /directory 'exedir'
+$ endif
+$!
+$! Detect available (but not prohibited) SSL software.
+$!
+$ if (.not. nossl)
+$ then
+$    if (f$trnlnm( "OPENSSL") .nes. "")
 $    then
-$       openssl = 1
-$       cc_qual = "/define=(HAVE_CONFIG_H=1,USE_SSLEAY=1)"
-$       if ( f$trnlnm( "SSL$INCLUDE") .nes. "") .and. -
-           ( f$trnlnm( "CURL_BUILD_NOHPSSL") .eqs. "")
-$       then hpssl = 1
+$       cc_defs = cc_defs+ ", USE_SSLEAY=1"
+$       if ((f$trnlnm( "SSL$INCLUDE") .nes. "") .and. (.not. nohpssl))
+$       then
+$!         Use HP SSL.
+$          hpssl = 1
+$          ssl_opt = ", ''proc_dev_dir'hpssl_"+ -
+            f$getsyi("ARCH_NAME") + ".opt /options"
+$       else
+$!         Use OpenSSL.  Assume object libraries, unless shared images
+$!         are found (and not prohibited).
+$          openssl = 1
+$          ssl_opt = ", ssllib:libssl.olb /library"+ -
+            ", ssllib:libcrypto.olb /library"
+$          if (osslolb .eq. 0)
+$          then
+              if ((f$search( "ssllib:ssl_libcrypto.exe") .nes. "") .and. -
+               (f$search( "ssllib:ssl_libssl.exe") .nes. ""))
+$             then
+$!               OpenSSL shared images with "SSL_xxx.EXE names.
+$                openssl = 2
+$                ssl_opt = ", ''proc_dev_dir'openssl_ssl_"+ -
+                  f$getsyi("ARCH_NAME") + ".opt /options"
+$             else
+$                if ((f$search( "ssllib:libcrypto.exe") .nes. "") .and. -
+                  (f$search( "ssllib:libssl.exe") .nes. ""))
+$                then
+$!                  OpenSSL shared images with "xxx.EXE names.
+$                   openssl = 3
+$                   ssl_opt = ", ''proc_dev_dir'openssl_"+ -
+                     f$getsyi("ARCH_NAME") + ".opt /options"
+$                endif
+$             endif
+$          endif
 $       endif
 $    endif
 $ endif
-$ cc_qual = cc_qual + "/OBJ=OBJDIR:"
-$ if p1 .eqs. "64" then cc_qual = cc_qual + "/POINTER=64"
-$ if p1 .eqs. "LISTING" then cc_qual = cc_qual + "/LIST/SHOW=ALL"
-$ if p1 .eqs. "DEBUG" 
-$ then 
-$    cc_qual = cc_qual + "/LIST/SHOW=ALL/DEBUG/NOOPT"
-$    link_qual = "/DEBUG/MAP"
+$!
+$! LDAP.
+$!
+$ if (ldap .eq. 0)
+$ then
+$    cc_defs = cc_defs+ ", CURL_DISABLE_LDAP=1"
 $ endif
-$ msg_qual = "/OBJ=OBJDIR:"
 $!
-$! Put the right main config file in the two source directories for the build.
+$! Form CC qualifiers.
+$!
+$ cc_defs = "/define = (''cc_defs')"
+$ cc_qual2 = cc_qual2+ " /object = ''objdir'"+ -
+   " /include = ([-.lib], [-.src],"+ -
+   " [-.packages.vms], [-.packages.vms.''arch_name'])"
+$!
+$ 'vo_c' "CC opts:", -
+  " ''cc_defs'", -
+  " ''cc_qual1'", -
+  " ''cc_qual2'"
 $!
-$ if ( openssl .eq. 1) .or. ( hpssl .eq. 1)
+$ msg_qual = "/object = ''objdir'"
+$!
+$! Inform the victim of our plans.
+$!
+$ if (hpssl)
 $ then
-$    'vo_c' "%CURL-I-BLDSSL, building with SSL support"
+$    'vo_c' "%CURL-I-BLDHPSSL, building with HP SSL support"
 $ else
-$    'vo_c' "%CURL-I-BLDNOSSL, building without SSL support"
+$    if (openssl .ne. 0)
+$    then
+$       if (openssl .eq. 1)
+$       then
+$          'vo_c' -
+ "%CURL-I-BLDOSSL_OLB, building with OpenSSL (object library) support"
+$       else
+$          'vo_c' -
+ "%CURL-I-BLDOSSL_EXE, building with OpenSSL (shared image) support"
+$       endif
+$    else
+$       'vo_c' "%CURL-I-BLDNOSSL, building with NO SSL support"
+$    endif
 $ endif
-$ config_h = "CONFIG-VMS.H"
-$!
-$! Only do the copy if the source and destination files are different.
 $!
-$ call MoveIfDiff 'config_h' "[--.LIB]CONFIG.H"
-$ call MoveIfDiff 'config_h' "[--.SRC]CONFIG.H"
-$! call MoveIfDiff "SETUP.H" "[--.LIB]"
-$! call MoveIfDiff "SETUP.H" "[--.SRC]"
-$ call MoveIfDiff "CURLMSG.H" "[--.SRC]"
-$ call MoveIfDiff "CURLMSG.MSG" "[--.SRC]"
-$ call MoveIfDiff "CURLMSG.SDL" "[--.SRC]"
-$ call MoveIfDiff "CURLMSG_VMS.H" "[--.SRC]"
+$! Announce destination and SSL directories.
 $!
-$! The [--.LIB]amigaos.c and nwlib.c files aren't needed for the VMS build.
-$! If they are there, rename them so the brute force build works right.
+$ 'vo_c' "   OBJDIR = ''objdir'"
+$ 'vo_c' "   EXEDIR = ''exedir'"
 $!
-$ if f$search( "[--.lib]amigaos.c") .nes. "" 
+$ if (openssl .ne. 0)
 $ then
-$    rename [--.lib]amigaos.c .c_not_used
+$    ssllib = f$trnlnm( "ssllib")
+$    if (ssllib .eqs. "")
+$    then
+$        ssllib = "(undefined)"
+$    endif
+$    'vo_c' "   SSLLIB = ''ssllib'"
+$!
+$    if (openssl .eq. 1)
+$    then
+$       ossl_lib1 = f$trnlnm( "ssllib")+ "LIBSSL.OLB"
+$       ossl_lib2 = f$trnlnm( "ssllib")+ "LIBCRYPTO.OLB"
+$       msg = "object libraries"
+$    else
+$       if (openssl .eq. 2)
+$       then
+$          ossl_lib1 = f$trnlnm( "ssllib")+ "SSL_LIBSSL.EXE"
+$          ossl_lib2 = f$trnlnm( "ssllib")+ "SSL_LIBCRYPTO.EXE"
+$       else
+$          ossl_lib1 = f$trnlnm( "ssllib")+ "LIBSSL.EXE"
+$          ossl_lib2 = f$trnlnm( "ssllib")+ "LIBCRYPTO.EXE"
+$       endif
+$       msg = "shared images"
+$    endif
+$    if ((f$search( ossl_lib1) .eqs. "") .or. -
+      (f$search( ossl_lib2) .eqs. ""))
+$    then
+$       write sys$output "Can't find OpenSSL ''msg':"
+$       write sys$output "   ''ossl_lib1'"
+$       write sys$output "   ''ossl_lib2'"
+$       goto Common_Exit
+$    endif
 $ endif
-$ if f$search( "[--.lib]nwlib.c") .nes. "" 
+$!
+$! Define the "curl" (process) logical name for "#include <curl/xxx.h>".
+$!
+$ curl = f$trnlnm( "curl", "LNM$PROCESS")
+$ if (curl .nes. "")
 $ then
-$    rename [--.lib]nwlib.c .c_not_used
+$    write sys$output ""
+$    write sys$output -
+ "Process logical name ""curl"" is already defined, but this procedure"
+$    write sys$output -
+ "would override that definition.  Use a command like"
+$    write sys$output -
+ "      deassign /process curl"
+$    write sys$output -
+ "to cancel that logical name definition, and then and re-run this procedure."
+$    write sys$output ""
+$    goto Common_Exit
 $ endif
+$ define curl 'top_dev_dir'.include.curl]
+$!
+$! Copy the VMS-specific config file into the product directory.
+$!
+$ call MoveIfDiff 'proc_dev_dir'config-vms.h 'objdir'curl_config.h
+$!
 $ on control_y then goto Common_Exit
 $!
-$ call build "[--.lib]" "*.c" "objdir:curllib.olb"
+$ set default 'proc_dev_dir'
+$ call build "[--.lib]" "*.c" "''objdir'CURLLIB.OLB" "amigaos, nwlib, nwos"
 $ if ($status .eq. ctrl_y) then goto Common_Exit
-$ call build "[--.src]" "*.c" "objdir:curlsrc.olb"
+$ call build "[--.src]" "*.c" "''objdir'CURLSRC.OLB"
 $ if ($status .eq. ctrl_y) then goto Common_Exit
-$ call build "[--.src]" "*.msg" "objdir:curlsrc.olb"
+$ call build "[]" "*.msg" "''objdir'CURLSRC.OLB"
 $ if ($status .eq. ctrl_y) then goto Common_Exit
-$ if ( openssl .eq. 1) .and. ( hpssl .eq. 0)
+$!
+$ ldap_opt = ""
+$ if (ldap .ne. 0) then ldap_opt = ", ''proc_dev_dir'ldap.opt /options"
+$!
+$ if (openssl .ne. 0)
 $ then
-$    'vo_l' "%CURL-I-LINK_OSSL, linking with OpenSSL"
-$    link 'link_qual'/exe=exedir:curl.exe -
-          objdir:curlsrc/lib/include=(main,curlmsg),-
-          objdir:curllib/lib, libssl/lib, libcrypto/lib
-$ endif
-$ if ( openssl .eq. 1) .and. ( hpssl .eq. 1)
-$ then
-$    'vo_l' "%CURL-I-LINK_HPSSL, linking with hp SSL option"
-$    optfile = "[]hpssl_" + f$getsyi("ARCH_NAME") + ".opt/opt"
-$    link 'link_qual'/exe=exedir:curl.exe -
-          objdir:curlsrc/lib/include=(main,curlmsg),-
-          objdir:curllib/lib, 'optfile'
-$ endif
-$ if ( openssl .eq. 0) .and. ( hpssl .eq. 0)
-$ then
-$    'vo_l' "%CURL-I-LINK_NOSSL, linking without SSL support"
-$    link 'link_qual'/exe=exedir:curl.exe -
-          objdir:curlsrc/lib/include=(main,curlmsg),-
-          objdir:curllib/lib
+$    if (openssl .eq. 1)
+$    then
+$       'vo_l' "%CURL-I-LINK_OSSL, linking with OpenSSL (object library)"
+$    else
+$       'vo_l' "%CURL-I-LINK_HPSSL, linking with OpenSSL (shared image)"
+$    endif
+$ else
+$    if (hpssl)
+$    then
+$       'vo_l' "%CURL-I-LINK_HPSSL, linking with HP SSL"
+$    else
+$       'vo_l' "%CURL-I-LINK_NOSSL, linking with NO SSL support"
+$    endif
 $ endif
 $!
+$ link 'link_qual' /executable = 'exedir'CURL.EXE -
+   'objdir'curlsrc.olb /library /include = (main, curlmsg), -
+   'objdir'curllib.olb /library /include = (vms_misc) -
+   'ssl_opt' -
+   'ldap_opt'
+$!
 $ goto Common_Exit
 $!
 $! Subroutine to build everything with a filetype passed in via P2 in 
 $! the directory passed in via P1 and put it in the object library named 
-$! via P3
+$! via P3.  Exclude items in P4.
 $!
 $build:   subroutine
-$ on control_y then goto EndLoop ! SS$_CONTROLY
-$! set noon
-$   set default 'p1'
-$   search = p2
-$   reset = f$search("reset")
-$   if f$search( p3) .eqs. ""
-$   then
-$      LIB/CREATE/OBJECT 'p3'
-$   endif
-$   reset = f$search("reset",1)
+$    build_def = f$environment( "default")
+$    on control_y then goto EndLoop ! SS$_CONTROLY
+$    sts = 1 ! SS$_NORMAL.
+$!    set noon
+$    set default 'p1'
+$    search = p2
+$    reset = f$search("reset")
+$    if f$search( p3) .eqs. ""
+$    then
+$       librarian /create /object 'p3'
+$    endif
+$    reject_list__ = ","+ f$edit( p4, "COLLAPSE, UPCASE")+ ","
+$    reject_list___len = f$length( reject_list__)
+$    reset = f$search( "reset", 1)
 $Loop:
-$   file = f$search(search,1)
-$   if file .eqs. "" then goto EndLoop
-$      objfile = f$parse("objdir:.OBJ;",file)
-$      obj = f$search( objfile, 2)
-$      if (obj .nes. "")
-$      then
-$         if (f$cvtime(f$file(file,"rdt")) .gts. f$cvtime(f$file(obj,"rdt")))
-$         then
-$            call compile 'file'
-$            if .not. $status then return $status
-$            lib/object 'p3' 'objfile'
-$         else
-$            'vo_o' "%CURL-I-OBJUTD, ", objfile, " is up to date"
-$         endif
-$      else
-$         'vo_o' "%CURL-I-OBJDNE, ", file, " does not exist"
-$         call compile 'file'
-$         if .not. $status then return $status
-$         lib/object 'p3' 'objfile'
-$      endif
-$   goto Loop
+$    file = f$search( search, 1)
+$    if file .eqs. "" then goto EndLoop
+$!      Skip a name if it's in the P4 exclusion list.
+$       if (p4 .nes. "")
+$       then
+$          name__ = ","+ -
+            f$edit( f$parse( file, , , "NAME", "SYNTAX_ONLY"), "UPCASE")+ -
+            ","
+$          if (f$locate( name__, reject_list__) .lt. reject_list___len)
+$          then
+$             goto Loop
+$          endif
+$       endif
+$       objfile = f$parse( "''objdir'.OBJ;", file)
+$       obj = f$search( objfile, 2)
+$       if (obj .nes. "")
+$       then
+$          if (f$cvtime(f$file(file,"rdt")) .gts. f$cvtime(f$file(obj,"rdt")))
+$          then
+$             call compile 'file'
+$             sts = $status
+$             if .not. sts
+$             then
+$                goto EndLoop
+$             endif
+$             librarian /object 'p3' 'objfile'
+$          else
+$             'vo_o' "%CURL-I-OBJUTD, ", objfile, " is up to date"
+$          endif
+$       else
+$          'vo_o' "%CURL-I-OBJDNE, ", file, " does not exist"
+$          call compile 'file'
+$          sts = $status
+$          if .not. sts
+$          then
+$             goto EndLoop
+$          endif
+$          librarian /object 'p3' 'objfile'
+$       endif
+$    goto Loop
 $EndLoop:
-$   !purge
-$   set def 'origdir'
-$   endsubroutine   ! Build
+$!!!    purge
+$    set default 'build_def'
+$    exit 'sts'
+$ endsubroutine   ! Build
 $!
 $! Based on the file TYPE, do the right compile command.  
 $! Only C and MSG supported.
 $!
 $compile:   subroutine
-$   on control_y then return ctrl_y ! SS$_CONTROLY
-$!   set noon
-$   file = p1
-$   qual = p2+p3+p4+p5+p6+p7+p8
-$   typ = f$parse(file,,,"TYPE") - "."
-$   cmd_c = "CC "+cc_qual
-$   cmd_msg = "MESSAGE "+msg_qual
-$   x = cmd_'typ'
-$   'vo_c' x," ",file
-$   'x' 'file'
-$   ENDSUBROUTINE   ! Compile
+$    on control_y then return ctrl_y ! SS$_CONTROLY
+$!    set noon
+$    file = p1
+$    qual = p2+ p3+ p4+ p5+ p6+ p7+ p8
+$    typ = f$edit( f$parse( file, , , "TYPE"), "UPCASE") - "."
+$    if (typ .eqs. "C")
+$    then
+$       'vo_c' "CC (opts) ", file
+$       CC 'cc_defs' -
+         'cc_qual1' -
+         'cc_qual2' -
+         'file'
+$    else
+$       cmd_msg = "MESSAGE "+ msg_qual
+$       x = cmd_'typ'
+$       'vo_c' x," ",file
+$       'x' 'file'
+$    endif
+$ ENDSUBROUTINE   ! Compile
 $!
 $! Do a diff of the file specified in P1 with that in P2.  If different
 $! copy P1 to P2.  This also covers if P2 doesn't exist, but not if P2
 $! is an invalid filespec.
 $!
 $MoveIfDiff:  subroutine
-$   set NoOn
-$   set message/nof/noi/nos/not
-$   diff/out=nla0: 'p1' 'p2'
-$   status = $status
-$   set message/f/i/s/t
-$   if ( status .ne. %X006C8009) ! if status is not "no diff"
-$   then
-$      copy 'p1' 'p2'
-$      purge/nolog 'p2'
-$   endif
-$   on control_y then return ctrl_y ! SS$_CONTROLY
-$   ENDSUBROUTINE   ! MoveIfDiff
+$    set NoOn
+$    define /user_mode sys$error nl:
+$    define /user_mode sys$output nl:
+$    differences 'p1' 'p2'
+$    status = $status
+$    if ( status .ne. %X006C8009) ! if status is not "no diff"
+$    then
+$       copy 'p1' 'p2'
+$       purge /nolog 'p2'
+$    endif
+$    on control_y then return ctrl_y ! SS$_CONTROLY
+$ ENDSUBROUTINE   ! MoveIfDiff
 $!
 $Common_Exit:
-$   set default 'origdir'
-$   exit
+$ set default 'orig_def'
+$ if ((curl .eqs. "") .and. (f$trnlnm( "curl", "LNM$PROCESS") .nes. ""))
+$ then
+$    deassign curl
+$ endif
+$ exit
diff -urN curl-7.19.7/packages/vms/config-vms.h curl-7.19.7_s1/packages/vms/config-vms.h
--- curl-7.19.7/packages/vms/config-vms.h	2009-06-13 15:50:28 -0500
+++ curl-7.19.7_s1/packages/vms/config-vms.h	2009-12-15 22:18:49 -0600
@@ -15,13 +15,17 @@
 
 /* Define cpu-machine-OS */
 #ifdef __ALPHA
-#define OS "ALPHA-HP-VMS"
+# define OS "ALPHA-HP-VMS"
 #else
-#ifdef __VAX
-#define OS "VAX-HP-VMS"
-#else
-#define OS "IA64-HP-VMS"
-#endif
+# ifdef __VAX
+#  define OS "VAX-HP-VMS"
+# else
+#  ifdef __ia64
+#   define OS "IA64-HP-VMS"
+#  else
+#   define OS "unk-HP-VMS"
+#  endif
+# endif
 #endif
 
 /* Define if you have the ANSI C header files.  */
@@ -94,7 +98,7 @@
 #define HAVE_STRCASECMP 1
 
 /* Define if you have the strcmpi function.  */
-#define HAVE_STRCMPI 1
+/* #define HAVE_STRCMPI 1 */
 
 /* Define if you have the strdup function.  */
 #define HAVE_STRDUP 1
@@ -103,7 +107,7 @@
 #define HAVE_STRFTIME 1
 
 /* Define if you have the stricmp function.  */
-#define HAVE_STRICMP 1
+/* #define HAVE_STRICMP 1 */
 
 /* Define if you have the strstr function.  */
 #define  HAVE_STRSTR 1
@@ -147,38 +151,38 @@
 #ifdef USE_SSLEAY
 
 /* if OpenSSL is in use */
-#define USE_OPENSSL 1
+# define USE_OPENSSL 1
 
 /* Define if you have the crypto library (-lcrypto).  */
-#define HAVE_LIBCRYPTO 1
+# define HAVE_LIBCRYPTO 1
 
 /* Define if you have the ssl library (-lssl).  */
-#define HAVE_LIBSSL	1
+# define HAVE_LIBSSL	1
 
 /* Define if you have the <openssl/crypto.h> header file.  */
-#define HAVE_OPENSSL_CRYPTO_H 1
+# define HAVE_OPENSSL_CRYPTO_H 1
 
 /* Define if you have the <openssl/err.h> header file.  */
-#define HAVE_OPENSSL_ERR_H	1
+# define HAVE_OPENSSL_ERR_H	1
 
 /* Define if you have the <openssl/pem.h> header file.  */
-#define HAVE_OPENSSL_PEM_H	1
+# define HAVE_OPENSSL_PEM_H	1
 
 /* Define if you have the <openssl/rsa.h> header file.  */
-#define HAVE_OPENSSL_RSA_H 1
+# define HAVE_OPENSSL_RSA_H 1
 
 /* Define if you have the <openssl/ssl.h> header file.  */
-#define HAVE_OPENSSL_SSL_H	1
+# define HAVE_OPENSSL_SSL_H	1
 
 /* Define if you have the <openssl/x509.h> header file.  */
-#define HAVE_OPENSSL_X509_H	1
+# define HAVE_OPENSSL_X509_H	1
 
 /*
  * This needs to be defined for OpenSSL 0.9.7 and other versions that have the
  * ENGINE stuff supported. If an include of "openssl/engine.h" fails, then
  * undefine the define below.
 */
-#define HAVE_OPENSSL_ENGINE_H 1
+# define HAVE_OPENSSL_ENGINE_H 1
 
 #endif /* USE_SSLEAY */
 /* OpenSSL section ends here */
@@ -249,7 +253,7 @@
 /* Define if you have the `strtok_r' function.  */
 /* Condition lifted from <string.h>             */
 #if __CRTL_VER >= 70301000
-#define HAVE_STRTOK_R 1
+# define HAVE_STRTOK_R 1
 #endif
 
 /* Define if you have the `strtoll' function. */
@@ -277,7 +281,7 @@
 #define HAVE_STROPTS_H 1
 
 /* to disable LDAP */
-#define CURL_DISABLE_LDAP 1
+/* #define CURL_DISABLE_LDAP 1 */
 
 /* Define if you have the getnameinfo function. */
 #define HAVE_GETNAMEINFO 1
@@ -366,4 +370,10 @@
 /* Define to hide dollar sign from compilers in strict ansi mode. */
 #define decc_translate_vms(__s) decc$translate_vms(__s)
 
+/* Work-around for HAVE_STRICMP being ignored by "lib/ldap.c". */
+
+#ifndef HAVE_STRICMP
+# define stricmp strcasecmp
+#endif /* ndef HAVE_STRICMP */
+
 #endif /* HEADER_CONFIG_VMS_H */
diff -urN curl-7.19.7/packages/vms/ia64/README curl-7.19.7_s1/packages/vms/ia64/README
--- curl-7.19.7/packages/vms/ia64/README	2004-03-22 15:46:08 -0600
+++ curl-7.19.7_s1/packages/vms/ia64/README	1969-12-31 18:00:00 -0600
@@ -1 +0,0 @@
-1
diff -urN curl-7.19.7/packages/vms/ldap.opt curl-7.19.7_s1/packages/vms/ldap.opt
--- curl-7.19.7/packages/vms/ldap.opt	1969-12-31 18:00:00 -0600
+++ curl-7.19.7_s1/packages/vms/ldap.opt	2009-12-12 08:27:45 -0600
@@ -0,0 +1 @@
+sys$share:ldap$shr.exe /share
diff -urN curl-7.19.7/packages/vms/openssl_alpha.opt curl-7.19.7_s1/packages/vms/openssl_alpha.opt
--- curl-7.19.7/packages/vms/openssl_alpha.opt	1969-12-31 18:00:00 -0600
+++ curl-7.19.7_s1/packages/vms/openssl_alpha.opt	2009-12-12 17:26:09 -0600
@@ -0,0 +1,2 @@
+SSLLIB:LIBCRYPTO.EXE /SHARE
+SSLLIB:LIBSSL.EXE /SHARE
diff -urN curl-7.19.7/packages/vms/openssl_ia64.opt curl-7.19.7_s1/packages/vms/openssl_ia64.opt
--- curl-7.19.7/packages/vms/openssl_ia64.opt	1969-12-31 18:00:00 -0600
+++ curl-7.19.7_s1/packages/vms/openssl_ia64.opt	2009-12-12 17:26:28 -0600
@@ -0,0 +1,2 @@
+SSLLIB:LIBCRYPTO.EXE /SHARE
+SSLLIB:LIBSSL.EXE /SHARE
diff -urN curl-7.19.7/packages/vms/openssl_ssl_alpha.opt curl-7.19.7_s1/packages/vms/openssl_ssl_alpha.opt
--- curl-7.19.7/packages/vms/openssl_ssl_alpha.opt	1969-12-31 18:00:00 -0600
+++ curl-7.19.7_s1/packages/vms/openssl_ssl_alpha.opt	2009-12-12 17:25:09 -0600
@@ -0,0 +1,2 @@
+SSLLIB:SSL_LIBCRYPTO.EXE /SHARE
+SSLLIB:SSL_LIBSSL.EXE /SHARE
diff -urN curl-7.19.7/packages/vms/openssl_ssl_ia64.opt curl-7.19.7_s1/packages/vms/openssl_ssl_ia64.opt
--- curl-7.19.7/packages/vms/openssl_ssl_ia64.opt	1969-12-31 18:00:00 -0600
+++ curl-7.19.7_s1/packages/vms/openssl_ssl_ia64.opt	2009-12-12 17:25:28 -0600
@@ -0,0 +1,2 @@
+SSLLIB:SSL_LIBCRYPTO.EXE /SHARE
+SSLLIB:SSL_LIBSSL.EXE /SHARE
diff -urN curl-7.19.7/packages/vms/openssl_ssl_vax.opt curl-7.19.7_s1/packages/vms/openssl_ssl_vax.opt
--- curl-7.19.7/packages/vms/openssl_ssl_vax.opt	1969-12-31 18:00:00 -0600
+++ curl-7.19.7_s1/packages/vms/openssl_ssl_vax.opt	2009-12-12 17:25:44 -0600
@@ -0,0 +1,2 @@
+SSLLIB:SSL_LIBCRYPTO.EXE /SHARE
+SSLLIB:SSL_LIBSSL.EXE /SHARE
diff -urN curl-7.19.7/packages/vms/openssl_vax.opt curl-7.19.7_s1/packages/vms/openssl_vax.opt
--- curl-7.19.7/packages/vms/openssl_vax.opt	1969-12-31 18:00:00 -0600
+++ curl-7.19.7_s1/packages/vms/openssl_vax.opt	2009-12-12 17:26:46 -0600
@@ -0,0 +1,2 @@
+SSLLIB:LIBCRYPTO.EXE /SHARE
+SSLLIB:LIBSSL.EXE /SHARE
diff -urN curl-7.19.7/packages/vms/vax/README curl-7.19.7_s1/packages/vms/vax/README
--- curl-7.19.7/packages/vms/vax/README	2004-03-22 15:47:23 -0600
+++ curl-7.19.7_s1/packages/vms/vax/README	1969-12-31 18:00:00 -0600
@@ -1 +0,0 @@
-1

