From patchwork Tue Apr 23 23:03:14 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Iain Buclaw X-Patchwork-Id: 1089823 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-499571-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=quarantine dis=none) header.from=gdcproject.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="FQ97+UYX"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 44pfBc60VNz9sNB for ; Wed, 24 Apr 2019 09:03:36 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; q= dns; s=default; b=LqdM39jFu7gtf+Pt5bTGYF+Rg2qpOI4rilRY4i1IY2V36T XuJv43U43r7Qojm5LVR9xzil/wi9ws8WUhs8/oDRipLE4U9rjX2N5t1qvxrTdPTo VBfu6uz9hnRcdNxoewUTp43z9n6YXTwA8RAw/XCXaxULsLWvs6RSRIr5Eavsk= 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 :mime-version:from:date:message-id:subject:to:content-type; s= default; bh=OvJNRxLUZh332gCk8q8lt8d3Gao=; b=FQ97+UYX+5boonuNgJQj SAeNtj/xWY/3330PQW0oo3bfKfWKKz9kpLlMehW0rV4fGqB3j+yZnX1S0k59prLi WonacePy7mndg+5hMmFgLcogcepe8Rm78bxDZmg+tL3ielBGf+vu9FAnoH9NNdQq TAGRpwoaGzWl86wH+CdUAak= Received: (qmail 88119 invoked by alias); 23 Apr 2019 23:03:29 -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 87996 invoked by uid 89); 23 Apr 2019 23:03:29 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-19.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=months X-HELO: mail-qk1-f171.google.com Received: from mail-qk1-f171.google.com (HELO mail-qk1-f171.google.com) (209.85.222.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 23 Apr 2019 23:03:26 +0000 Received: by mail-qk1-f171.google.com with SMTP id n68so9728187qka.1 for ; Tue, 23 Apr 2019 16:03:26 -0700 (PDT) MIME-Version: 1.0 From: Iain Buclaw Date: Wed, 24 Apr 2019 01:03:14 +0200 Message-ID: Subject: [PATCH] Remove disabling of D front-end as an unsupported language To: gcc-patches X-IsSubscribed: yes Hi, The bootstrap for darwin was fixed a couple months back, so there is no need to disable it any more. OK for trunk? diff --git a/configure b/configure index abd93a990a9..db9341ebd24 100755 --- a/configure +++ b/configure @@ -3389,20 +3389,6 @@ if test "${ENABLE_LIBSTDCXX}" = "default" ; then esac fi -# Disable D on systems where it is known to not work. -# For testing, you can override this with --enable-languages=d. -case ,${enable_languages}, in - *,d,*) - ;; - *) - case "${target}" in - *-*-darwin*) - unsupported_languages="$unsupported_languages d" - ;; - esac - ;; -esac - # Disable libphobos on unsupported systems. # For testing, you can override this with --enable-libphobos. if test -d ${srcdir}/libphobos; then diff --git a/configure.ac b/configure.ac index 9db4fd14aa2..c463989d56f 100644 --- a/configure.ac +++ b/configure.ac @@ -674,20 +674,6 @@ if test "${ENABLE_LIBSTDCXX}" = "default" ; then esac fi -# Disable D on systems where it is known to not work. -# For testing, you can override this with --enable-languages=d. -case ,${enable_languages}, in - *,d,*) - ;; - *) - case "${target}" in - *-*-darwin*) - unsupported_languages="$unsupported_languages d" - ;; - esac - ;; -esac - # Disable libphobos on unsupported systems. # For testing, you can override this with --enable-libphobos. if test -d ${srcdir}/libphobos; then