From f02689bafbb44a42bba34a1bc8007b846fbcfb9b Mon Sep 17 00:00:00 2001 From: Thomas Porzelt Date: Fri, 21 Nov 2008 02:25:10 +0100 Subject: [PATCH] remove mandatory parameter for libdl, some systems don't have a special lib for it (freebsd) --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 22e8215..4e082f0 100644 --- a/wscript +++ b/wscript @@ -61,7 +61,7 @@ def configure(conf): conf.define('HAVE_LIBLUA', 1) if not opts.static: - conf.check(lib='dl', uselib_store='dl', mandatory=True) + conf.check(lib='dl', uselib_store='dl') # check for available headers conf.check(header_name='sys/socket.h')