talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 8ac91cd9662e70115f9631604269a16d18374005
parent 384094e227d83f57c181b14b7a3d5349615fb691
Author: Paul <paul@claws-mail.org>
Date:   Fri, 13 Jun 2014 10:20:41 +0100

add a check and warning for missing intltool; add --automake to intltoolize call

Diffstat:
Mautogen.sh | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/autogen.sh b/autogen.sh @@ -74,11 +74,16 @@ else fi fi +intltoolver=`intltoolize --version` +if [ "$intltoolver" = "" ]; then + echo intltool is needed to compile Claws Mail git + exit 1 +fi aclocal -I m4 \ && libtoolize --force --copy \ && autoheader \ && automake --add-missing --foreign --copy \ && autoconf \ - && intltoolize -f \ + && intltoolize -f --automake \ && ./configure --enable-maintainer-mode $@