X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=blobdiff_plain;f=autogen.sh;h=33afc8230fb4ecfb5aac4a307d0394e54255d45e;hp=cfe76583f5078ceb208a69333f5c921e31c111fb;hb=3e992a014077ef68ffcc50df2e3b059068452e61;hpb=4f3cef0454ae7fa02e13d5eac24a3b4b3eae44c7 diff --git a/autogen.sh b/autogen.sh index cfe76583f..33afc8230 100644 --- a/autogen.sh +++ b/autogen.sh @@ -36,10 +36,11 @@ if test "$1" = "--build-w32"; then --with-libiconv-prefix=${w32root} \ --with-gpg-error-prefix=${w32root} \ --with-gpgme-prefix=${w32root} \ - --with-config-dir="Sylpheed-claws" \ + --with-config-dir="Claws-mail" \ --disable-openssl --disable-dillo-viewer-plugin \ - --disable-nls --disable-libetpan --disable-aspell \ - --disable-trayicon-plugin \ + --disable-nls --disable-libetpan --disable-enchant \ + --disable-trayicon-plugin --disable-spamassassin-plugin \ + --disable-bogofilter-plugin --disable-valgrind \ PKG_CONFIG_LIBDIR="$w32root/lib/pkgconfig" rc=$? @@ -47,6 +48,28 @@ if test "$1" = "--build-w32"; then fi # ***** end W32 build script ******* +bisonver=`bison --version` + +if [ "$bisonver" = "" ]; then + echo Bison is needed to compile Claws Mail CVS + exit 1 +fi + +flexver=`flex --version|sed "s/.* //"` + +if [ "$flexver" = "" ]; then + echo Flex 2.5.31 or greater is needed to compile Claws Mail CVS + exit 1 +else + flex_major=`echo $flexver|sed "s/\..*//"` + flex_minor=`echo $flexver|sed "s/$flex_major\.\(.*\)\..*/\1/"` + flex_micro=`echo $flexver|sed "s/$flex_major\.$flex_minor\.\(.*\)/\1/"` + if [ $flex_major -lt 2 -o $flex_minor -lt 5 -o $flex_micro -lt 31 ]; then + echo Flex 2.5.31 or greater is needed to compile Claws Mail CVS + exit 1 + fi +fi + aclocal -I m4 \ && libtoolize --force --copy \