-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure
executable file
·414 lines (317 loc) · 11 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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#!/usr/bin/perl
use strict;
use Getopt::Long;
use Pod::Usage;
######################################################################
# Prelude
######################################################################
# Yes I know about autoconf ... and autoconf sux.
# We do not check for the following programs; we assume they are standard:
# - binutils, gcc, as, ld, the GNU toolchain
# - make, perl, bash
# - diffutils, fileutils, findutils, grep, patchutils, sh-utils
# - TODO findutils ?? need good gnu find, not macos find
# which adds some extra '//' in paths which bothers pfff
# - STILL? sharutils, for obrowser/ocsigen use of uuencode
# If want to run the tests need also:
# - swipl
# - javac
my $project =
"pfff";
my $projectcmdline =
"./pfff -dump_php demos/foo.php";
######################################################################
# Options
######################################################################
my $prefix="/usr/local";
my $bt=0;
my $visual=1; # cairo, codemap
my $graphics=0; # X11 graphics.cma
my $gui=1; # gtk, pfff_browser
my $opt= ""; # ocamlc.opt ?
my $ocamlc_flags = ""; #ocamlc -?
my $ocaml_version = 3112;
my $facebook=0;
my $man = 0;
my $help = 0;
# See http://perldoc.perl.org/Getopt/Long.html
# coupling: if add options here, add an explanation at the bottom of this file
# too. Later you may also add something in the documentation latex file
# (or use LP).
GetOptions (
"prefix=s" => \$prefix,
"bt!" => \$bt,
"visual!" => \$visual,
"gui!" => \$gui,
"graphics!" => \$graphics,
"with-all" => sub {
$facebook = 0;
$gui = 1; $visual = 1;
#$graphics = 1; conflict when $visual
},
"facebook" => sub {
$facebook = 1;
$gui = 0; $visual = 0; #really ?
},
'help|?' => \$help,
'man' => \$man
) or pod2usage(2);
#or die "$0: GetOptions: $!";
pod2usage(1) if $help;
pod2usage(-exitstatus => 0, -verbose => 2) if $man;
my $src="$prefix/share/$project";
# Dependencies:
if ($visual) { $gui = 1; }
if ($facebook) { }
######################################################################
# Side effects
######################################################################
######################################################################
# Helpers
######################################################################
BEGIN { die "need Perl 5 or greater" if $] < 5 ; }
#use Common;
sub pr2 { print STDERR "@_\n" }
sub cat {
my ($what) = @_;
my @list;
open(TMP, $what);
while(<TMP>) { push @list, "$_"; }
\@list;
}
sub notb { !$_[0] }
sub mapf { my ($f, $xs) = @_; [ map { &$f($_) } @{$xs} ] }
sub plural { my ($e) = @_; if ($e > 1) { "s" } else { "" } }
sub check_config { my ($command, $expect, $msggood, $msgbad) = @_;
my $error = 0;
my $full = cat($command);
my $res = join(" ", @{$full});
# pr2 $res;
if(notb($res =~ $expect)) { $error++; pr2 "!!!! $msgbad !!!!"; }
else { pr2 $msggood }
return $error;
}
sub show_error_msg_and_exit_if_error {
my ($error) = @_;
if($error) {
pr2 "
----------------------------------------------------------------------
!!!! There seems to have a problem, we have found a missing program.
Have a look at install.txt and the install_xxx.txt corresponding to your
OS.!!!!
----------------------------------------------------------------------
";
exit 1;
}
#plural($error) . ".
#" .
#" . (($error > 1) ? "Some of those packages" : "This package") .
# " may be installed by picking " . ($error > 1 ? "them" : "it") .
# " in $project-dependencies.tgz available
#on the $project website. !!!!
}
sub show_missing_package_error_msg {
my ($error2) = @_;
pr2 "
----------------------------------------------------------------------
!!!! You can try to compile and test $project,
but some features or plugins may be missing. !!!!\n
We have found $error2 missing package" . plural($error2) . ". " .
#(($error2 > 1) ? "Some of those packages" : "This package") .
#" may be installed
#by picking " . ($error2 > 1 ? "them" : "it") .
#" in $project-dependencies.tgz available on the $project website.
#";
"
Have a look at the install_xxx.txt corresponding to your OS.
";
}
######################################################################
# Let's go
######################################################################
pr2 "Checking your configuration.\n";
my $error = 0;
my $error2 = 0;
my $arch = `uname`;
#---------------------------------------------------------------------
# Compilers and runtimes
#---------------------------------------------------------------------
# We need 3.12 because I use the forall 'a. new typing feature
# as well as the '_' pattern in records (in my code but also in lib-sexp/)
# We need 4.00 for codegraph for ocaml code using the .cmt
# We need 4.01 for changes in the .cmt format
$error +=
check_config("echo \"1;;\\n\" | ocaml |",
"(Objective|OCaml)(.*) ([34]\.*.*)",
"OCaml (the wonderful language) is present.",
"The program ocaml is missing or is not a good version. We need at least 4.01",
);
show_error_msg_and_exit_if_error($error);
my $command = "echo \"1;;\\n\" | ocaml |";
my $full = cat($command);
my $res = join(" ", @{$full});
if ($res =~ /(Objective|OCaml)(.*) ([34])\.([0-9]+).([0-9]+)/) {
my $major = $3;
my $minor = $4;
my $other = $5;
$ocaml_version = $major * 1000 + $minor * 10 + $other;
} else {
die "wrong version of ocaml";
}
#---------------------------------------------------------------
# Developers tools
#---------------------------------------------------------------
pr2 "";
my $MAKE_PROGRAM = "make";
if($arch =~ /FreeBSD/) {
$MAKE_PROGRAM = "gmake";
}
my $BREW_PROGRAM = "";
if($arch =~ /Darwin/) {
$BREW_PROGRAM = `which brew`;
}
$error += check_config(
"$MAKE_PROGRAM -v 2>&1 |grep --colour=never Make|",
"GNU Make 3\.[0-9]+", #version 3.81
"make (gnu version) is present.",
"The program gnu make is missing or is not a good version.
We need 3.XX",
);
show_error_msg_and_exit_if_error($error);
#---------------------------------------------------------------------
# More developers tools
#---------------------------------------------------------------------
# The OPTBIN variable is here to allow to use ocamlc.opt instead of
# ocaml, when it is available, which speeds up compilation. So
# if you want the fast version of the ocaml chain tools, set this var
# or setenv it to \".opt\" in your startup script.
# todo: detect if possible?
$opt = ".opt";
# -bin-annot is for codegraph, it needs ocaml 4.00,
# -absname is for tuareg mode under my mac, it also needs ocaml 4.00
$ocamlc_flags="-bin-annot -absname";
#---------------------------------------------------------------------
# Librairies
#---------------------------------------------------------------------
# if darwin or cygwin then could just modify this variable ? enough ?
my $prefix_distrib = "/usr";
if( ($arch =~ /FreeBSD/) || (($arch =~ /Darwin/) && ($BREW_PROGRAM)) ) {
$prefix_distrib = "/usr/local";
} elsif ($arch =~ /Darwin/) {
$prefix_distrib = "/opt/local";
}
# The default ocamlgraph configure generate Makefiles that uses some -pack
# and certain module names like Graph that conflicts with other pfff modules
# so right now the Makefile is hand-crafted.
if($gui) {
pr2 "";
pr2 "Configuring ocamlgtk";
my $err = system("cd external/ocamlgtk; ./configure");
if ($err) { $gui = 0; $error2++; }
}
if($visual) {
pr2 "";
pr2 "Configuring ocamlcairo";
my $err = system("cd external/ocamlcairo;
LABLGTKDIR=../../ocamlgtk/src ./configure --with-gtk");
if ($err) { $visual = 0; $error2++; }
}
######################################################################
# Generate config files (platform/portability issues)
######################################################################
######################################################################
# Generate globals files (features issues)
######################################################################
######################################################################
# Diagnostic
######################################################################
if($error2) {
show_missing_package_error_msg($error2);
} else {
pr2 "
All seems fine for $project.
";
}
pr2 "
----------------------------------------------------------------------
To compile $project type:
\$ $MAKE_PROGRAM depend
\$ $MAKE_PROGRAM
Then, to test $project simply type:
\$ $projectcmdline
If you want to use the analysis framework and code visualization tool
see install.txt or type ./configure --help
----------------------------------------------------------------------
";
######################################################################
# Generating the configuration
######################################################################
pr2 "$project target prefix: $prefix (you can use --prefix to override it)";
pr2 "Generating Makefile.config (BT=$bt, GUI=$gui, VISUAL=$visual)";
pr2 " (see also configure --help)";
open(CONFIG, ">Makefile.config");
print CONFIG "# autogenerated by configure
# Where to install the binary
BINDIR=$prefix/bin
# Where to install the man pages
MANDIR=$prefix/man
# Where to install the lib
LIBDIR=$prefix/lib
# Where to install the configuration files
SHAREDIR=$src
# Common features, cf commons/Makefile
FEATURE_SEXP_BUILTIN_COMMONS=1
FEATURE_JSON_BUILTIN_COMMONS=1
FEATURE_XML_BUILTIN_COMMONS=1
# not worth it, because does not work well for native code
#FEATURE_SYSLIB_BUILTIN_COMMONS=1
# Features
FEATURE_BACKTRACE=$bt
FEATURE_GUI=$gui
FEATURE_GRAPHICS=$graphics
FEATURE_VISUAL=$visual
FEATURE_FACEBOOK=$facebook
OPTBIN=$opt
OCAMLCFLAGS_EXTRA=$ocamlc_flags
OCAMLVERSION=$ocaml_version
";
pr2 "Generating commons/features.ml";
`cpp -DFEATURE_GUI=$gui -DFEATURE_BACKTRACE=$bt commons/features.ml.in > commons/features.ml`;
pr2 "Generating globals/config_pfff.ml";
`perl -p -e 's#Not_found1.\*#Not_found->\\\"$src\\\"#' globals/config_pfff.ml.in > globals/config_pfff.ml`;
if($facebook) {
my ($server) = `cat facebook/pfff_logger.config`;
`perl -p -i -e 's#Not_found2.\*#Not_found-> Some \\\"$server\\\"#' globals/config_pfff.ml`;
}
`perl -p -i -e 's#Not_found[0-9]#Not_found#' globals/config_pfff.ml`;
if($error || $error2) {
pr2 "!!Problems during ./configure!!";
}
######################################################################
# Documentation
######################################################################
# TODO add docs for -fb ?
__END__
=head1 NAME
configure - setting compilation options for pfff
=head1 SYNOPSIS
configure [options] [--prefix=/path/to/install]
Options are:
--prefix
--[no]bt
--[no]gui
--[no]visual
--with-all
--facebook
=head1 OPTIONS
=over 8
=item B<-help>
Print a brief help message and exits.
=item B<-man>
Prints the manual page and exits.
=back
=head1 DESCRIPTION
B<This program> will read command line options and generate
a B<Makefile.config> and other files to set the compilation
environment for pfff.
=cut