From 55f9bbd46c7cd021dd1d208071d1a79bc423eda8 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 7 Apr 2014 15:24:46 +0100 Subject: build: force .so extension for the gallium dri modules While linux uses .so as a default extension for shared libraries that is not the case for other platforms. The loader in libGL (and others) assumes that the dri module will always have a .so extension, thus it will fail to load on the affected platforms. Spotted-by: Jon TURNEY Signed-off-by: Emil Velikov --- install-gallium-links.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install-gallium-links.mk') diff --git a/install-gallium-links.mk b/install-gallium-links.mk index 6ed8a24a..757b288 100644 --- a/install-gallium-links.mk +++ b/install-gallium-links.mk @@ -12,7 +12,7 @@ all-local : .libs/install-gallium-links link_dir=$(top_builddir)/$(LIB_DIR)/egl; \ fi; \ $(MKDIR_P) $$link_dir; \ - file_list=$(dri_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*); \ + file_list=$(dri_LTLIBRARIES:%.la=.libs/%.so); \ file_list+=$(vdpau_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*); \ file_list+=$(egl_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*); \ file_list+=$(lib_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*); \ -- cgit v1.1