lua-users home
lua-l archive

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


On Fri, 27 Feb 2015 20:08:26 -0800
William Ahern <william@25thandClement.com> wrote:

> The package name and the pkg-config name are different.

Yes, that confused me.
 
> $ pkg info | grep lua\*5\*2 | cut -d' ' -f1
> lua52-5.2.3_4
> 
> $ find /usr/local -name lua\*5\*2.pc
> /usr/local/libdata/pkgconfig/lua-5.2.pc
> 
> $ pkg-config --cflags lua-5.2
> -I/usr/local/include/lua52

Thanks, that is what I was looking for. I don't think autotools is for
me, since I don't really distribute my code, so I'm happy with editing
my Makefiles.

Levente