-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.classpath
58 lines (57 loc) · 1.56 KB
/
config.classpath
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
pathsep="$PATH_SEPARATOR"
case ${host} in
*-*-mingw*|*-*-cygwin*) CLASSPATH_SEPARATOR=";" ;;
*) CLASSPATH_SEPARATOR="$PATH_SEPARATOR"
esac
case ${with_javafx} in
yes) ;;
no) ;;
"") ;;
*)
if test -f "${with_javafx}" ; then true
elif test -f "${with_javafx}/rt/lib/jfxrt.jar"
then with_javafx="${with_javafx}/rt/lib/jfxrt.jar"
elif test -f "${with_javafx}/lib/jfxrt.jar"
then with_javafx="${with_javafx}/lib/jfxrt.jar"
elif test -f "${with_javafx}/jre/lib/jfxrt.jar"
then with_javafx="${with_javafx}/jre/lib/jfxrt.jar"
fi
conf_classpath=${with_javafx}${CLASSPATH_SEPARATOR}$conf_classpath ;;
esac
case ${with_android} in
yes) ;;
no) ;;
"") ;;
*) conf_classpath=${with_android}${CLASSPATH_SEPARATOR}$conf_classpath ;;
esac
run_classpath=${conf_classpath}
case ${with_servlet} in
yes) ;;
no) ;;
"") ;;
*)
conf_classpath=${with_servlet}${CLASSPATH_SEPARATOR}$conf_classpath
run_classpath='$kawadir/lib/servlet.jar'${CLASSPATH_SEPARATOR}"$run_classpath"
;;
esac
case ${with_domterm} in
yes) ;;
no) ;;
"") ;;
*) conf_classpath=${with_domterm}${CLASSPATH_SEPARATOR}$conf_classpath
run_classpath='$kawadir/lib/domterm.jar'${CLASSPATH_SEPARATOR}"$run_classpath"
esac
case ${with_jline2} in
yes) ;;
no) ;;
"") ;;
*) conf_classpath=${with_jline2}${CLASSPATH_SEPARATOR}$conf_classpath ;;
esac
case ${with_jline3} in
yes) ;;
no) ;;
"") ;;
*) conf_classpath=${with_jline3}${CLASSPATH_SEPARATOR}$conf_classpath
run_classpath='$kawadir/lib/jline.jar'${CLASSPATH_SEPARATOR}"$run_classpath"
;;
esac