Merge "BuildSystem: Enable Lua in NetBSD."

This commit is contained in:
Jenkins2 2018-03-12 09:13:51 -05:00 committed by Gerrit Code Review
commit 0d0738aaaf
2 changed files with 13 additions and 13 deletions

22
configure vendored
View File

@ -29706,7 +29706,7 @@ if test "x${PBX_LUA}" = "x1" ; then
fi fi
fi fi
# Some distributions (like SuSE) remove the 5.1 suffix. # Some distributions (like openSUSE and NetBSD) remove the 5.x suffix.
if test "x${PBX_LUA}" != "x1" -a "${USE_LUA}" != "no"; then if test "x${PBX_LUA}" != "x1" -a "${USE_LUA}" != "no"; then
pbxlibdir="" pbxlibdir=""
@ -29721,9 +29721,9 @@ if test "x${PBX_LUA}" != "x1" -a "${USE_LUA}" != "no"; then
ast_ext_lib_check_save_CFLAGS="${CFLAGS}" ast_ext_lib_check_save_CFLAGS="${CFLAGS}"
CFLAGS="${CFLAGS} " CFLAGS="${CFLAGS} "
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_openlib in -llua" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua" >&5
$as_echo_n "checking for luaL_openlib in -llua... " >&6; } $as_echo_n "checking for luaL_newstate in -llua... " >&6; }
if ${ac_cv_lib_lua_luaL_openlib+:} false; then : if ${ac_cv_lib_lua_luaL_newstate+:} false; then :
$as_echo_n "(cached) " >&6 $as_echo_n "(cached) " >&6
else else
ac_check_lib_save_LIBS=$LIBS ac_check_lib_save_LIBS=$LIBS
@ -29737,27 +29737,27 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
#ifdef __cplusplus #ifdef __cplusplus
extern "C" extern "C"
#endif #endif
char luaL_openlib (); char luaL_newstate ();
int int
main () main ()
{ {
return luaL_openlib (); return luaL_newstate ();
; ;
return 0; return 0;
} }
_ACEOF _ACEOF
if ac_fn_c_try_link "$LINENO"; then : if ac_fn_c_try_link "$LINENO"; then :
ac_cv_lib_lua_luaL_openlib=yes ac_cv_lib_lua_luaL_newstate=yes
else else
ac_cv_lib_lua_luaL_openlib=no ac_cv_lib_lua_luaL_newstate=no
fi fi
rm -f core conftest.err conftest.$ac_objext \ rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS LIBS=$ac_check_lib_save_LIBS
fi fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua_luaL_openlib" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua_luaL_newstate" >&5
$as_echo "$ac_cv_lib_lua_luaL_openlib" >&6; } $as_echo "$ac_cv_lib_lua_luaL_newstate" >&6; }
if test "x$ac_cv_lib_lua_luaL_openlib" = xyes; then : if test "x$ac_cv_lib_lua_luaL_newstate" = xyes; then :
AST_LUA_FOUND=yes AST_LUA_FOUND=yes
else else
AST_LUA_FOUND=no AST_LUA_FOUND=no

View File

@ -2387,8 +2387,8 @@ if test "x${PBX_LUA}" = "x1" ; then
fi fi
fi fi
# Some distributions (like SuSE) remove the 5.1 suffix. # Some distributions (like openSUSE and NetBSD) remove the 5.x suffix.
AST_EXT_LIB_CHECK([LUA], [lua], [luaL_openlib], [lua.h], [-lm]) AST_EXT_LIB_CHECK([LUA], [lua], [luaL_newstate], [lua.h], [-lm])
# Accept either RADIUS client library, their APIs are fully compatible, # Accept either RADIUS client library, their APIs are fully compatible,
# just different header filenames and different SONAMEs # just different header filenames and different SONAMEs