[asterisk-commits] tilghman: branch 1.6.1 r189815 - in /branches/1.6.1: ./ configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Apr 22 01:37:00 CDT 2009
Author: tilghman
Date: Wed Apr 22 01:36:56 2009
New Revision: 189815
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=189815
Log:
Merged revisions 189813 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r189813 | tilghman | 2009-04-22 01:33:08 -0500 (Wed, 22 Apr 2009) | 3 lines
Detect liblua on SuSE, and add libm for linking for Fedora.
(Reported via the -dev list, Subject: Compiling Asterisk with LUA)
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/configure
branches/1.6.1/configure.ac
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/configure.ac
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/configure.ac?view=diff&rev=189815&r1=189814&r2=189815
==============================================================================
--- branches/1.6.1/configure.ac (original)
+++ branches/1.6.1/configure.ac Wed Apr 22 01:36:56 2009
@@ -1412,7 +1412,9 @@
[${PWLIB_INCLUDE}], [${PWLIB_LIB}])
fi
-AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h])
+AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h], [-lm])
+# Some distributions (like SuSE) remove the 5.1 suffix.
+AST_EXT_LIB_CHECK([LUA], [lua], [luaL_register], [lua.h], [-lm])
AST_EXT_LIB_CHECK([RADIUS], [radiusclient-ng], [rc_read_config], [radiusclient-ng.h])
More information about the asterisk-commits
mailing list