From patchwork Tue Mar 10 18:12:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 5979981 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 891159F2A9 for ; Tue, 10 Mar 2015 18:13:00 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B066520125 for ; Tue, 10 Mar 2015 18:12:59 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id F32CF200E0 for ; Tue, 10 Mar 2015 18:12:58 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 966C26E72D; Tue, 10 Mar 2015 11:12:57 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-wg0-f43.google.com (mail-wg0-f43.google.com [74.125.82.43]) by gabe.freedesktop.org (Postfix) with ESMTP id 272B96E72D for ; Tue, 10 Mar 2015 11:12:56 -0700 (PDT) Received: by wggx12 with SMTP id x12so3670447wgg.10 for ; Tue, 10 Mar 2015 11:12:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=6adimOuah8l83f6LXk9QeGqmQCOqxTGWhkL6TFrJubA=; b=lXW7+OyAYYMq10h8/3qjt+RDOcCl9c3BjcejCXDuEBlNcanaEsNJ2hF70bJkuTP/zh BwpoYwDmQ9rAW1JvR+/FU91mk7PK9xTH8/HgxirbsXbEZWJdp8J3HZ+wyhkGqscWDn4e wT/OoTxydC1yQcKCoDzXU2qJdmrcdZqR1xga8XUoVLgwK3XIUJxONN0+N7dDN+EPbCpr 1dRwZV0B+H32c3dfPbWET9vi/lNpFOENbh0TVVmav9pcdEskrEhznpCq/u+UXtm423/w 6ANYLW33GjkOeomlH4NRF6xbYgMt1eFZPqHtwW75ttMiTvqJujq/0Ae6SV/gIfbyJaNE FW4Q== X-Received: by 10.180.77.110 with SMTP id r14mr51064076wiw.89.1426011175152; Tue, 10 Mar 2015 11:12:55 -0700 (PDT) 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 m10sm2671605wij.5.2015.03.10.11.12.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 10 Mar 2015 11:12:46 -0700 (PDT) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH libdrm] modetest: include into the build when libkms is not selected. Date: Tue, 10 Mar 2015 18:12:28 +0000 Message-Id: <1426011148-25073-1-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 2.1.3 Cc: emil.l.velikov@gmail.com, Laurent Pinchart 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 With commit d7c0a08bc57(modetest: Allocate dumb buffers with the correct bpp) we moved away from the libkms dependency. As such we are safe with including the Makefile/subdir, even as we opt out of building the library. Cc: Laurent Pinchart Signed-off-by: Emil Velikov Acked-by: Laurent Pinchart --- tests/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index d5269f9..0ca5a39 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,7 +1,7 @@ -SUBDIRS = modeprint proptest +SUBDIRS = modeprint proptest modetest if HAVE_LIBKMS -SUBDIRS += kmstest modetest +SUBDIRS += kmstest endif if HAVE_RADEON