[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: Lua DLL name (Was: [ANN] LuaODE 0.3)
- From: "Jerome Vuarand" <jerome.vuarand@...>
- Date: Mon, 26 Mar 2007 13:59:00 -0400
Antonio Scuri:
> PS: a few people complained about the weird name "lua5.1.dll". We are
> going to maintain this name for 5.1 versions because of backward
> compatibility with the first version. But we are open to change it to
> "lua52.dll" for Lua 5.2, if this is going to help and improve a wider
> acceptance for the Lua Binaries standard.
For Lua 5.1 backward compatibility, things already being messy, I think
you should publish for 5.1.2 a lua51.dll with the Lua code, and a
lua5.1.dll proxy dll that will forward calls to lua51.dll. That way you
could mix modules using both conventions, while still have only a single
instance of the code. The forwarding DLL won't even need any code, since
forwards can be defined in an exports file iirc.