Fix building on Windows
[claws.git] / autogen.sh
blob694ef7cc4fdbd2ce4cf5ed21911d380758c5bac8
1 #!/bin/sh
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
11 exit 1
14 if [ "$LEX" != "" ]; then
15 flexver=`$LEX --version|awk '{print $2}'`
16 else
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
22 exit 1
23 else
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 + \
31 $flex_micro)
33 if [ $flex_numversion -lt 20531 ]; then
34 echo Flex 2.5.31 or greater is needed to compile Claws Mail git
35 exit 1
39 case `uname` in
40 Darwin*)
41 if [ "`glibtoolize --version`" = "" ]; then
42 echo MacOS requires glibtool from either Macport or brew
43 exit 1
45 LIBTOOL="glibtoolize --force --copy"
48 LIBTOOL="libtoolize --force --copy"
50 esac
52 ${LIBTOOL} \
53 && aclocal -I m4 \
54 && autoconf \
55 && autoheader \
56 && automake --add-missing --foreign --copy
57 if test -z "$NOCONFIGURE"; then
58 exec ./configure --enable-maintainer-mode "$@"
59 fi