We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c8a45e commit 3c0029dCopy full SHA for 3c0029d
configure.ac
@@ -20,7 +20,12 @@ AC_SUBST([DCFLAGS])
20
AC_PROG_INSTALL
21
# Look for D compiler. Use dmd-compatible wrapper for ldc and gdc.
22
# NOTE: Tilix cannot be compiled with gdc currently.
23
-AC_PATH_PROGS([DC], [ldmd ldmd2 dmd gdmd], NOT_FOUND)
+if test -z ${DC}; then
24
+ AC_PATH_PROGS([DC], [ldmd ldmd2 dmd gdmd], NOT_FOUND)
25
+else
26
+ AC_PATH_PROG([DC], ${DC}, NOT_FOUND)
27
+fi
28
+
29
AC_PATH_PROG([GLIB_COMPILE_RES], [glib-compile-resources])
30
PKG_PROG_PKG_CONFIG
31
AM_GNU_GETTEXT([external])
0 commit comments