From ef54b3ad76f7b10142e26ad6c2eb5e19f6534588 Mon Sep 17 00:00:00 2001 From: Adrian Thurston Date: Fri, 27 Dec 2019 15:37:36 -0500 Subject: ragel testing: try gdc-8 down through gdc-5 --- configure.ac | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 09af2894..fdb99f5f 100644 --- a/configure.ac +++ b/configure.ac @@ -252,7 +252,17 @@ dnl dnl Installed programs to test in dnl -AC_PATH_PROG([D_BIN], [gdc-5]) +AC_PATH_PROG([D_BIN], [gdc-8]) +if test "x$D_BIN" = x; then + AC_PATH_PROG([D_BIN], [gdc-7]) + if test "x$D_BIN" = x; then + AC_PATH_PROG([D_BIN], [gdc-6]) + if test "x$D_BIN" = x; then + AC_PATH_PROG([D_BIN], [gdc-5]) + fi + fi +fi + AC_PATH_PROG([JAVAC_BIN], [javac]) AC_PATH_PROG([RUBY_BIN], [ruby]) AC_PATH_PROG([CSHARP_BIN], [mcs]) -- cgit v1.2.1