diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2011-04-09 20:15:10 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2011-04-09 20:15:10 +0200 |
commit | afa940c39844f565d396b51deb6fd6e564751e49 (patch) | |
tree | b7273c87ed2e642c65ee66fb777617736ae476c4 | |
parent | 1c9ede3acbf62eab60e6f949a759e9e2e2e1014b (diff) |
Disable gem tests when libdrm is not available
Quickly checked on ppc by Cyril Brulebois.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 428cff4a..fb9966bb 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,3 +1,4 @@ +if HAVE_DRM noinst_PROGRAMS = \ gem_stress \ $(NULL) @@ -56,3 +57,4 @@ endif gem_fence_thrash_CFLAGS = $(AM_CFLAGS) -pthread gem_fence_thrash_LDADD = $(LDADD) -lpthread +endif |