diff options
author | Jörg Mayer <jmayer@loplof.de> | 2006-02-19 11:02:20 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2006-02-19 11:02:20 +0000 |
commit | 97d857e20bd5365f244e3bbe7e2fb64110b4349d (patch) | |
tree | 34205459ddd0cead897d43e4014afdc0817903b5 /acinclude.m4 | |
parent | 74dd581db8e750587c0fe00dcb5f186b4b8bd5e2 (diff) | |
download | wireshark-97d857e20bd5365f244e3bbe7e2fb64110b4349d.tar.gz wireshark-97d857e20bd5365f244e3bbe7e2fb64110b4349d.tar.bz2 wireshark-97d857e20bd5365f244e3bbe7e2fb64110b4349d.zip |
Recent checkins lost a change to make the liblualib check succeed on
Suse 9.3 (original checkin r17198).
svn path=/trunk/; revision=17353
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 0a9197d5d8..c3632eb65b 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -815,6 +815,11 @@ AC_DEFUN([AC_ETHEREAL_LIBLUA_CHECK],[ # # let's check if the libs are there # + + # At least on Suse 9.3 systems, liblualib needs linking + # against libm. + LIBS="$LIBS $LUA_LIBS -lm" + AC_CHECK_LIB(lua, lua_call, [ if test "x$lua_dir" != "x" |