mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
configure: Refactor header search to make it more portable
This commit is contained in:
parent
d2b0158dcc
commit
f1ada80c23
1 changed files with 10 additions and 7 deletions
17
configure
vendored
17
configure
vendored
|
@ -463,12 +463,13 @@ then
|
||||||
LUA_LIBDIR="$LUA_DIR/lib"
|
LUA_LIBDIR="$LUA_DIR/lib"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo_n "Checking Lua includes... "
|
|
||||||
lua_h="$LUA_INCDIR/lua.h"
|
lua_h="$LUA_INCDIR/lua.h"
|
||||||
|
echo_n "Looking for lua.h at $lua_h..."
|
||||||
if [ -f "$lua_h" ]
|
if [ -f "$lua_h" ]
|
||||||
then
|
then
|
||||||
echo "lua.h found in $lua_h"
|
echo found
|
||||||
else
|
else
|
||||||
|
echo "not found"
|
||||||
for postfix in "$LUA_VERSION" "$LUA_SUFFIX"; do
|
for postfix in "$LUA_VERSION" "$LUA_SUFFIX"; do
|
||||||
if ! [ "$postfix" = "" ]; then
|
if ! [ "$postfix" = "" ]; then
|
||||||
v_dir="$LUA_INCDIR/lua/$postfix";
|
v_dir="$LUA_INCDIR/lua/$postfix";
|
||||||
|
@ -476,27 +477,29 @@ else
|
||||||
v_dir="$LUA_INCDIR/lua";
|
v_dir="$LUA_INCDIR/lua";
|
||||||
fi
|
fi
|
||||||
lua_h="$v_dir/lua.h"
|
lua_h="$v_dir/lua.h"
|
||||||
|
echo_n "Looking for lua.h at $lua_h..."
|
||||||
if [ -f "$lua_h" ]
|
if [ -f "$lua_h" ]
|
||||||
then
|
then
|
||||||
echo "lua.h found in $lua_h"
|
|
||||||
LUA_INCDIR="$v_dir"
|
LUA_INCDIR="$v_dir"
|
||||||
|
echo found
|
||||||
break;
|
break;
|
||||||
else
|
else
|
||||||
|
echo "not found"
|
||||||
d_dir="$LUA_INCDIR/lua$postfix"
|
d_dir="$LUA_INCDIR/lua$postfix"
|
||||||
lua_h="$d_dir/lua.h"
|
lua_h="$d_dir/lua.h"
|
||||||
|
echo_n "Looking for lua.h at $lua_h..."
|
||||||
if [ -f "$lua_h" ]
|
if [ -f "$lua_h" ]
|
||||||
then
|
then
|
||||||
echo "lua.h found in $lua_h"
|
echo found
|
||||||
LUA_INCDIR="$d_dir"
|
LUA_INCDIR="$d_dir"
|
||||||
break;
|
break;
|
||||||
else
|
else
|
||||||
lua_h_search="$lua_h_search\n $v_dir/lua.h\n $d_dir/lua.h"
|
echo "not found"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
if [ ! -f "$lua_h" ]; then
|
if [ ! -f "$lua_h" ]; then
|
||||||
echo "lua.h not found. Looked for:"
|
echo "lua.h not found."
|
||||||
echo "$lua_h_search" | uniq
|
|
||||||
echo
|
echo
|
||||||
die "You may want to use the flag --with-lua or --with-lua-include. See --help."
|
die "You may want to use the flag --with-lua or --with-lua-include. See --help."
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue