From patchwork Tue Sep 8 20:48:07 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alin Serdean X-Patchwork-Id: 1360074 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=openvswitch.org (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=cloudbasesolutions.com Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4BmHLM3P13z9sR4 for ; Wed, 9 Sep 2020 06:48:43 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 755FE86DD4; Tue, 8 Sep 2020 20:48:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZryRkT64rScE; Tue, 8 Sep 2020 20:48:38 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by fraxinus.osuosl.org (Postfix) with ESMTP id 27572850AD; Tue, 8 Sep 2020 20:48:38 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id BE7E0C089F; Tue, 8 Sep 2020 20:48:37 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by lists.linuxfoundation.org (Postfix) with ESMTP id 56556C0052 for ; Tue, 8 Sep 2020 20:48:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 46CCE84948 for ; Tue, 8 Sep 2020 20:48:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k2QJnEVhtypH for ; Tue, 8 Sep 2020 20:48:33 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from relay8-d.mail.gandi.net (relay8-d.mail.gandi.net [217.70.183.201]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 573308476B for ; Tue, 8 Sep 2020 20:48:33 +0000 (UTC) X-Originating-IP: 89.137.184.67 Received: from localhost.localdomain (unknown [89.137.184.67]) (Authenticated sender: aserdean@ovn.org) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id E72711BF209; Tue, 8 Sep 2020 20:48:30 +0000 (UTC) From: Alin Gabriel Serdean To: dev@openvswitch.org Date: Tue, 8 Sep 2020 23:48:07 +0300 Message-Id: <20200908204813.1532-3-aserdean@cloudbasesolutions.com> X-Mailer: git-send-email 2.27.0.windows.1 In-Reply-To: <20200908204813.1532-1-aserdean@cloudbasesolutions.com> References: <20200908204813.1532-1-aserdean@cloudbasesolutions.com> MIME-Version: 1.0 Subject: [ovs-dev] [PATCH 2/8] windows: Add default value for VSTUDIO_CONFIG X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ovs-dev-bounces@openvswitch.org Sender: "dev" VSTUDIO_CONFIG is used when generating the windows installer. If the parameter passed to configure `--with-vstudiotarget` is not specified to configure we default it to `Default` Signed-off-by: Alin Gabriel Serdean --- m4/openvswitch.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/openvswitch.m4 b/m4/openvswitch.m4 index 6fe79297e..c9daba6b5 100644 --- a/m4/openvswitch.m4 +++ b/m4/openvswitch.m4 @@ -158,7 +158,7 @@ AC_ARG_WITH([vstudiotarget], VSTUDIO_CONFIG=$withval ], [ - VSTUDIO_CONFIG= + VSTUDIO_CONFIG="Debug" ] )