aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMike Taves <mwtoews@gmail.com>2022-01-31 00:12:34 +1300
committerGitHub <noreply@github.com>2022-01-31 00:12:34 +1300
commitddefc8d1dfddc815cbc3afef00c66853f9c0194c (patch)
treea794660f59698f20405ad90896f9c3ce38a53934 /autogen.sh
parent4ecb0abb8c3d3f5efcdd79643bc3302aa9bc6d1e (diff)
downloadPROJ-ddefc8d1dfddc815cbc3afef00c66853f9c0194c.tar.gz
PROJ-ddefc8d1dfddc815cbc3afef00c66853f9c0194c.zip
Drop autotools; move remaining useful m4 macros (#3027)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index e76f3bd9..00000000
--- a/autogen.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-#
-# Autotools boostrapping script
-#
-giveup()
-{
- echo
- echo " Something went wrong, giving up!"
- echo
- exit 1
-}
-
-OSTYPE=`uname -s`
-
-for libtoolize in glibtoolize libtoolize; do
- LIBTOOLIZE=`which $libtoolize 2>/dev/null`
- if test "$LIBTOOLIZE"; then
- break;
- fi
-done
-
-#AMFLAGS="--add-missing --copy --force-missing"
-AMFLAGS="--add-missing --copy"
-if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then
- AMFLAGS=$AMFLAGS" --include-deps";
-fi
-
-echo "Running aclocal"
-aclocal -I ./m4 || giveup
-echo "Running autoheader"
-autoheader || giveup
-echo "Running libtoolize"
-$LIBTOOLIZE --force --copy || giveup
-echo "Running automake"
-automake $AMFLAGS # || giveup
-echo "Running autoconf"
-autoconf || giveup
-
-echo "======================================"
-echo "Now you are ready to run './configure'"
-echo "======================================"