Fix:graphics_win32:Transform non-opaque, grayscale etc png files to RGBA format properly.
[profile/ivi/navit.git] / navit / autogen.sh
1 #!/bin/sh
2 if [ `uname` = Darwin ]; then
3         LIBTOOL=glibtool
4 else
5         LIBTOOL=libtool
6 fi
7
8 for pkg in pkg-config $LIBTOOL automake aclocal autoreconf:autoconf autopoint:gettext
9 do
10         if ! ${pkg%%:*} --version >/dev/null 
11         then
12                 echo "You need to install ${pkg##*:}"
13                 exit 1
14         fi
15 done
16
17 autoreconf --install -I m4 "$@"
18 echo "***** WARNING *****"
19 echo "Support for autotools will be removed soon from navit, please use cmake instead"
20 sleep 5