diff options
author | Emeric Grange <[email protected]> | 2011-09-22 21:03:43 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-09-25 12:50:12 +0200 |
commit | 1f23ac8082b51bc22000933919256e5a03fd073f (patch) | |
tree | d642738c36ce3834baeb9304f9057bd207df99b1 /src/gallium | |
parent | 86f97f7dc015092aa7fa1b0bdc4fe0a9f696d418 (diff) |
st/vdpau: Link vdpau targets with librt to avoid unresolved symbols error related to the use of the clock_gettime() function
This patch fix a "Unresolved Symbols" run time error when using G3DVL
through the VDPAU state tracker, by linking the vdpau targets with librt.
Reported by Arkadiusz Miśkiewicz.
Caused by this commit :
commit e911dbb56374edf9f3b7c4cec0cf9a22738bb198
Author: Emeric Grange <[email protected]>
Date: Mon Sep 12 23:39:33 2011 +0200
Signed-off-by: Emeric Grange <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/targets/Makefile.vdpau | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/Makefile.vdpau b/src/gallium/targets/Makefile.vdpau index c0937ff1aa5..c63491502c0 100644 --- a/src/gallium/targets/Makefile.vdpau +++ b/src/gallium/targets/Makefile.vdpau @@ -11,7 +11,7 @@ INCLUDES = -I$(TOP)/src/gallium/include \ -I$(TOP)/src/gallium/winsys/g3dvl \ $(DRIVER_INCLUDES) DEFINES = -DGALLIUM_TRACE -DVER_MAJOR=$(VDPAU_MAJOR) -DVER_MINOR=$(VDPAU_MINOR) $(DRIVER_DEFINES) -LIBS = $(EXTRA_LIB_PATH) $(DRIVER_LIBS) -lvdpau -lXext -lX11 -lm +LIBS = $(EXTRA_LIB_PATH) $(DRIVER_LIBS) -lvdpau -lXext -lX11 -lm -lrt STATE_TRACKER_LIB = $(TOP)/src/gallium/state_trackers/vdpau/libvdpautracker.a ifeq ($(MESA_LLVM),1) |