dividuum / info-beamer

The Multimedia Presenter for Lua (for commercial projects, use info-beamer pi instead)
https://info-beamer.com/
Other
227 stars 48 forks source link

llua5.1 failing on arch linux #5

Closed momorientes closed 10 years ago

momorientes commented 12 years ago

LUA_LDFLAGS ?= -L/usr/lib -llua5.1 is raising a compilation error on arch linux using lua 5.1.5:

collect2: error: ld returned 1 exit status make: *\ [info-beamer] Error 1

The workaround therefore is to edit the Makefile to LUA_LDFLAGS ?= -L/usr/lib -llua

ryd commented 12 years ago

I guess, it is easier to have a proper automake to find right location of include path.

dividuum commented 12 years ago

2aef4f19d8 might help a little bit. I'm currently avoiding automake & co, since I feel they bloat the build process too much.

uKev commented 11 years ago

I tried it on arch, but had to do:

-LUA_LUAC    ?= luac
+LUA_LUAC    ?= luac5.1

in Makefile as lua5.2 is the default luac on arch.