forked from jaked/ocamljs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure
executable file
·258 lines (207 loc) · 5.63 KB
/
configure
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
#! /bin/sh
# adapted from ocamlnet's configure
#######################################################################
# Helpers:
# Split $PATH into words:
oldifs="$IFS"
IFS=" :"
spacepath=`echo $PATH`
IFS="$oldifs"
in_path () {
# Does $1 exist in $PATH?
for d in $spacepath; do
if test -x "$d/$1"; then
return 0
fi
done
return 1
}
get_path () {
for d in $spacepath; do
if test -x "$d/$1"; then
echo "$d/$1"
return
fi
done
}
#######################################################################
# Defaults
#--- Options ---
# value 0: off
# value 1: on
# defaults:
set_defaults () {
srcdir="/usr/local/src/ocaml-3.11.2"
bindir=`dirname $ocamlc`
libdir=`ocamlc -where`
}
ocamlc=`get_path ocamlc`
set_defaults
version="0.2"
exec_suffix=""
#######################################################################
# Option parsing
# Packages to include anyway:
requires="ulex"
check_library () {
# $1: the name of the library (findlib)
ocamlfind query "$1" >/dev/null 2>/dev/null
return
return 1 # not found
}
print_options () {
echo " -srcdir $srcdir"
echo " -bindir $bindir"
echo " -libdir $libdir"
}
usage () {
set_defaults
cat <<_EOF_ >&2
usage: ./configure [ options ]
_EOF_
cat <<_EOF_ >&2
-srcdir dir
OCaml source is in this directory (default /usr/local/src/ocaml-3.11.2)
-bindir dir
Install binaries into this directory (default same as ocamlc)
-libdir dir
Install libraries into this directory (default same as ocamlc -where)
Defaults are:
_EOF_
print_options >&2
exit 1
}
echo "Welcome to ocamljs version $version" >&2
while [ "$#" -gt 0 ]; do
case "$1" in
-srcdir)
srcdir="$2"
shift
shift
;;
-bindir)
bindir="$2"
shift
shift
;;
-libdir)
libdir="$2"
shift
shift
;;
-version)
echo "$version"
exit 0
;;
*)
usage
esac
done
# Sanity checks
case "$bindir" in
/*) ;;
"") ;;
*) echo "The -bindir directory must be absolute." 1>&2; exit 2;;
esac
case "$libdir" in
/*) ;;
"") ;;
*) echo "The -libdir directory must be absolute." 1>&2; exit 2;;
esac
######################################################################
# Check OCaml source and version
printf "%s" "Checking for OCaml source... "
if [ -f $srcdir/VERSION ]; then
echo "found"
src_version=`head -1 $srcdir/VERSION`
else
echo "not found"
echo "You need to set -srcdir to an OCaml source tree."
echo "Download OCaml from http://caml.inria.fr/download.en.html"
exit 1
fi
printf "%s" "Checking OCaml version... "
ocamlc_version=`ocamlc -version`
case $src_version in
3.10.2 | 3.11.0 | 3.11.1 | 3.11.2 | 3.12.0)
if [ $src_version = $ocamlc_version ]; then
echo "ok, $src_version"
elif [ "$src_version" != "$ocamlc_version" ]; then
echo "source version $src_version != installed version $ocamlc_version"
echo "You need OCaml source that's the same version as your installed OCaml."
echo "Download OCaml from http://caml.inria.fr/download.en.html"
exit 1
fi;;
*)
echo "unsupported version $src_version"
echo "Sorry, ocamljs needs OCaml version 3.10.2, 3.11.0, 3.11.1, 3.11.2, or 3.12.0."
echo "Download OCaml from http://caml.inria.fr/download.en.html"
exit 1;;
esac
######################################################################
# Check ocamlfind
printf "%s" "Checking for findlib... "
if check_library stdlib; then
echo "found"
else
echo "not found"
echo "Make sure that ocamlfind is in your PATH, or download findlib"
echo "from www.ocaml-programming.de"
exit 1
fi
######################################################################
# Check that ulex is available:
printf "%s" "Checking for ulex... "
if check_library ulex; then
echo "found"
else
echo "not found"
echo "Sorry, installation is not possible without ulex."
echo "Get ulex from:"
echo "http://www.cduce.org/download.html#side"
exit 1
fi
######################################################################
# Summary
echo
echo "Effective options:"
print_options
echo
pkglist="jslib jscomp ocamljs stdlib javascript mozilla dom lwt lwt-dom gears gmaps jquery ounit-js"
######################################################################
# Configure OCaml
printf "%s" "Configuring OCaml... "
rm -f ocaml; ln -s $srcdir ocaml
(cd ocaml; make clean; ./configure -bindir $bindir -libdir $libdir) >/dev/null 2>&1
echo "done"
if [ "$src_version" = "3.10.2" ]; then
ocaml_3_10_2=1
fi
######################################################################
# Write Makefile.conf
echo "Writing Makefile.conf"
cat <<_EOF_ >Makefile.conf
# Makefile.conf written by configure
# The ocamljs version
VERSION = $version
# The packages to build in the right order:
PKGLIST = $pkglist
# Required packages (findlib):
REQUIRES = $requires
# Where binaries are installed:
BINDIR = $bindir
# Where libraries are installed:
LIBDIR = $libdir
OCAML_3_10_2 = $ocaml_3_10_2
OCAML_VERSION = $ocamlc_version
_EOF_
######################################################################
# Finish
echo
echo "Please check Makefile.conf."
echo
echo "You can now compile ocamljs by invoking"
echo " make all"
echo "Finally, a"
echo " make install"
echo "will install the package(s)."