-
Update: I thought I was on to something, working the RXSIOSAY portion of the code - nope. Then I googled the problem and found people suggesting opening stdout as a binary file - again, nope :-(.
2009-05-05 14:39:25 UTC in Rexx/Wrapper
-
Consider this simple test case entered into test.rexx:
say 1
say 2
say 3
say 4
Then from a command line, type
rexx test > out1.txt
out1 is just as expected, the numbers 1-4, one per line. However, if you take that file and Rexxwrap it:
rexx rexxwrap.cmd
and use just the defaults (no encryption etc.) to get test.exe. Then when you run
test.exe > out2.txt
and run a hex editor on...
2009-05-01 15:01:16 UTC in Rexx/Wrapper
-
Hi,
If you look further down the bug list, you will see a similarly titled document for building on HP-UX; that was for PA-RISC. This document is for building on HP-UX with Itanium processors and Regina-Rexx 3.3.
You untar and run configure as supplied in the 3.3 tarball. Then edit Makefile as follows:
CEXTRA = +DD64 -DREGINA_SHARE_DIRECTORY=\"$(sharedir)\" -Aa +z
EEXTRA =...
2008-05-30 15:09:06 UTC in Regina REXX Interpreter
-
Hi,
I have a few minor STREAM issues I'd like to post for resolution in a future release. The problems exist in both versions 3.3 and 3.4.
The tests were on Windows XP or Redhat Linux.
1) WINDOWS ONLY: 'query exists' does not work if a system slash is present at the end of the given path. Example:
say stream("c:\regina34\", 'c', 'query exists')
returns NULL, while
say...
2008-04-23 20:05:18 UTC in Regina REXX Interpreter
-
Hi,
First, I must say I really appreciate SourceForge!
I have a minor yet recurring issue: It would be great if the site would return me to the page I was viewing after logging in!
Usually I locate the page I want in SourceForge from a Google search. Once I'm at the page I want, I may need to log in; if I do so, I'm taken to a "my SourceForge" page, and then I need to navigate to the...
2008-04-23 19:29:30 UTC in SourceForge.net
-
Hi,
I would like to start the discussion (and process) of adding an INCLUDE instruction to Regina-Rexx. I initiated this topic as Support Request Item 950044.
I create numerous Rexx routines and over time have accumulated several procedures that are used over and over in each routine (for instance, tell me what OS I'm on, get me the system temporary directory name), and have accumulated...
2008-04-03 17:20:32 UTC in Regina REXX Interpreter
-
The same stated (mis)behavior occurs in all the *nixes I've ported to: Irix 6.5, Solaris 8, HP-UX 11.1, and AIX 5.2. Only Linux and Windows(!) seem to behave like they're supposed to.
FULL WORKAROUND
Caveat - this workaround assumes you're inspecting "whoami" and the results of "ps" in an application started from the command line - it is not a daemon. I don't know what happens if you start...
2008-03-03 23:09:24 UTC in Rexx/Wrapper
-
WORKAROUND -
Assuming the program is named "testparse":
if uname('s') = "IRIX" then do
ls. = ""
whoami = ''
prod="testparse"
address system 'ps -ef | grep "'||prod'||" | grep -v grep' with output stem ls.
do i=1 while ls.i ""
do j=1 to words(ls.i)
if right(word(ls.i, j), length(prod)) = prod then do
whoami = word(ls.i, j)
2008-02-15 16:28:54 UTC in Rexx/Wrapper
-
Hi Mark,
Thanks for the prompt reply. At least in Irix 6.5, the situation is much worse than that. For the RexxWrapped program mentioned before, the results are almost always only the name without path or extension! So the commands
./testparse
cd ..
build/testparse
ALWAYS return
UNIX COMMAND testparse
The one exception is if the fully qualified pathname is given...
2008-02-15 16:23:19 UTC in Rexx/Wrapper
-
Hi,
I've built RexxWrapper 3.4 for use under SGI Irix 6.5 and have Regina 3.3. I'm linking statically (libregina.a). After wrapping this simple test program,
parse source mypath
say mypath
I get
UNIX COMMAND testparse
If I run the same test program through the Rexx interpreter (rexx testparse.rexx), I get
UNIX COMMAND /usr/people/chris/build/testparse.rexx
which is the correct...
2008-02-15 06:07:19 UTC in Rexx/Wrapper