config.classpath 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. pathsep="$PATH_SEPARATOR"
  2. case ${host} in
  3. *-*-mingw*|*-*-cygwin*) CLASSPATH_SEPARATOR=";" ;;
  4. *) CLASSPATH_SEPARATOR="$PATH_SEPARATOR"
  5. esac
  6. case ${with_javafx} in
  7. yes) ;;
  8. no) ;;
  9. "") ;;
  10. *)
  11. if test -f "${with_javafx}" ; then true
  12. elif test -f "${with_javafx}/rt/lib/jfxrt.jar"
  13. then with_javafx="${with_javafx}/rt/lib/jfxrt.jar"
  14. elif test -f "${with_javafx}/lib/jfxrt.jar"
  15. then with_javafx="${with_javafx}/lib/jfxrt.jar"
  16. elif test -f "${with_javafx}/jre/lib/jfxrt.jar"
  17. then with_javafx="${with_javafx}/jre/lib/jfxrt.jar"
  18. fi
  19. conf_classpath=${with_javafx}${CLASSPATH_SEPARATOR}$conf_classpath ;;
  20. esac
  21. case ${with_android} in
  22. yes) ;;
  23. no) ;;
  24. "") ;;
  25. *) conf_classpath=${with_android}${CLASSPATH_SEPARATOR}$conf_classpath ;;
  26. esac
  27. run_classpath=${conf_classpath}
  28. case ${with_servlet} in
  29. yes) ;;
  30. no) ;;
  31. "") ;;
  32. *)
  33. conf_classpath=${with_servlet}${CLASSPATH_SEPARATOR}$conf_classpath
  34. run_classpath='$kawadir/lib/servlet.jar'${CLASSPATH_SEPARATOR}"$run_classpath"
  35. ;;
  36. esac
  37. case ${with_domterm} in
  38. yes) ;;
  39. no) ;;
  40. "") ;;
  41. *) conf_classpath=${with_domterm}/share/domterm/domterm.jar${CLASSPATH_SEPARATOR}$conf_classpath
  42. run_classpath='$kawadir/lib/domterm.jar'${CLASSPATH_SEPARATOR}"$run_classpath"
  43. esac
  44. case ${with_jline2} in
  45. yes) ;;
  46. no) ;;
  47. "") ;;
  48. *) conf_classpath=${with_jline2}${CLASSPATH_SEPARATOR}$conf_classpath ;;
  49. esac
  50. case ${with_jline3} in
  51. yes) ;;
  52. no) ;;
  53. "") ;;
  54. *) conf_classpath=${with_jline3}${CLASSPATH_SEPARATOR}$conf_classpath
  55. run_classpath='$kawadir/lib/jline.jar'${CLASSPATH_SEPARATOR}"$run_classpath"
  56. ;;
  57. esac
  58. case ${with_lsp4j} in
  59. yes) ;;
  60. no) ;;
  61. "") ;;
  62. *) conf_classpath=${WITH_LSP4J_PATH}${CLASSPATH_SEPARATOR}${WITH_LSP4J_JSONRPC_PATH}${CLASSPATH_SEPARATOR}${WITH_GSON_PATH}${CLASSPATH_SEPARATOR}$conf_classpath
  63. run_classpath='$kawadir/lib/lsp4j.jar'${CLASSPATH_SEPARATOR}'$kawadir/lib/lsp4j.jsonrpc.jar'${CLASSPATH_SEPARATOR}'$kawadir/lib/gson.jar'${CLASSPATH_SEPARATOR}"$run_classpath"
  64. ;;
  65. esac