From 616a08e854c6ce579eee08bf4faacc300cfa679a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?RALOVICH,=20Krist=C3=B3f?= <tade60@freemail.hu>
Date: Fri, 19 Feb 2010 19:48:26 -0500
Subject: [PATCH] tests: avoid linker error
clock_gettime() requires -lrt
---
tests/Makefile.am | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
@@ -4,7 +4,8 @@ AM_CPPFLAGS = \
-I $(top_srcdir)/include/drm \
-I $(top_srcdir)
-LDADD = $(top_builddir)/libdrm.la
+LDADD = $(top_builddir)/libdrm.la \
+ -lrt
noinst_PROGRAMS = \
dristat \
--
1.6.6.2