2 # Copyright 1999-2014 the Claws Mail team.
3 # This file is part of Claws Mail package, and distributed under the
4 # terms of the General Public License version 3 (or later).
5 # See COPYING file for license details.
7 bisonver
=`bison --version`
9 if [ "$bisonver" = "" ]; then
10 echo Bison is needed to compile Claws Mail git
14 if [ "$LEX" != "" ]; then
15 flexver
=`$LEX --version|awk '{print $2}'`
17 flexver
=`flex --version|awk '{print $2}'`
20 if [ "$flexver" = "" ]; then
21 echo Flex
2.5.31 or greater is needed to compile Claws Mail git
24 flex_major
=`echo $flexver|sed "s/\..*//"`
25 flex_minor
=`echo $flexver|sed "s/$flex_major\.\(.*\)\..*/\1/"`
26 flex_micro
=`echo $flexver|sed "s/$flex_major\.$flex_minor\.\(.*\)/\1/"`
28 flex_numversion
=$
(expr \
29 $flex_major \
* 10000 + \
30 $flex_minor \
* 100 + \
33 if [ $flex_numversion -lt 20531 ]; then
34 echo Flex
2.5.31 or greater is needed to compile Claws Mail git
41 if [ "`glibtoolize --version`" = "" ]; then
42 echo MacOS requires glibtool from either Macport or brew
45 LIBTOOL
="glibtoolize --force --copy"
48 LIBTOOL
="libtoolize --force --copy"
56 && automake
--add-missing --foreign --copy
57 if test -z "$NOCONFIGURE"; then
58 exec .
/configure
--enable-maintainer-mode "$@"