Build pidl on the build farm.
[amitay/build-farm.git] / generic.fns
1 per_run_hook
2
3 global_lock
4
5 system=`uname`
6
7 for compiler in gcc cc icc; do
8
9   # arrgh, "which" gives no err code on solaris
10   path=`which $compiler`
11   if [ -x "$path" ]; then
12
13     if $compiler -v 2>&1 | grep gcc.version > /dev/null; then
14        isgcc=1
15        CFLAGS="-Wall"
16        export CFLAGS
17     else
18        CFLAGS=""
19        export CFLAGS
20        isgcc=0
21     fi
22     if [ $compiler = gcc -o $isgcc = 0 ]; then
23       . common.fns
24       test_tree lorikeet-heimdal . $compiler
25
26       # only attempt samba4 if we have perl
27       if which perl > /dev/null; then
28         test_tree samba4 source $compiler
29       fi
30
31       test_tree samba_3_0 source $compiler
32
33       # by default build ppp only on SunOS or Linux systems
34       if [ "$system" = Linux -o "$system" = SunOS ]; then
35          test_tree ppp . $compiler
36       fi
37     fi
38   fi
39 done
40
41 # only attempt pidl if we have perl
42 if which perl > /dev/null; then
43   test_tree pidl source cc build install test
44 fi
45
46 global_unlock