From be1e00f5ec7bf99c7fd572c52ad4161d06e0cbe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tapani=20P=C3=A4lli?= Date: Tue, 28 Aug 2012 14:01:51 +0300 Subject: [PATCH] scons : add HAVE_DLOPEN to build environment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes dlopen issue caused by 57c57df7b4579b60a84062df2e64f84dd84558b5 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=54140 Signed-off-by: Tapani Pälli --- src/mesa/SConscript | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/SConscript b/src/mesa/SConscript index e2064ce..f12c290 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -18,6 +18,7 @@ env.Append(CPPPATH = [ env.Append(CPPDEFINES = [ 'FEATURE_GL=1', + 'HAVE_DLOPEN=1', ]) if env['platform'] == 'windows': -- 1.7.11.4