X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fconfigure.ac;h=8f368b0f9eead01a3d4749b695a3bb16aa5f5c8a;hb=dccf88890f1f9f8c8139f67aa7a26f8339b13502;hp=36bcc703f2ac23c07b053a662af9c619a9863666;hpb=f9b73cf28065e4ed65f4dadc3d4e519b453ae7a8;p=helm.git diff --git a/helm/ocaml/configure.ac b/helm/ocaml/configure.ac index 36bcc703f..8f368b0f9 100644 --- a/helm/ocaml/configure.ac +++ b/helm/ocaml/configure.ac @@ -10,52 +10,6 @@ if test $HAVE_OCAMLFIND = "no"; then AC_MSG_ERROR(could not find ocamlfind in PATH, please make sure findlib is installed) fi -AC_ARG_WITH(term-editor, - AS_HELP_STRING([--with-term-editor=(tex|textual)], - [choose term editor (default is tex)]), - [TERM_EDITOR=$withval], [TERM_EDITOR=textual]) -if test $TERM_EDITOR = "tex"; then - CHOSEN_TERM_EDITOR="include TexTermEditor" -else - if test $TERM_EDITOR = "textual"; then - CHOSEN_TERM_EDITOR="include TermEditor" - else - AC_MSG_ERROR(unknwon term editor $TERM_EDITOR) - fi -fi - -AC_ARG_WITH(term-parser, - AS_HELP_STRING([--with-term-parser=(cscTex|cscTextual|new)], - [choose term parser (default is new)]), - [TERM_PARSER=$withval], [TERM_PARSER=new]) -if test $TERM_PARSER = "cscTex"; then - CHOSEN_TERM_PARSER="include CSCTexDisambiguatingParser" -else - if test $TERM_PARSER = "cscTextual"; then - CHOSEN_TERM_PARSER="include CSCTextualDisambiguatingParser" - else - if test $TERM_PARSER = "new"; then - CHOSEN_TERM_PARSER="include AndreaAndZackDisambiguatingParser" - else - AC_MSG_ERROR(unknwon term parser $TERM_PARSER) - fi - fi -fi - -AC_ARG_WITH(transformer, - AS_HELP_STRING([--with-transformer=(xslt|ocaml)], - [choose mathml transformer (default is ocaml)]), - [TRANSFORMER=$withval], [TRANSFORMER=ocaml]) -if test $TRANSFORMER = "xslt"; then - CHOSEN_TRANSFORMER="include ApplyStylesheets" -else - if test $TRANSFORMER = "ocaml"; then - CHOSEN_TRANSFORMER="include ApplyTransformation" - else - AC_MSG_ERROR(unknwon transformer $TRANSFORMER) - fi -fi - AC_MSG_CHECKING("where to install the library") OCAMLFIND_DEST_DIR="/public/sacerdot/prova" AC_MSG_RESULT($OCAMLFIND_DEST_DIR) @@ -73,8 +27,5 @@ AC_SUBST(CHOSEN_TRANSFORMER) AC_OUTPUT([ Makefile Makefile.common - ../gTopLevel/chosenTransformer.ml - ../gTopLevel/chosenTermEditor.ml - ../gTopLevel/disambiguatingParser.ml ])