diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2020-05-24 08:13:06 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2020-05-24 08:13:06 +0000 |
commit | 7cd2ac3d5dd407e599f847b2e5a6bd99e08bbff3 (patch) | |
tree | 1ecee56d55a22f9567a0a50a5b7c5e07fcea6d4e /net/freeswitch/files/patch-configure.ac | |
parent | Update to 4.0 (diff) |
net/freeswitch: fix build with ALL_MODULES selected
- files/extrapatch-modules.conf needed adjustments after the move to 1.10.x
PR: 246515
Reported by: rnoll.bsd@gmail.com
Notes
Notes:
svn path=/head/; revision=536367
Diffstat (limited to 'net/freeswitch/files/patch-configure.ac')
-rw-r--r-- | net/freeswitch/files/patch-configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/freeswitch/files/patch-configure.ac b/net/freeswitch/files/patch-configure.ac new file mode 100644 index 000000000000..9800906ce293 --- /dev/null +++ b/net/freeswitch/files/patch-configure.ac @@ -0,0 +1,11 @@ +--- configure.ac.orig 2020-05-12 10:19:16 UTC ++++ configure.ac +@@ -582,7 +582,7 @@ AC_SUBST(SYS_XMLRPC_CFLAGS) + AC_SUBST(SYS_XMLRPC_LDFLAGS) + AM_CONDITIONAL([SYSTEM_XMLRPCC],[test "${enable_xmlrpcc}" = "yes"]) + +-for luaversion in luajit lua5.2 lua-5.2 lua52 lua5.1 lua-5.1 lua; do ++for luaversion in luajit lua5.3 lua-5.3 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 |