home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rx08eemx.zip / README.08c < prev    next >
Text File  |  1997-07-22  |  3KB  |  64 lines

  1.                          Regina 0.08c
  2.                          22 July 1997
  3.  
  4.  
  5. Changes in this release (from 0.08b)
  6. ------------------------------------
  7.  
  8. o fixed error with divide by zero under Win32 port
  9. o Changed regina executable.  In previous 0.08 releases, the regina
  10.   executable was a front end to the Rexx SAA API, and used the RexxStart()
  11.   function to start the interpreter.  One of the drawbacks with this
  12.   method of executing a Rexx program is that only 1 parameter could be
  13.   passed (from the command line) to regina. eg.
  14.     % regina test.rex a b c
  15.   would in fact fail!
  16.   You needed to run:
  17.     % regina test.rex "a b c"
  18.   Another problem with this method of calling RexxStart() is that the 
  19.   default environment is assumed to be other than the operating system
  20.   from which regina was called. What this resulted in was execution
  21.   of operating system commands did not work as expected. eg.
  22.     /**/
  23.     'copy' file1 file2
  24.   would fail because the default environment did not know what to do with
  25.   'copy'. One had to use the following:
  26.     /**/
  27.     Address Command 'copy' file1 file2
  28.   This problem has also been rectified in this release.
  29. o Fixed an error with the DATE() conversion to Weekday format.  It would
  30.   always return the current day of the week rather than the day of the
  31.   week for the supplied date.
  32. o Fixed a problem with the configure script under Un*x where the
  33.   generated Makefile was incorrect for compilers that do not allow
  34.   -c and -o together.
  35. o The sample external function packages under Win95/NT were compiled
  36.   incorrectly and failed to work.  These are now correct.
  37. o Several changes were made to the API to conform more closely to the
  38.   SAA API.  The most significant was to the return value parameter in
  39.   the RexxStart() function.
  40. o The configure script has been changed in this release to test for
  41.   the GNU loader.  If your machine does not have the GNU loader, it is
  42.   likely that you will get some "strange" errors displayed in the
  43.   middle of the execution of the configure script.  Just ignore them.
  44. o Minor changes to some of the scripts in "trip" to correct errors in
  45.   BIF fixed in 0.08b.
  46.  
  47. ------------------------------------------------------------------------
  48.  This release will be the last until changes made by Les Moull are
  49.  incorporated.
  50. ------------------------------------------------------------------------
  51.  
  52. Please report any bugs with this release of Regina to me, NOT to Anders.
  53. Most likely the bugs are of my origin, so I will attempt to fix them.
  54. As with previous bugs fixed by me, I will pass these fixes on to Anders.
  55.  
  56. Cheers, Mark.
  57. ------------------------------------------------------------------------
  58.  Mark Hessling                 Email:             M.Hessling@qut.edu.au
  59.  PO Box 203                    Phone:                    +617 3802 0800
  60.  Bellara                          http://www.lightlink.com/hessling/
  61.  QLD 4507                      **** Maintainer PDCurses & REXX/SQL ****
  62.  Australia                     ************* Author of THE ************
  63. +------------------------------------------------------------------------
  64.