From 257e8d6b2fcd387c20690d31649f23e2da54e042 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Fri, 17 Jun 2016 15:54:37 -0400 Subject: [PATCH] FS-9263: [build] attempt to find the proper lua5.2 version on openbsd --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 274014e8a3..0a3702cb46 100644 --- a/configure.ac +++ b/configure.ac @@ -597,7 +597,7 @@ AC_SUBST(SYS_XMLRPC_CFLAGS) AC_SUBST(SYS_XMLRPC_LDFLAGS) AM_CONDITIONAL([SYSTEM_XMLRPCC],[test "${enable_xmlrpcc}" = "yes"]) -for luaversion in lua5.2 lua-5.2 lua5.1 lua-5.1 lua; do +for luaversion in lua5.2 lua-5.2 lua52 lua5.1 lua-5.1 lua; do PKG_CHECK_MODULES([LUA],[${luaversion}],[have_lua=yes],[have_lua=no]) if test ${have_lua} = yes; then break