diff options
author | Imre Deak <imre.deak@gmail.com> | 2012-12-07 20:30:28 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-12-13 12:52:26 +0100 |
commit | 7ab837b21473a9e7bf5565a8fa862349d37bc597 (patch) | |
tree | eff92e3088ca137d467919606f18d61621628765 | |
parent | e0ce231bf3d0ca14a2c10423f0d0affca999b447 (diff) |
flip_test: fix link error due to missing -lrt
Needed by clock_gettime(). This isn't a problem if libudev is used,
as that pulles librt with it.
Signed-off-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | tests/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index e50e58a..8e278ab 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -178,6 +178,7 @@ gem_fence_thrash_LDADD = $(LDADD) -lpthread gem_threaded_access_tiled_LDADD = $(LDADD) -lpthread gem_wait_render_timeout_LDADD = $(LDADD) -lrt +flip_test_LDADD = $(LDADD) -lrt gem_ctx_basic_LDADD = $(LDADD) -lpthread |