lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


rc4 is ok on IBM z/OS ( v1r11 in USS environment, made "posix" )
after i added at end of src/luaconf.h

#if defined(__MVS__)
  /* To open MVS datasets we don't want io.open() to check mode
   * C/C++ RTL will do it fine.
   * cf. liolib.c
   */
  #define lua_checkmode(x) (1)

  /* To ensure bin. ops (bit32) works whichever floating-point internal format
   * is used (IEEE or IBM's hexadecimal floating-point)
   * [Je n'ai pas vraiment cherché pourquoi]
   */
  #undef LUA_IEEE754TRICK

#endif


----- Mail original -----
De: "Luiz Henrique de Figueiredo" <lhf@tecgraf.puc-rio.br>
À: lua-l@lists.lua.org
Envoyé: Lundi 25 Mars 2013 18:01:13
Objet: Re: [ANN] Lua 5.2.2 (rc4) now available

We are about to freeze Lua 5.2.2.

If there are still any suggestions for Lua 5.2.2, please post them here now.
(Only bug fixes in code or docs can be added, no new features.)

Lua 5.2.2 (rc4) is available at http://www.lua.org/work/
 
We thank everyone for their feedback on Lua 5.2 till now.

All feedback welcome. Thanks.
--lhf