hunk ./clbuild 158 + alisp) + if which alisp >/dev/null ; then + export ALISP="$(which alisp)" + else + set_lisp_warning alisp + fi + ;; hunk ./clbuild 295 +configure_alisp() { + if [ -z "$ALISP" ]; then + set_lisp_command alisp + fi + lisp={$1:-$ALISP} + + lisp="$ALISP" + + noinform="" #fixme + end_toplevel_options="" #fixme + quit="(excl:exit)" + eval="-e" + require_asdf="(require :sdf)" + core_option="-I" + + if test -n "$USER_INIT"; then + common_options="-qq -L $USER_INIT" + else + common_options="" + fi + + # fixme + build_options="$common_options" + run_options="$common_options" +} + hunk ./clbuild 393 - if test -n "$USER_INIT"; then + if test -n "$USER_INIT" -a x"$USER_INIT" != x/dev/null; then hunk ./clbuild 404 - # Get the implementation type (member sbcl ccl clisp ecl cmu) + # Get the implementation type (member sbcl ccl clisp alisp ecl cmu) hunk ./clbuild 417 + elif [ -n "${ALISP}" ]; then + implementation=alisp hunk ./clbuild 1202 -where LISP_IMPLEMENTATION can be one of sbcl, clisp, ccl or ecl or the path to -a lisp executable. Please note that only sbcl is fully supported at this time! +where LISP_IMPLEMENTATION can be one of sbcl, clisp, ccl, ecl, or alisp or +the path to a lisp executable. Please note that only sbcl is fully supported +at this time!