From patchwork Fri Aug 9 01:02:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benjamin Kosnik X-Patchwork-Id: 265868 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 1DB052C00A0 for ; Fri, 9 Aug 2013 11:03:06 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type; q=dns; s=default; b=mTUSgSCID8Wy/MM4 x0KrDMy/KWgqc3BXa5f8bFRr1GsthXiuxftPJgJJMsPV7vC2MFz0/286BUT+LfnY 4Lk9BwzqWdHDIJnNJLcfi+AkG7j/kXGF6oQKCUpKW3CPO+lQhi6O8GFDNDoUEsGr XoNM5FP3bXf1geXqddJjFlAic9M= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type; s=default; bh=NEIldmOaDsXD5/8+YYxPG+ 6P5nc=; b=EtLT2++pog70BAtsr+aW+G8qYMFKBqzYV/DkBxGrsASvl+cPiax3Ct D5XPU6wl7eAqpvIH0NQ3ZMYSkncSVcwUNCsfFD1mrUsdIZNcIHMVMWrJsMUxpHJo SDZYP7TkX7AvUCwfs4QuTIH6NQz6MsP9Dhf1FtzVGwLpH0WtuKYvM= Received: (qmail 13154 invoked by alias); 9 Aug 2013 01:02:59 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 13141 invoked by uid 89); 9 Aug 2013 01:02:58 -0000 X-Spam-SWARE-Status: No, score=-6.3 required=5.0 tests=AWL, BAYES_00, KHOP_THREADED, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL, RDNS_NONE, SPF_HELO_PASS, SPF_PASS autolearn=no version=3.3.1 Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 09 Aug 2013 01:02:57 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r7912nVr025684 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 8 Aug 2013 21:02:50 -0400 Received: from oakwood (ovpn-113-92.phx2.redhat.com [10.3.113.92]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r7912naG021720; Thu, 8 Aug 2013 21:02:49 -0400 Date: Thu, 8 Aug 2013 18:02:48 -0700 From: Benjamin De Kosnik To: gcc-patches@gcc.gnu.org Cc: cmtice@google.com Subject: Re: [vtv] fix default configure Message-ID: <20130808180248.14b9d2cf@oakwood> In-Reply-To: <20130807164806.39e80ea8@oakwood> References: <20130807164806.39e80ea8@oakwood> Mime-Version: 1.0 X-Virus-Found: No More patches to fix disable issus on non-linux. > Here's a patch for the build failure on darwin. Will check in when testing completes. tested x86/linux tested x86_64/darwin12 -benjamin 2013-08-02 Benjamin Kosnik * configure.ac: Adjust to check VTV_SUPPORTED. * configure: Regenerated. diff --git a/configure.ac b/configure.ac index bcbc95c..6f3d801 100644 --- a/configure.ac +++ b/configure.ac @@ -561,7 +561,7 @@ if test -d ${srcdir}/libvtv; then AC_MSG_CHECKING([for libvtv support]) if (srcdir=${srcdir}/libvtv; \ . ${srcdir}/configure.tgt; \ - test -n "$UNSUPPORTED") + test "$VTV_SUPPORTED" != "yes") then AC_MSG_RESULT([no]) noconfigdirs="$noconfigdirs target-libvtv"