diff options
author | Tapani Pälli <tapani.palli@intel.com> | 2012-08-16 13:59:12 +0300 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2012-08-24 11:08:19 -0700 |
commit | 57c57df7b4579b60a84062df2e64f84dd84558b5 (patch) | |
tree | 496c51c3366fe21d4711f288f4392d41c798ae7f /Android.common.mk | |
parent | df4dccc7a9691555e05c8945048603621340b5d7 (diff) |
mesa/dlopen: use HAVE_DLOPEN instead of _GNU_SOURCE
Patches changes mesa to use 'HAVE_DLOPEN' defined by configure and Android.mk
instead of _GNU_SOURCE for detecting dlopen capability. This makes dlopen to
work also on Android where _GNU_SOURCE is not defined.
[mattst88] v2: HAVE_DLOPEN is sufficient for including dlfcn.h, remove
mingw/blrts checks around dlfcn.h inclusion.
Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Diffstat (limited to 'Android.common.mk')
-rw-r--r-- | Android.common.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Android.common.mk b/Android.common.mk index e8b900697f..1e9f040ac0 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -47,7 +47,9 @@ LOCAL_CFLAGS += \ ifeq ($(strip $(MESA_ENABLE_ASM)),true) ifeq ($(TARGET_ARCH),x86) LOCAL_CFLAGS += \ - -DUSE_X86_ASM + -DUSE_X86_ASM \ + -DHAVE_DLOPEN \ + endif endif |