summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 9638fd9ee..000000000
--- a/autogen.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-if [ `uname` = Darwin ]; then
- LIBTOOL=glibtool
-else
- LIBTOOL=libtool
-fi
-
-for pkg in pkg-config $LIBTOOL automake aclocal autoreconf:autoconf autopoint:gettext
-do
- if ! ${pkg%%:*} --version >/dev/null
- then
- echo "You need to install ${pkg##*:}"
- exit 1
- fi
-done
-
-autoreconf --install -I m4 "$@"
-echo "***** WARNING *****"
-echo "Support for autotools will be removed soon from navit, please use cmake instead"
-sleep 5