Disable Common Lisp / S-Exp 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:12:28 +00:00
commit df51dc8e8f
8 changed files with 8 additions and 9 deletions

View file

@ -74,7 +74,6 @@ eswig_SOURCES = CParse/cscanner.c \
Modules/python.cxx \
Modules/r.cxx \
Modules/ruby.cxx \
Modules/s-exp.cxx \
Modules/scilab.cxx \
Modules/swigmain.cxx \
Modules/tcl8.cxx \

View file

@ -48,7 +48,6 @@ extern "C" {
Language *swig_r(void);
Language *swig_ruby(void);
Language *swig_scilab(void);
Language *swig_sexp(void);
Language *swig_tcl(void);
Language *swig_xml(void);
}
@ -84,7 +83,7 @@ static TargetLanguageModule modules[] = {
{"-r", swig_r, "R (aka GNU S)", Supported},
{"-ruby", swig_ruby, "Ruby", Supported},
{"-scilab", swig_scilab, "Scilab", Supported},
{"-sexp", swig_sexp, "Lisp S-Expressions", Supported},
{"-sexp", NULL, "Lisp S-Expressions", Disabled},
{"-tcl", swig_tcl, "Tcl", Supported},
{"-tcl8", swig_tcl, NULL, Supported},
{"-uffi", NULL, "Common Lisp / UFFI", Disabled},