Philipp Janda

Results 40 comments of Philipp Janda

I have recently added 3rd-party plugin support to a [tool of mine][1] that can bundle multiple Lua modules into one Lua file. Apparently, those plugins can also be used to...

The "undefined reference to main" is there because "-shared" is missing from `LIBFLAG`.

This `ma=E7=E3=` looks like the original string was in a single-byte encoding, probably latin1 (aḱa ISO-8859-1) or something. On the other hand this `ma=C3=A7=C3=A3` could be escaped UTF-8. The input...

Maybe a bit old. Most Linux distributions (and apparently OSX) have switched to UTF-8 as default encoding, and Windows is still using its own code pages. Maybe a note near...

It was merged, but it is currently commented out: > --[[ TODO disable static libs until we fix the conflict in the manifest, which will take extending the manifest format....

The `string.format` snippet would fail in Lua 5.1. I think it is definitely a breaking change, but it is worth fixing nevertheless. The code change looks good to me.

> > The `string.format` snippet would fail in Lua 5.1. > > Why do you say that? > > ``` > $ lua5.1 -e 'port = 6; print(string.format("example.com:%s", port))' >...

I have used LuaRocks (configured for MinGW or MSVC) to build fltk4lua. I have never tried it with Cygwin. Some short instructions are in the Wiki [here](https://github.com/siffiejoe/lua-fltk4lua/wiki/Building).

`luarocks-build-cpp` has a new maintainer and has been updated in the main LuaRocks manifest. I've removed the section recommending my own (now obsolete) version from this wiki. The library names...

What is the file name of your FLTK library? Maybe LuaRocks just need some convincing to look for the correct files (although it is strange that LuaRocks seems to use...