<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: GNV and CRTL in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263715#M40802</link>
    <description>&amp;gt;&amp;gt;&amp;gt; I'm in the process of building the GNV environmet from scratch, so no GNV utilities, please (except where the build process calls them).&lt;BR /&gt;&lt;BR /&gt;Is this really "from scratch"? It seems good enough to build GNV from the known source tree and then use its tools to create a branch.&lt;BR /&gt;&lt;BR /&gt;On the other hand, did you try the VMS tools for that: diff/slp and edit/sumslp?&lt;BR /&gt;</description>
    <pubDate>Tue, 23 Nov 2010 20:11:02 GMT</pubDate>
    <dc:creator>H.Becker</dc:creator>
    <dc:date>2010-11-23T20:11:02Z</dc:date>
    <item>
      <title>GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263704#M40791</link>
      <description>While building GNV from scratch I stumbled upon a CRTL behavior that I can't understand.&lt;BR /&gt;&lt;BR /&gt;Environment: OpenVMS I64 V8.3-1H1 + VMS831H1I_UPDATE V8.0, HP C V7.3-019.&lt;BR /&gt;&lt;BR /&gt;After fiddling a bit with the GNV sources, I took a GNU diff against the sourceforge source files and started over. To keep the SF source tree clean, I defined a GNV_ROOT consisting of GNV_SPECIFIC (my build directory) and GNV_COMMON (the SF source tree), and duplicated GNV_COMMON's directory structure in GNV_SPECIFIC. Then I SET DEFAULT GNV_ROOT:[000000], SET PROCESS/PARSE=EXTENDED/CASE=SENSITIVE, and called GNU patch with my diff file to carry over the changes to the new directory structure. Everything's fine for files like crtlsup/makefile.com or build/FEATURES.COM, but for file/file-4.09/src/compress.c patch says it can't find the input file. I traced this to a failing stat call (PCH\intuit_diff_type\%LINE 9402, errno=2 = ENOENT - No such file or directory). After some experimentation I found that to support unix paths that contain directory names with dots I have to define DECC$EFS_CHARSET. But the compress.c patch still fails under that...&lt;BR /&gt;&lt;BR /&gt;Any other ideas why stat can't find this file? &lt;BR /&gt;&lt;BR /&gt;TIA&lt;BR /&gt;Martin</description>
      <pubDate>Mon, 22 Nov 2010 08:33:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263704#M40791</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2010-11-22T08:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263705#M40792</link>
      <description>Another data point: when I SET DEFAULT GNV_ROOT:[file.file-4^.09.src], and call GNU patch there (stripping 4 path elements), it works!&lt;BR /&gt;&lt;BR /&gt;I don't get it...</description>
      <pubDate>Mon, 22 Nov 2010 09:48:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263705#M40792</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2010-11-22T09:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263706#M40793</link>
      <description>I don't think the process settings for case handling and extended parsing have a one-to-one correspondence to what the CRTL does.  For example, if case matters, you'll likely need DECC$EFS_CASE_PRESERVE and/or DECC$ARGV_PARSE_STYLE.  In your problem example, though, it looks like it's all lower case.&lt;BR /&gt;&lt;BR /&gt;Do check, since you have case sensitivity turned on, that the actual file and directory names on disk are the same as specified in the patch, e.g., that you have src.DIR;1, not SRC.DIR;1.&lt;BR /&gt;&lt;BR /&gt;You might check whether you have the logical name "file" defined or try defining DECC$UNIX_PATH_BEFORE_LOGNAME.  Make sure you do NOT have DECC$EFS_NO_DOTS_IN_DIRNAME defined.&lt;BR /&gt;&lt;BR /&gt;I actually would have expected DECC$EFS_CHARSET to be enough in this example.  Since it isn't, I would try a big hammer like:&lt;BR /&gt;&lt;BR /&gt;$ define DECC$UNIX_LEVEL 30&lt;BR /&gt;&lt;BR /&gt;and see what happens.  You could also edit the patch to insert caret escapes, so &lt;BR /&gt;&lt;BR /&gt;file/file-4.09/src/compress.c&lt;BR /&gt;&lt;BR /&gt;becomes&lt;BR /&gt;&lt;BR /&gt;file/file-4^.09/src/compress.c&lt;BR /&gt;&lt;BR /&gt;which really shouldn't be necessary but might work.&lt;BR /&gt;&lt;BR /&gt;Navigating to the subdirectory as you have done is a good one-off solution for one file, but wouldn't help if the patch had numerous files from several directories, so I hope we get to the bottom of this.</description>
      <pubDate>Mon, 22 Nov 2010 17:21:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263706#M40793</guid>
      <dc:creator>Craig A Berry</dc:creator>
      <dc:date>2010-11-22T17:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263707#M40794</link>
      <description>IIRC, there was a particular link command that was used for parts of gnv; that included a lib$initialize psect module into the image that seeks to establish the DECC$ hackery correctly, IIRC.&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Nov 2010 18:18:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263707#M40794</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2010-11-22T18:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263708#M40795</link>
      <description>What Hoff is refering to is crtlsup/src/vms_crtl_init.c&lt;BR /&gt;&lt;BR /&gt;From what I read, you want to have/use GNV diff and patch. Patch seems to be missing in GNV, and your versions of these GNU tools for VMS seem to miss the necessary initialization with the DECC$ features. The above module should help or point you into the right direction..</description>
      <pubDate>Mon, 22 Nov 2010 21:18:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263708#M40795</guid>
      <dc:creator>H.Becker</dc:creator>
      <dc:date>2010-11-22T21:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263709#M40796</link>
      <description>vms_crtl_init.c is visible here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://gnv.cvs.sourceforge.net/viewvc/gnv/gnv213/crtlsup/src/vms_crtl_init.c?revision=1.1.1.1&amp;amp;view=markup" target="_blank"&gt;http://gnv.cvs.sourceforge.net/viewvc/gnv/gnv213/crtlsup/src/vms_crtl_init.c?revision=1.1.1.1&amp;amp;view=markup&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It looks like there is a version of GNU patch in the latest GNV:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://gnv.cvs.sourceforge.net/viewvc/gnv/gnv213/patch/" target="_blank"&gt;http://gnv.cvs.sourceforge.net/viewvc/gnv/gnv213/patch/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;but there have been various ports kicking around so I don't know if that's the one Martin is using.</description>
      <pubDate>Mon, 22 Nov 2010 21:44:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263709#M40796</guid>
      <dc:creator>Craig A Berry</dc:creator>
      <dc:date>2010-11-22T21:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263710#M40797</link>
      <description>Craig, Hoff, Hartmut,&lt;BR /&gt;&lt;BR /&gt;thanks for the confirmation that it should have worked ;-) In detail:&lt;BR /&gt;&lt;BR /&gt;I had carefully looked after the case of directory names (having been bit by that several times in this project). So yes, the whole path's case is exactly as it appears to patch:&lt;BR /&gt;&lt;BR /&gt;$ dir [.gnv213.file.file-4^.09.src]compress.c&lt;BR /&gt;&lt;BR /&gt;Directory DISK$BUILD:[build.gnv213.file.file-4^.09.src]&lt;BR /&gt;&lt;BR /&gt;compress.c;1&lt;BR /&gt;&lt;BR /&gt;Total of 1 file.&lt;BR /&gt;&lt;BR /&gt;(BTW: GNV_SPECIFIC is defined as 'f$trnlnm("DISK$BUILD")'[build.gnv213.] )&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I also fell into the logical name trap (though with MANPATH defined by CDE, and the man kit containing a manpath.OBJ file). But no, in this case "file" is not defined as a logical.&lt;BR /&gt;&lt;BR /&gt;Re: DECC$UNIX_LEVEL : In my despair to get it to work (without testing any one of the dozens of feature logicals) I indeed set that logical to 30 once - no change.&lt;BR /&gt;&lt;BR /&gt;Re: Inserting a caret into the Unix path : I tried that, though not with this patch, but in my general experiments with stat (see attached).&lt;BR /&gt;&lt;BR /&gt;Re: Using vms_crtl_init / GNV's patch : I'm in the process of building the GNV environment from scratch, so no GNV utilities, please (except where the build process calls them). I have no idea where my gpatch.exe came from - it gets copied from system to system :-) Most probably it's the Freeware CD version. To trace the error, I fetched the sources from Freeware #5 and compiled it /DEBUG. So, no decc$feature_set here. BUT: the GNV environment contains FEATURES.COM which I called when setting it up. This defines a whole slew of DECC$* feature logicals. Should have the same effect, shouldn't it?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://gnv.cvs.sourceforge.net/viewvc/gnv/gnv213/build/FEATURES.COM?revision=1.1.1.1&amp;amp;view=markup" target="_blank"&gt;http://gnv.cvs.sourceforge.net/viewvc/gnv/gnv213/build/FEATURES.COM?revision=1.1.1.1&amp;amp;view=markup&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;(plus, of course, my definition of DECC$EFS_CHARSET).&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Martin&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Nov 2010 14:44:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263710#M40797</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2010-11-23T14:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263711#M40798</link>
      <description>I guess the next thing to do would be to make a tiny C program that does only a stat and see if you can reproduce the ENOENT that way.  If so, then run it under SET WATCH FILE and see what it's actually looking for and can't find.</description>
      <pubDate>Tue, 23 Nov 2010 15:46:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263711#M40798</guid>
      <dc:creator>Craig A Berry</dc:creator>
      <dc:date>2010-11-23T15:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263712#M40799</link>
      <description>This whole area of C has been a moving target, particularly around the logical name morass.  Old C code can variously need tweaks here, and (when this arises) usually with the logical name settings.  I'd not assume that old code works.&lt;BR /&gt;&lt;BR /&gt;You'll need to decode the FEATURES.COM settings for your environment; that list of logical names is incomplete.&lt;BR /&gt;&lt;BR /&gt;Don't turn on case sensitivity unless you absolutely need that.  That switch will find filename and filename casing assumptions all over the place.&lt;BR /&gt;&lt;BR /&gt;GNV has problems with mixed environments; mixing VMS file specifications and Unix path syntax is problematic.  I'd suggest using (only) Unix syntax, as that path seems to be the most reliable.&lt;BR /&gt;&lt;BR /&gt;Utility doesn't come from simplicity or surface aesthetics. Utility comes from forging complexity into something you can comfortably wield.&lt;BR /&gt;&lt;BR /&gt;The GNV initialization code stuff establishes an lib$initialize initialization psect that sets the defaults for the executable; you can recreate this code yourself easily, and establish the defaults in a somewhat modular fashion.  (This is the workaround for most of the DECC$* logical name morass.)&lt;BR /&gt;&lt;BR /&gt;There are diff, patch and xxd tools in the OpenVMS vim kit over at Polarhome, if that's of interest.&lt;BR /&gt;&lt;BR /&gt;I'd probably get (most of) the sourceforge svn out of the picture and run the repository with git; git-svn or a git svn clone command (if you're departing from svn) can help with that.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.kernel.org/pub/software/scm/git/docs/git-svn.html" target="_blank"&gt;http://www.kernel.org/pub/software/scm/git/docs/git-svn.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;git svn clone &lt;A href="http://PROJECT.svn.sourceforge.net/svnroot/PROJECT" target="_blank"&gt;http://PROJECT.svn.sourceforge.net/svnroot/PROJECT&lt;/A&gt; PROJECT.git&lt;BR /&gt;&lt;BR /&gt;There are various issues with the default GNV set-up; have a look at the environment over at DECUServe for some of the fixes and updates that can be required.&lt;BR /&gt;&lt;BR /&gt;And following the same vein, the DECUServe PORTING_TO_VMS notes conference has extensive information on C portability and the DECC$* settings.&lt;BR /&gt;&lt;BR /&gt;I'd hope that the GNV project will decide to start using Sourceforge as something more than a file server and to engage the community, too; it'll be interesting to learn if this is a future during that upcoming GNV session.&lt;BR /&gt;&lt;BR /&gt;It's often easier to fix the file formats (switching to stream LF) and migrate the VMS files to a platform with tools for the necessary work, then haul the stuff back to VMS to build it.&lt;BR /&gt;&lt;BR /&gt;Build the reproducer, too.  Narrow this stuff down.&lt;BR /&gt;&lt;BR /&gt;I've posted some of my adventures with GNV.  Here's one:&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/1481" target="_blank"&gt;http://labs.hoffmanlabs.com/node/1481&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Here are some of the topics associated with the DECC$* logical name settings:&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/1513" target="_blank"&gt;http://labs.hoffmanlabs.com/node/1513&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/1515" target="_blank"&gt;http://labs.hoffmanlabs.com/node/1515&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;"Utility doesn't come from simplicity or surface aesthetics. Utility comes from forging complexity into something you can comfortably wield."   Unfortunately and problematically, both GNV and the C Unix compatibility environment and the current code-drop use model over at Sourceforge are presently al; rather unwieldy.</description>
      <pubDate>Tue, 23 Nov 2010 17:02:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263712#M40799</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2010-11-23T17:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263713#M40800</link>
      <description>Martin, just as a reminder that what goes around comes around, note the following in src/vms/vmsutil.c of the GNU patch distro on the Freeware CD v5.0:&lt;BR /&gt;&lt;BR /&gt; * Stolen from the VMSperl source by Martin Vorlaender &lt;MV&gt;&lt;BR /&gt; * Um, that's actually GPB'd (GNU Public Borrowed) under the terms of the&lt;BR /&gt; * GNU Public License.&lt;BR /&gt;&lt;BR /&gt;And a few lines further down:&lt;BR /&gt;&lt;BR /&gt; * &lt;BR /&gt; * Wrapper routines added by Craig Berry based in part on code by Charles&lt;BR /&gt; * Lane.&lt;BR /&gt; *&lt;BR /&gt;&lt;BR /&gt;So what's happening is our fault :-).  As Hoff said, don't assume old code will work unmodified, even (especially?) if it's your own!&lt;BR /&gt;&lt;BR /&gt;More specifically, there is a my_stat() wrapper around stat() that calls a home-grown converter routine to convert a filespec in Unix syntax to VMS syntax.  The converter routine contains the following line in the part that handles the directory portion of the path:&lt;BR /&gt;&lt;BR /&gt;      else *(cp1++) = '_';  /* fix up syntax - '.' in name not allowed */&lt;BR /&gt;&lt;BR /&gt;So we're explicitly defeating any attempt to make a dot in a directory name visible to the filesystem by converting it to an underscore.  Remember, the target 10 years ago was VMS 6.x and early 7.x.  There was limited or no capability in the CRTL to accept Unix-style pathnames, convert between Unix and VMS syntax, etc.  ODS-5 did not exist and a dot in a directory name was a hard syntax error with no features to work around that.&lt;BR /&gt;&lt;BR /&gt;I think your best bet may be to start over with the GNU patch from the GNV kit (or even just the authoritative GNU sources).&lt;/MV&gt;</description>
      <pubDate>Tue, 23 Nov 2010 17:50:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263713#M40800</guid>
      <dc:creator>Craig A Berry</dc:creator>
      <dc:date>2010-11-23T17:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263714#M40801</link>
      <description>Ouch!&lt;BR /&gt;&lt;BR /&gt;Of course I didn't think of stepping into the stat call...&lt;BR /&gt;&lt;BR /&gt;Time to update the GPB'ed portions of gpatch, I guess.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot!&lt;BR /&gt;&lt;BR /&gt;Over and out...</description>
      <pubDate>Tue, 23 Nov 2010 19:44:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263714#M40801</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2010-11-23T19:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263715#M40802</link>
      <description>&amp;gt;&amp;gt;&amp;gt; I'm in the process of building the GNV environmet from scratch, so no GNV utilities, please (except where the build process calls them).&lt;BR /&gt;&lt;BR /&gt;Is this really "from scratch"? It seems good enough to build GNV from the known source tree and then use its tools to create a branch.&lt;BR /&gt;&lt;BR /&gt;On the other hand, did you try the VMS tools for that: diff/slp and edit/sumslp?&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Nov 2010 20:11:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263715#M40802</guid>
      <dc:creator>H.Becker</dc:creator>
      <dc:date>2010-11-23T20:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263716#M40803</link>
      <description>Hartmut,&lt;BR /&gt;&lt;BR /&gt;no, this isn't from scratch in the sense that I'm not starting with the SF sources.&lt;BR /&gt;&lt;BR /&gt;The "Building GNV" page at &lt;A href="http://gnv.sourceforge.net/building.html" target="_blank"&gt;http://gnv.sourceforge.net/building.html&lt;/A&gt; starts from the source files installed with the binary kit, i.e. a working GNV environment is assumed to build GNV from source.&lt;BR /&gt;&lt;BR /&gt;As I find this to be a bit absurd, I tried to *really* build from the sources, i.e. download the source files from SourceForge onto a VMS system equipped with just the compilers (NB: it doesn't say anywhere you need BLISS installed [to build vitpu]). That's what I meant when writing "from scratch".&lt;BR /&gt;&lt;BR /&gt;I'm comfortable with GNU patch usually, and haven't ever used SUMSLP, so I never thought of using that.&lt;BR /&gt;&lt;BR /&gt;cu,&lt;BR /&gt;Martin</description>
      <pubDate>Wed, 24 Nov 2010 04:46:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263716#M40803</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2010-11-24T04:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263717#M40804</link>
      <description>To me Posix on VMS was the unwanted child, GNV seems to be wanted somehow, but neglected.&lt;BR /&gt;&lt;BR /&gt;There are cvs commands shown on sourceforge, which do not work: That means you can't take a snapshot or check out any module via cvs, except you are registered/permitted. You just can browse and view (download) each single file. That may make sense when there is no cvs for VMS. Is there?&lt;BR /&gt;&lt;BR /&gt;But there is a GNV tarball, gnv.tar.gz, which contains both source trees. Why someone would want both at the same time is unknown to me. This file shows under "browse code". Then you need just a recent tar utility on VMS.&lt;BR /&gt;&lt;BR /&gt;So you can get a full source tree without installing the binaries. Whether this is the same tree as the one which comes with the binaries is unknown to me.&lt;BR /&gt;&lt;BR /&gt;I didn't see any readme or so, but I would just kick off a "@[.build]build all". (I haven't tried it, I currently don't have access to a system with enough resouces andd a BLISS compiler).&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Nov 2010 17:57:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263717#M40804</guid>
      <dc:creator>H.Becker</dc:creator>
      <dc:date>2010-11-24T17:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263718#M40805</link>
      <description>&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;There are cvs commands shown on sourceforge, which do not work: That means you can't take a snapshot or check out any module via cvs, except you are registered/permitted.&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;I used TortoiseCVS for Windows to checkout the source tree (which is integrated into Exploder) but you made me curious, so I tried the commands from &lt;A href="http://sourceforge.net/projects/gnv/develop" target="_blank"&gt;http://sourceforge.net/projects/gnv/develop&lt;/A&gt; . The first one asks for a password, but it's okay to just press RETURN there. For the second one, you have to look up via "browse code" that the module name is "gnv213". Then it checks out the source tree okay.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;I didn't see any readme or so, but I would just kick off a "@[.build]build all". &lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;The "doc" folder has a "Read Me First" in TXT, PS, PDF, and HTML. It's for version 1.6 (July 2004), though. And the PDF is broken. But that folder at least has current release notes. And there's the "Building GNV" web page I mentioned.&lt;BR /&gt;&lt;BR /&gt;You'll need multiple rounds of build.com, as several build files use GNV commands (e.g. bash, make, which, dcl, patch) - which of course is not a problem if you're starting with GNV already installed...&lt;BR /&gt;&lt;BR /&gt;And, of course, neither the kitting commands nor GNV$STARTUP.COM is included.&lt;BR /&gt;&lt;BR /&gt;cu,&lt;BR /&gt;Martin</description>
      <pubDate>Thu, 25 Nov 2010 05:05:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263718#M40805</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2010-11-25T05:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: GNV and CRTL</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263719#M40806</link>
      <description>Just FYI:&lt;BR /&gt;&lt;BR /&gt;Conditionalizing most of vmsutil.c:do_tovmsspec() with "#if __CRTL_VER &amp;lt; 70000000 || defined (LINK_TARGET_PRE7)" yields:&lt;BR /&gt;&lt;BR /&gt;- gpatch can now cope with dots in directory names, i.e. the stat call isn't failing any more&lt;BR /&gt;&lt;BR /&gt;- gpatch doesn't understand VMS filename syntax on the command line any more (e.g. for the -i filename).&lt;BR /&gt;&lt;BR /&gt;Yes, it would have been better to get a current do_tovmsspec() from the perl 5.12.2 sources, but laziness prevails (for now, at least).&lt;BR /&gt;&lt;BR /&gt;cu,&lt;BR /&gt;Martin</description>
      <pubDate>Mon, 29 Nov 2010 10:24:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/gnv-and-crtl/m-p/5263719#M40806</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2010-11-29T10:24:25Z</dc:date>
    </item>
  </channel>
</rss>

