I'm running a virtual Vax/VMS under the simh simulator on a Pi4, and it's behind a networking config that means it only has access to machines internal to my home network. The only networking the Vax/VMS build I'm using supports, is FTP and Telnet. The FTP server is an old one and there is no SSL involved at all. Although in principle there is an alternative networking stack that could be installed, I'm not going to do that for various reasons - I need to live with what I've got in this image. So......
Apologies for posting here but it's the only place I can find in this project that actually allows posting. I'm using uncrustify to format code that is output from a transpiler. Some of the output consists of #if statements which (for unavoidable reasons not worth getting into here) have constant conditions - either '1' or '0'. The true branch of one of these #if statements (whether the 'if' part, or the 'else' part, depending on the value of the condition) is formatted but the false branch never...
signed/unsigned error in srcmess/cheat.c
I was able to extract the filenames from the corrupt zip and search for them - found an identical set of files at http://striker.interhact.net/inkscape/inkscape-svn/src/extension/dxf2svg/ However the files need a bit of tweaking to compile: any #include <string> needs to be changed to #include <string.h> (and the same header has to be added to several other files). And there are a bunch of arrays whose bounds are exceeded at runtime - I doubled the sizes of most arrays to get it to run on a few input...
I was able to extract the filenames from the corrupt zip and search for them - found an identical set of files at http://striker.interhact.net/inkscape/inkscape-svn/src/extension/dxf2svg/ However the files need a bit of tweaking to compile: any #include <string> needs to be changed to #include <string.h> (and the same header has to be added to several other files). And there are a bunch of arrays whose bounds are exceeded at runtime - I doubled the sizes of most arrays to get it to run on a few input...
This is still outstanding - compiling from source on Ubuntu. Patch worked but needs...
The last release fixed the minor warnings from things like %% in formatting strings,...