summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Foreman <derek.foreman.samsung@gmail.com>2018-08-20 13:06:57 -0400
committerMike Blumenkrantz <zmike@samsung.com>2018-08-20 13:06:57 -0400
commit87332f2e3ab2694f27913222ddadbadbca5c4d54 (patch)
tree6c15e78fdea19b092b196ee6022499014369f168
parente306a0bd94188e4e0efd6c5056c9a40cb8282e3c (diff)
downloadefl-87332f2e3ab2694f27913222ddadbadbca5c4d54.tar.gz
ecore_wl2_dmabuf: Link with ecore_wl2
Summary: This generated .so file is only ever loaded with dlopen, so it hasn't mattered that it doesn't appropriately link dependent libraries. However, Debian builds this with strict linking, which breaks if the .so doesn't depend on everything that supplies the functions it calls. fix T7327 @fix Reviewers: devilhorns Reviewed By: devilhorns Subscribers: cedric, #reviewers, #committers, zmike Tags: #efl Maniphest Tasks: T7327 Differential Revision: https://phab.enlightenment.org/D6874
-rw-r--r--src/Makefile_Ecore_Wl2.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile_Ecore_Wl2.am b/src/Makefile_Ecore_Wl2.am
index 3415d0762e..cad2769bf1 100644
--- a/src/Makefile_Ecore_Wl2.am
+++ b/src/Makefile_Ecore_Wl2.am
@@ -85,7 +85,7 @@ $(install_ecorewl2enginedmabufpkgLTLIBRARIES): install-libLTLIBRARIES
modules_ecore_wl2_engines_dmabuf_module_la_SOURCES = $(DMABUFSOURCES)
modules_ecore_wl2_engines_dmabuf_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @ECORE_WL2_CFLAGS@
-modules_ecore_wl2_engines_dmabuf_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@
+modules_ecore_wl2_engines_dmabuf_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ @USE_ECORE_WL2_LIBS@
modules_ecore_wl2_engines_dmabuf_module_la_LIBTOOLFLAGS = --tag=disable-static
endif