Disable Common Lisp / CLISP target language

Clean up to disable target languages that have been neglected/not functional.
Target language be fully deleted in SWIG 4.1 unless a new maintainer brings
it up to an acceptable status (experimental or supported).

Issue #1447
This commit is contained in:
William S Fulton 2019-02-04 20:26:54 +00:00
commit cb4bd26422
11 changed files with 10 additions and 284 deletions

View file

@ -50,7 +50,6 @@ eswig_SOURCES = CParse/cscanner.c \
Modules/browser.cxx \
Modules/cffi.cxx \
Modules/chicken.cxx \
Modules/clisp.cxx \
Modules/contract.cxx \
Modules/csharp.cxx \
Modules/d.cxx \

View file

@ -29,7 +29,6 @@ extern "C" {
Language *swig_allegrocl(void);
Language *swig_cffi(void);
Language *swig_chicken(void);
Language *swig_clisp(void);
Language *swig_csharp(void);
Language *swig_d(void);
Language *swig_go(void);
@ -59,7 +58,7 @@ extern "C" {
static TargetLanguageModule modules[] = {
{"-allegrocl", swig_allegrocl, "ALLEGROCL", Supported},
{"-chicken", swig_chicken, "CHICKEN", Supported},
{"-clisp", swig_clisp, "CLISP", Supported},
{"-clisp", NULL, "CLISP", Disabled},
{"-cffi", swig_cffi, "CFFI", Supported},
{"-csharp", swig_csharp, "C#", Supported},
{"-d", swig_d, "D", Supported},