Coccinelle release 0.2.5-rc3
[bpt/coccinelle.git] / configure
CommitLineData
34e49164 1#!/usr/bin/perl
708f4980 2
fc1ad971 3# Author: Yoann Padioleau
708f4980 4
34e49164
C
5######################################################################
6# Prelude
7######################################################################
8
9# Yes I know about autoconf ... and autoconf sux.
10
11# assume standard: diff
12# assume standard: perl
13
708f4980 14#TODO check python 2.5 ?
34e49164 15
978fd7e5
C
16# need latex and hevea if want to compile the documentation
17
34e49164
C
18#old: --with-menhir=/path/to/menhirLib or `ocamlfind query menhirLib`
19
0708f913 20my $project =
34e49164 21 "coccinelle";
0708f913 22my $projectcmdline =
978fd7e5 23 "spatch -sp_file demos/simple.cocci demos/simple.c -o /tmp/new_simple.c";
34e49164 24
34e49164
C
25######################################################################
26# Options
27######################################################################
28
29my $prefix="/usr/local";
30my $python=1;
174d1640 31my $noocamlscripting=0;
0708f913 32my $opt=".opt";
978fd7e5 33my $tarzan=1;
90aeb998
C
34my $pydir="pycaml";
35my $menhirdir="menhirlib";
36my $sexpdir="ocamlsexp";
34e49164
C
37
38local $_ = join ' ', @ARGV;
39
40# Parse options
c491d8ee 41/-h/ || /--help/ and die "usage: $0 [--prefix=path] [--without-python] [--without-ocaml] [--no-opt]\n\n\t--no-opt\tDo not use the optimimized version of OCaml\n\t--opt\tUse the optimimized version of OCaml\n\n";
34e49164
C
42/--prefix=([^ ]*)/ and $prefix = $1;
43/--without-python/ and $python = 0;
c491d8ee 44/--without-ocaml/ and $noocamlscripting = 1;
0708f913 45/--no-opt/ and $opt = "";
8ba84ae2 46/--opt/ and $opt = ".opt";
34e49164 47
978fd7e5
C
48#tarzan by default (used by score file parsing and now also for sexp_ast_c.ml)
49
50
34e49164
C
51#if($ARGV[0] =~ "--prefix=(.*)") {
52# $prefix = $1;
53#}
54#if($ARGV[1] =~ "--without-python") {
55# $python = 0;
56#}
57
58my $src="$prefix/share/$project";
59
60######################################################################
61# Side effects
62######################################################################
63
64
65######################################################################
66# Helpers
67######################################################################
68#BEGIN { die "need Perl 5 or greater" if $] < 5 ; }
69
70#use Common;
71sub pr2 { print STDERR "@_\n" }
0708f913 72sub cat {
34e49164
C
73 my ($what) = @_;
74 my @list;
75 open(TMP, $what);
76 while(<TMP>) { push @list, "$_"; }
77 \@list;
78}
79sub notb { !$_[0] }
80sub mapf { my ($f, $xs) = @_; [ map { &$f($_) } @{$xs} ] }
81sub plural { my ($e) = @_; if ($e > 1) { "s" } else { "" } }
82
83sub check_config { my ($command, $expect, $msggood, $msgbad) = @_;
84 my $error = 0;
0708f913 85
34e49164
C
86 my $full = cat($command);
87 my $res = join(" ", @{$full});
88# pr2 $res;
89 if(notb($res =~ $expect)) { $error++; pr2 "!!!! $msgbad !!!!"; }
90 else { pr2 $msggood }
91 return $error;
92}
93
94######################################################################
95# Let's go
96######################################################################
97pr2 "Checking your configuration.\n";
98
99my $error = 0;
100
34e49164
C
101#---------------------------------------------------------------------
102# Compilers and runtimes
103#---------------------------------------------------------------------
174d1640 104
0708f913 105$error +=
34e49164 106 check_config("echo \"1;;\\n\" | ocaml |",
174d1640 107 "Objective(.*) 3.\(09|1[0-9]\)",
34e49164
C
108 "OCaml (the wonderful language) is present.",
109 "The program ocaml is missing or is not a good version. We need at least 3.09",
110 );
111
3a314143 112unless ($noocamlscripting) {
174d1640
C
113$noocamlscripting = check_config("echo \"1;;\\n\" | ocaml |",
114 "Objective(.*) 3.1[1-9]",
115 "OCaml >= 3.11 is present. OCaml scripting activated.",
116 "OCaml scripting disabled. We need at least OCaml 3.11",
117 );
c491d8ee 118}
88e71198 119my $ocamlprefix = $noocamlscripting ? "no" : "yes";
174d1640 120
0708f913 121if ($opt eq ".opt") {
8ba84ae2
C
122 my $opt_check = `which ocamlc.opt 2> /dev/null`;
123 if($opt_check =~ "/ocamlc.opt\$") {
124 pr2 "ocamlc.opt is present.";
125 }
126 else {
127 $opt="";
128 pr2 "ocamlc.opt not found";
129 }
130
131 my $opt_check = `which ocamlopt.opt 2> /dev/null`;
132 if($opt_check =~ "/ocamlopt.opt\$") {
133 pr2 "ocamlopt.opt is present.";
134 }
135 else {
136 $opt="";
137 pr2 "ocamlopt.opt not found";
138 }
139
140 my $opt_check = `which ocamldep.opt 2> /dev/null`;
141 if($opt_check =~ "/ocamldep.opt\$") {
142 pr2 "ocamldep.opt is present.";
143 }
144 else {
0708f913 145 $opt="";
8ba84ae2
C
146 pr2 "ocamldep.opt not found";
147 }
148
149 my $opt_check = `which ocamllex.opt 2> /dev/null`;
150 if($opt_check =~ "/ocamllex.opt\$") {
151 pr2 "ocamllex.opt is present.";
0708f913
C
152 }
153 else {
8ba84ae2
C
154 $opt="";
155 pr2 "ocamllex.opt not found";
156 }
157
158 if($opt eq "") {
159 pr2 "At least one native OCaml tool have not been found.";
160 pr2 "Desactivation of all native OCaml tools for compilation.";
0708f913
C
161 }
162}
163
34e49164
C
164#we have cached the result of menhir in the tgz we build.
165
0708f913 166#$error +=
34e49164
C
167# check_config("menhir --version |",
168# "menhir, version 20071212",
169## "menhir, version 2006.*",
170# "Menhir (the parser generator) is present.",
171# "The program menhir is missing or is not a good version.",
172# );
173
174
175#---------------------------------------------------------------
176# Developers tools
177#---------------------------------------------------------------
178
179pr2 "";
180
181$error += check_config(
182 "make -v 2>&1 |grep Make|",
708f4980 183 "GNU Make [^0-9]*3\.[0-9]+.*", #version 3.79.1, 3.81
34e49164
C
184 "make (gnu version) is present.",
185 "The program gnu make is missing or is not a good version.
186We need 3.XX",
187);
188
34e49164
C
189#---------------------------------------------------------------------
190# More developers tools
191#---------------------------------------------------------------------
192
193#---------------------------------------------------------------------
194# Librairies
195#---------------------------------------------------------------------
196
3a314143
C
197# Python dev
198if($python) {
199 if(check_config(
200 "python --version 2>&1 |",
ca417fcf 201 '^Python 2\.([567]|[567]\.\S*)$',
3a314143
C
202 "python is present",
203 "python is missing or is not a good version."
204 ))
205 {
206 $python=0;
207 }
208 if($python) {
209 my $PY_PREFIX = `python pycaml/getprefix.py | tr -d '\n'`;
210 my $PY_VERSION = `python pycaml/getversion.py | tr -d '\n'`;
211 my $python_hdr = "$PY_PREFIX/include/python$PY_VERSION/Python.h";
212 if(check_config(
213 "ls $python_hdr 2> /dev/null | ",
214 $python_hdr,
215 "Python.h found",
216 "Python.h missing - You need to install python-dev"
217 ))
218 {
219 $python=0
220 }
221 }
222}
223
ca417fcf
C
224my $ocamlfind=!check_config(
225 "which ocamlfind 2> /dev/null |",
226 '/ocamlfind$',
227 "ocamlfind is present",
228 "ocamlfind is missing -- Switch to local library copies."
229 );
230
90aeb998
C
231# pycaml. Binding between Python and OCaml
232my $syspydir=`ocamlfind query pycaml 2> /dev/null | xargs echo -n`;
233
234if($syspydir) {
235 $pydir=$syspydir;
174d1640
C
236 pr2 "'pycaml' library is present in $pydir";
237} else {
238 pr2 "'pycaml' library is not present. A local copy will be used.";
90aeb998
C
239}
240
241# menhirLib. Runtime system for the parsers generated with menhir
242my $sysmenhirdir=`ocamlfind query menhirLib 2> /dev/null | xargs echo -n`;
243
244if($sysmenhirdir) {
245 $menhirdir=$sysmenhirdir;
174d1640
C
246 pr2 "'menhirLib' library is present in $menhirdir";
247} else {
248 pr2 "'menhirLib' library is not present. A local copy will be used..";
90aeb998
C
249}
250
251# sexplib. Runtime system for the parsers generated with menhir
252my $syssexpdir=`ocamlfind query sexplib 2> /dev/null | xargs echo -n`;
253
254if($syssexpdir) {
255 $sexpdir=$syssexpdir;
174d1640
C
256 pr2 "'sexplib' library is present in $sexpdir";
257} else {
258 pr2 "'sexplib' library is not present. A local copy will be used..";
90aeb998
C
259}
260
34e49164
C
261######################################################################
262# Generate config files (platform/portability issues)
263######################################################################
264
265
266######################################################################
267# Generate globals files (features issues)
268######################################################################
269
270######################################################################
0708f913 271# Diagnostic
34e49164
C
272######################################################################
273
274
0708f913 275if($error) {
34e49164
C
276 pr2 "
277----------------------------------------------------------------------
0708f913 278!!!! There seems to have problem, we have found $error missing package" .
34e49164 279plural($error) . ".
0708f913
C
280" . (($error > 1) ? "Some of those packages" : "This package") .
281 " may be installed by picking " . ($error > 1 ? "them" : "it") .
34e49164
C
282 " in $project-dependencies.tgz available
283on the $project website. !!!!
284----------------------------------------------------------------------
285";
0708f913 286} else {
34e49164 287
174d1640
C
288 pr2
289"----------------------------------------------------------------------
34e49164
C
290
291All seems fine for $project.
292
293To compile $project type:
708f4980
C
294 \$ make depend
295 \$ make all
296
297Or alternatively, for the optimized version:
298 \$ make all.opt
b1b2de81 299If you want both, you could use:
708f4980
C
300 \$ make world
301
34e49164
C
302
303To install type:
708f4980 304 \$ make install
34e49164
C
305
306Then, to test $project simply type:
708f4980 307 \$ $projectcmdline
34e49164
C
308
309";
310
ca417fcf
C
311 if($python) {
312 pr2
34e49164 313"To use the python SmPL feature you may have to set some environment variables.
174d1640 314However, they are automatically set by the front-end installed in $prefix/bin.
34e49164
C
315For bash do:
316export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:$prefix/lib
174d1640 317export PYTHONPATH=\$PYTHONPATH:$src/python"
34e49164 318 }
ca417fcf 319
174d1640 320 pr2 "----------------------------------------------------------------------";
34e49164
C
321}
322
34e49164
C
323######################################################################
324# Generating the configuration
325######################################################################
326
ca417fcf
C
327pr2 " Compilation configuration\n";
328
34e49164
C
329pr2 "$project target prefix: $prefix (you can use --prefix to override it)";
330pr2 "Generating Makefile.config";
331open(CONFIG, ">Makefile.config");
332print CONFIG "# autogenerated by configure
333
8ba84ae2
C
334#
335INSTALL_PROGRAM?=install -c -m 755
336INSTALL_LIB?= install -c -m 755
337INSTALL_DATA?= install -c -m 644
338
34e49164
C
339# Where to install the binary
340BINDIR=$prefix/bin
341
342# Where to install the man pages
343MANDIR=$prefix/man
344
345# Where to install the lib
346LIBDIR=$prefix/lib
347
348# Where to install the configuration files
349SHAREDIR=$src
350
174d1640
C
351BASH_COMPLETION_DIR=/etc/bash_completion.d
352
34e49164
C
353# Features
354FEATURE_PYTHON=$python
978fd7e5 355FEATURE_TARZAN=$tarzan
0708f913 356
90aeb998
C
357PYCAMLDIR=$pydir
358MENHIRDIR=$menhirdir
359SEXPDIR=$sexpdir
88e71198 360DYNLINK=$ocamlprefix
90aeb998 361
0708f913
C
362# The OPTBIN variable is here to allow to use ocamlc.opt instead of
363# ocaml, when it is available, which speeds up compilation. So
364# if you want the fast version of the ocaml chain tools, set this var
365# or setenv it to \".opt\" in your startup script.
366OPTBIN=$opt
34e49164
C
367";
368
174d1640
C
369
370my $pythonprefix = $python ? "yes" : "no";
ca417fcf 371pr2 "Support for python scripting: $pythonprefix";
174d1640 372`cd python; ln -sf ${pythonprefix}_pycocci.ml pycocci.ml; `;
34e49164
C
373`cd python; make depend`;
374
ca417fcf 375pr2 "Support for ocaml scripting: $ocamlprefix";
174d1640
C
376`cd ocaml; ln -sf ${ocamlprefix}_prepare_ocamlcocci.ml prepare_ocamlcocci.ml;`;
377`cd ocaml; make depend`;
378
379pr2 "Modifying globals/config.ml";
b1b2de81 380my $command = "perl -p -e 's#Not_found.\*#Not_found->\\\"$src\\\"#' globals/config.ml.in > globals/config.ml";
34e49164
C
381`$command`;
382
ca417fcf
C
383pr2 "----------------------------------------------------------------------";
384pr2 " Runtime dependency\n";
385
386if ($ocamlfind) {
387pr2 "Support for external ocaml library in ocaml scripting: yes (ocamlfind found)";
388}
389else {
390pr2 "Support for external ocaml library in ocaml scripting: no (ocamlfind may be required at runtime)";
391}
392
393pr2 "";