lua-users home
lua-l archive

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


> Funny, I renamed luacairo to lcairo like your libraries :)
> ex:
> MYNAME= pdf
> MYLIB= l$(MYNAME)

This has changed in 5.1:
	http://lua-users.org/lists/lua-l/2006-10/msg00211.html

Note
	T= $(MYNAME).so

In 5.0 my libraries depended on a Lua script to load them. In the example
above, that would be pdf.lua, so that lua -lpdf did the right thing.
In 5.1, -lpdf can load pdf.so and hence the change. Moreover, Lua C modules
are supposed to be installed under a Lua tree and so there is little chance
of name clashing.

Sorry for the confusion.
--lhf