114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
...
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
kitruncmd="wine"
;;
win64|win64-*)
kitcreator="./build/make-kit-win32"
xcompile="1"
runnable="1"
kitruncmd="wine64"
args="${args} --enable-64bit"
;;
linux-mipsel-min|linux-mipsel-min-kitdll)
kitcreator="./build/make-kit-linux-mipsel"
runnable="0"
xcompile="1"
notk="1"
iszip="1"
................................................................................
hpux-hppa64|hpux-hppa64-*)
platform="$(echo "${kit}" | cut -f 1-2 -d '-')"
kitcreator="./build/make-kit-${platform}"
runnable="0"
xcompile="1"
iszip="0"
if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then
args="${args} --enable-64bit"
fi
;;
esac
case "${kitruncmd}" in
wine)
WINEPREFIX="${WINEPREFIX32}"
export WINEPREFIX
;;
wine64)
|
|
114
115
116
117
118
119
120
121
122
123
124
125
126
127
...
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
kitruncmd="wine"
;;
win64|win64-*)
kitcreator="./build/make-kit-win32"
xcompile="1"
runnable="1"
kitruncmd="wine64"
;;
linux-mipsel-min|linux-mipsel-min-kitdll)
kitcreator="./build/make-kit-linux-mipsel"
runnable="0"
xcompile="1"
notk="1"
iszip="1"
................................................................................
hpux-hppa64|hpux-hppa64-*)
platform="$(echo "${kit}" | cut -f 1-2 -d '-')"
kitcreator="./build/make-kit-${platform}"
runnable="0"
xcompile="1"
iszip="0"
;;
esac
if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then
args="${args} --enable-64bit"
fi
case "${kitruncmd}" in
wine)
WINEPREFIX="${WINEPREFIX32}"
export WINEPREFIX
;;
wine64)
|