From patchwork Mon Feb 23 13:57:39 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 5865611 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 A6C7E9F269 for ; Mon, 23 Feb 2015 13:54:56 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id EC47020648 for ; Mon, 23 Feb 2015 13:54:55 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id E57FB20569 for ; Mon, 23 Feb 2015 13:54:54 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5923F6E3F3; Mon, 23 Feb 2015 05:54:53 -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 A72216E334 for ; Mon, 23 Feb 2015 05:54:50 -0800 (PST) Received: by mail-wi0-f173.google.com with SMTP id bs8so17277641wib.0 for ; Mon, 23 Feb 2015 05:54:50 -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=5uXzuGZiGzaQUJyRTSr9r4Jtlx+BiywyqtgThFrespc=; b=pCEDMq6H8Eh9zFMSZad0lXViUlBfG4S7YWRs5d6wlgOsIqbYlujd17ldT7MqhZv+9t yEMcIbZi3qUzbY66z2DijtcNCn7LGsC2ivuT8x7epA1zL12dJsNowBoJksL/gjXO+R+f jEgjmtMvGv848wFpZJzNVQx086O4NRnHnaR5OiyO2whe/jKYwVgKLW60vJWrT5KRjMLe rCDgt1/1fEKAA5G3Xo1u9wPV7/tZySzX09pc+hDfUgnA/X+X/S7XEBsIVlqbnrVgjIXW ZT4QWjVsk8iJFdlDltILm4VblKNpkVLjp/RMC4md2nx2fc/UPMeaH43hPiQL8GPOezIH NjEA== X-Received: by 10.180.21.161 with SMTP id w1mr20519363wie.44.1424699689942; Mon, 23 Feb 2015 05:54:49 -0800 (PST) Received: from arch-x220.localdomain (cpc12-croy20-2-0-cust52.croy.cable.virginm.net. [82.44.54.53]) by mx.google.com with ESMTPSA id ev7sm55689045wjb.47.2015.02.23.05.54.48 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 23 Feb 2015 05:54:49 -0800 (PST) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH libdrm 1/4] autotools: add AM_DISTCHECK_CONFIGURE_FLAGS Date: Mon, 23 Feb 2015 13:57:39 +0000 Message-Id: <1424699862-4077-2-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 2.3.0 In-Reply-To: <1424699862-4077-1-git-send-email-emil.l.velikov@gmail.com> References: <1424699862-4077-1-git-send-email-emil.l.velikov@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 To make sure that the release/distribution tarball is not broken for all the targets. Currently the experimental APIs are disabled by default amongst others. Signed-off-by: Emil Velikov --- Makefile.am | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Makefile.am b/Makefile.am index 3cb516c..062feb4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,6 +22,22 @@ include Makefile.sources ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} +AM_DISTCHECK_CONFIGURE_FLAGS = \ + --enable-udev \ + --enable-libkms \ + --enable-intel \ + --enable-radeon \ + --enable-nouveau \ + --enable-vmwgfx \ + --enable-omap-experimental-api \ + --enable-exynos-experimental-api \ + --enable-freedreno \ + --enable-freedreno-kgsl\ + --enable-tegra-experimental-api \ + --enable-install-test-programs \ + --enable-cairo-tests \ + --enable-manpages + pkgconfigdir = @pkgconfigdir@ pkgconfig_DATA = libdrm.pc