d: add experimental support for the D language

* configure.ac (ENABLE_D): New.
* src/getargs.c (valid_languages): Add d.
This commit is contained in:
Akim Demaille
2018-11-30 08:32:41 +01:00
parent 4a42a4f911
commit 22b2c286ff
2 changed files with 10 additions and 4 deletions

View File

@@ -54,6 +54,7 @@ static struct bison_language const valid_languages[] = {
/* lang, skeleton, ext, hdr, add_tab */
{ "c", "c-skel.m4", ".c", ".h", true },
{ "c++", "c++-skel.m4", ".cc", ".hh", true },
{ "d", "d-skel.m4", ".d", ".d", false },
{ "java", "java-skel.m4", ".java", ".java", false },
{ "", "", "", "", false }
};