diff mbox series

Remove disabling of D front-end as an unsupported language

Message ID CABOHX+e4XMTpVvdbzVuPbf3-DX_h8bk8gs2DExVWw-25HEgp1A@mail.gmail.com
State New
Headers show
Series Remove disabling of D front-end as an unsupported language | expand

Commit Message

Iain Buclaw April 23, 2019, 11:03 p.m. UTC
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 mbox series

Patch

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