-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure
executable file
·297 lines (246 loc) · 6.41 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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#! /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 () {
enable_ocamljs=1
enable_type_conv=1
enable_cohttpserver=1
bindir=`dirname $ocamlc`
libdir=`ocamlc -where`
}
ocamlc=`get_path ocamlc`
set_defaults
version="0.3"
exec_suffix=""
#######################################################################
# Option parsing
ehelp_ocamljs="Enable/disable parts that depend on ocamljs"
ehelp_type_conv="Enable/disable parts that depend on type-conv"
ehelp_cohttpserver="Enable/disable parts that depend on Cohttpserver"
# Which options exist? eoptions for enable/disable, woptions for with/without:
eoptions="ocamljs type_conv cohttpserver"
check_library () {
# $1: the name of the library (findlib)
ocamlfind query "$1" >/dev/null 2>/dev/null
return
return 1 # not found
}
check_libraryjs () {
# $1: the name of the library (findlib)
ocamlfindjs query "$1" >/dev/null 2>/dev/null
return
return 1 # not found
}
print_options () {
for opt in $eoptions; do
e="o=\$enable_$opt"
eval "$e"
uopt=`echo $opt | sed -e 's/_/-/g'`
if [ $o -gt 0 ]; then
echo " -enable-$uopt"
else
echo " -disable-$uopt"
fi
done
echo " -bindir $bindir"
echo " -libdir $libdir"
}
usage () {
set_defaults
cat <<_EOF_ >&2
usage: ./configure [ options ]
_EOF_
for opt in $eoptions; do
e="help=\$ehelp_$opt"
eval "$e"
uopt=`echo $opt | sed -e 's/_/-/g'`
echo "-enable-$uopt:" >&2
echo "-disable-$uopt:" >&2
echo " $help" >&2
done
cat <<_EOF_ >&2
-bindir dir
Install binaries into this directory
-libdir dir
Install libraries into this directory (default same as ocamlc -where)
Defaults are:
_EOF_
print_options >&2
exit 1
}
check_eopt () {
for x in $eoptions; do
if [ "$x" = "$1" ]; then
return 0
fi
done
echo "Unknown option: $1" >&2
exit 1
}
echo "Welcome to orpc version $version" >&2
while [ "$#" -gt 0 ]; do
case "$1" in
-enable-*)
opt=`echo "$1" | sed -e 's/-enable-//' -e 's/-/_/g'`
check_eopt "$opt"
eval "enable_$opt=1"
shift
;;
-disable-*)
opt=`echo "$1" | sed -e 's/-disable-//' -e 's/-/_/g'`
check_eopt "$opt"
eval "enable_$opt=0"
shift
;;
-bindir)
bindir="$2"
shift
shift
;;
-libdir)
libdir="$2"
shift
shift
;;
-version)
echo "$version"
exit 0
;;
*)
usage
esac
done
######################################################################
# 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 rpc is available:
printf "%s" "Checking for rpc... "
if check_library rpc; then
echo "found"
else
echo "not found"
echo "Sorry, installation is not possible without Ocamlnet rpc."
echo "Get Ocamlnet from:"
echo "http://projects.camlcity.org/projects/ocamlnet.html"
exit 1
fi
######################################################################
# Check that type-conv is available:
if [ $enable_type_conv -gt 0 ]; then
printf "%s" "Checking for type-conv... "
if check_library "type-conv"; then
echo "found"
else
echo "not found"
echo "type-conv is required for -enable-type_conv."
echo "Try -disable-type_conv, or get type-conv from:"
echo "http://www.ocaml.info/home/ocaml_sources.html#type-conv"
exit 1
fi
fi
######################################################################
# Check that ocamljs is available:
if [ $enable_ocamljs -gt 0 ]; then
printf "%s" "Checking for ocamljs... "
if check_libraryjs ocamljs; then
echo "found"
else
echo "not found"
echo "Ocamljs is required for -enable-ocamljs."
echo "Try -disable-ocamljs, or get ocamljs from:"
echo "http://code.google.com/p/ocamljs/"
exit 1
fi
fi
######################################################################
# Check that cohttpserver is available:
if [ $enable_ocamljs -gt 0 -a $enable_cohttpserver -gt 0 ]; then
printf "%s" "Checking for Cohttpserver... "
if check_library "cohttpserver"; then
echo "found"
else
echo "not found"
echo "Cohttpserver is required for -enable-cohttpserver."
echo "Try -disable-cohttpserver, or get Cohttpserver from:"
echo "http://github.com/jaked/cohttpserver/"
exit 1
fi
fi
######################################################################
# Summary
echo
echo "Effective options:"
print_options
echo
pkglist="generator orpc orpc-onc"
if [ $enable_ocamljs -gt 0 ]; then
pkglist="$pkglist orpc-js-client orpc-js-server"
fi
if [ $enable_ocamljs -gt 0 -a $enable_cohttpserver -gt 0 ]; then
pkglist="$pkglist orpc-js-comet-server"
fi
######################################################################
# Write Makefile.conf
echo "Writing Makefile.conf"
cat <<_EOF_ >Makefile.conf
# Makefile.conf written by configure
# The orpc version
VERSION = $version
# The packages to build in the right order:
PKGLIST = $pkglist
# Where binaries are installed:
BINDIR = $bindir
# Where libraries are installed:
LIBDIR = $libdir
ENABLE_OCAMLJS = $enable_ocamljs
ENABLE_TYPE_CONV = $enable_type_conv
ENABLE_COHTTPSERVER = $enable_cohttpserver
_EOF_
######################################################################
# Finish
echo
echo "Please check Makefile.conf."
echo
echo "You can now compile orpc by invoking"
echo " make all"
echo "Finally, a"
echo " make install"
echo "will install the package(s)."