From patchwork Thu Jan 29 15:30:52 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 5743541 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 93CBA9F36E for ; Thu, 29 Jan 2015 15:31:16 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DDB7A2024C for ; Thu, 29 Jan 2015 15:31:15 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 10CF420117 for ; Thu, 29 Jan 2015 15:31:15 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5DD8E720BD; Thu, 29 Jan 2015 07:31:14 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by gabe.freedesktop.org (Postfix) with ESMTP id 814E7720BD for ; Thu, 29 Jan 2015 07:31:12 -0800 (PST) Received: by mail-wi0-f173.google.com with SMTP id r20so27906455wiv.0 for ; Thu, 29 Jan 2015 07:31:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=K3n60ejQcE8CkQhlcMErUTui8FJHEMRSSbQgZTGrig4=; b=DpBnLnI28d2T5yxwBlYx5Hkq4qcSlDDpNt54IcwV/ERllSl+eq+k99YWHUU0kYn9XZ rKW42AFC2wHqlAzVwQ6qfn/e6+AMSwoSBbzUckj6SJvE9ziM5djD7qqSwtddhtvPz7UU tBIDAo4h7JqbGKFzwRAHCNGWCljhq08KNvvvR2favO8c7rjqxjAv39HGTatupAOxMbta 8hWEyWci4J7ZZTy60VdFtc2H5Cw0NrTmvLCDZVfW5QchqLUA8qNoAmzdp9O6soe+5ZZr MrlXFd8osrdluMkDfbajXEfJcbHyMjRHFhJ5Rh4LB+D7qf/3TX+RsvRRm8vsjPkOh9ma r++w== X-Received: by 10.180.98.136 with SMTP id ei8mr1096695wib.9.1422545471654; Thu, 29 Jan 2015 07:31:11 -0800 (PST) Received: from arch-laptop.localdomain (cpc12-croy20-2-0-cust52.croy.cable.virginm.net. [82.44.54.53]) by mx.google.com with ESMTPSA id u17sm2938813wij.2.2015.01.29.07.31.10 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 29 Jan 2015 07:31:10 -0800 (PST) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH 10.1/11] SQUASH: kms-steal-crtc: link against cairo Date: Thu, 29 Jan 2015 15:30:52 +0000 Message-Id: <1422545452-3102-1-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1422029304-1926-11-git-send-email-thierry.reding@gmail.com> References: <1422029304-1926-11-git-send-email-thierry.reding@gmail.com> Cc: emil.l.velikov@gmail.com X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Emil Velikov --- tests/kms/Makefile.am | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/kms/Makefile.am b/tests/kms/Makefile.am index 0e1b4ef..d033934 100644 --- a/tests/kms/Makefile.am +++ b/tests/kms/Makefile.am @@ -29,5 +29,11 @@ noinst_PROGRAMS = \ kms-steal-crtc endif +TEST_LIBS = libkms-test.la + +if HAVE_CAIRO +TEST_LIBS += $(CAIRO_LIBS) +endif + kms_steal_crtc_SOURCES = kms-steal-crtc.c -kms_steal_crtc_LDADD = libkms-test.la ../util/libutil.la +kms_steal_crtc_LDADD = ../util/libutil.la $(TEST_LIBS)