X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/33a9da85867c540b95d99573defe39b47c5f6f45..814080c31d915f2a87c28bd787bd8d9a413f51a3:/configure.ac diff --git a/configure.ac b/configure.ac index 33f3d8ebd8..b512112f99 100644 --- a/configure.ac +++ b/configure.ac @@ -457,13 +457,13 @@ AC_ARG_ENABLE(lua, if test "x$disable_lua" != "xyes" ; then use_lua="disabled by user" else - AC_CHECK_HEADERS(lua5.1/lualib.h) - if test "x$ac_cv_header_lua5_1_lualib_h" = "xyes" ; then + AC_CHECK_HEADERS(lualib.h) + if test "x$ac_cv_header_lualib_h" = "xyes" ; then use_lua="yes" AC_DEFINE(HAVE_LUA,1, [defines whether Lua bindings must be compiled or not]) SIMGRID_DEP="${SIMGRID_DEP} -ldl -llua5.1" else - use_lua="no (you may want to install the liblua5.1-0-dev package)" + use_lua="no (you may want to install the liblua5.1-0-dev package, or pass CFLAGS=-I/usr/include/lua5.1)" fi fi AC_MSG_RESULT(decide whether to compile lua bindings... $use_lua)