From 8cc3e9fdbb4e87c289241db4848c65f6b74f7f93 Mon Sep 17 00:00:00 2001 From: Jan Kneschke Date: Tue, 3 Jan 2006 12:53:41 +0000 Subject: [PATCH] laulib is needed too for mod_cml git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@904 152afb58-edef-0310-8abb-c4023f1b3aa9 --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 318cc6b0..9db96d2b 100644 --- a/SConstruct +++ b/SConstruct @@ -154,7 +154,7 @@ if 1: autoconf.env.Append( LIBSQLITE3 = '', LIBXML2 = '', LIBMYSQL = '', LIBZ = '', LIBBZ2 = '', LIBCRYPT = '', LIBMEMCACHE = '', LIBFCGI = '', - LIBLDAP = '', LIBLBER = '', LIBLUA = '', LIBDL = '') + LIBLDAP = '', LIBLBER = '', LIBLUA = '', LIBLUALIB = '', LIBDL = '') if env['with_fam']: if autoconf.CheckLibWithHeader('fam', 'fam.h', 'C'): @@ -193,7 +193,7 @@ if 1: if env['with_lua']: if autoconf.CheckLibWithHeader('lua', 'lua.h', 'C'): - autoconf.env.Append(CPPFLAGS = [ '-DHAVE_LUA_H', '-DHAVE_LIBLUA' ], LIBLUA = 'lua') + autoconf.env.Append(CPPFLAGS = [ '-DHAVE_LUA_H', '-DHAVE_LIBLUA' ], LIBLUA = 'lua', LIBLUALIB = 'lualib') if autoconf.CheckLibWithHeader('fcgi', 'fastcgi.h', 'C'): autoconf.env.Append(LIBFCGI = 'fcgi')