summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Yuan <shengquan.yuan@intel.com>2008-03-14 18:44:32 -0400
committerAustin Yuan <shengquan.yuan@intel.com>2008-03-14 18:44:32 -0400
commite9a72caabb78327fb39b2be09824fbf78a357a69 (patch)
tree00795c7624cfd7c5b77ced45ab498370303a69f6
parent1fde699960314acaddb1f626d01de85e6445fbe1 (diff)
downloadlibva-e9a72caabb78327fb39b2be09824fbf78a357a69.tar.gz
The HW specific driver depends on "-lXfixes -lXdamage" to do correct display
under rotation mode, but a issue is found that after vaTerminate, XCloseDisplay will meet a SIGSEGV, and debuging shows libXdamage is unloaded from application address space after vaTerminate, and keeping libXdamage all along can workaround this issue. So always link libva with libXdamage here
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index b3eb073..11d9e77 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,7 +23,7 @@
libva_la_LTLIBRARIES = libva.la
libva_ladir = $(libdir)
libva_la_LDFLAGS = -version-number 0:29:0 -no-undefined
-libva_la_LIBADD = -ldl -lX11 -lXext
+libva_la_LIBADD = -ldl -lX11 -lXext -lXfixes -lXdamage
libva_la_SOURCES = va_dri.c va.c va_dristr.h