Skip to content

Commit

Permalink
clarify Lua flags
Browse files Browse the repository at this point in the history
	closes #68
  • Loading branch information
jpmens committed Nov 6, 2015
1 parent aac6725 commit 41731db
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions config.mk.in
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,10 @@ MOSQUITTO_INC = -I/usr/include
MOSQUITTO_LIB = -L/usr/lib
MORELIBS = # -lssl

# If WITH_LUA is configured, specify compilation and linkage flags
# for Lua either manually or using pkg-config. This may require tweaking,
# and in particular could require you to add the lua+version (e.g lua-5.2)
# to both pkg-config invocations

LUA_CFLAGS = `pkg-config --cflags lua`
LUA_LIBS = `pkg-config --libs lua`

3 comments on commit 41731db

@dazzag24
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks

@przemas75
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possible testing working lua version with luabind, see here:
Project-OSRM/osrm-backend#1185
Project-OSRM/osrm-backend#1179

@jpmens
Copy link
Member Author

@jpmens jpmens commented on 41731db Nov 6, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@przemas75 If you submit a PR to config.mk.in and/or Makefile I'd consider it.

Please sign in to comment.