summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-08-07 12:14:45 +0200
committerMichael Catanzaro <mcatanzaro@igalia.com>2017-10-17 16:33:10 -0500
commit5ec00d635ec4ee464961c7788a927aa908b7c4d8 (patch)
treeb2519cac57a73c3babbca397c973cf2c7b4ee0e9 /autogen.sh
parentf7a71bd57254912547256045b747f9181eef3529 (diff)
downloaddconf-5ec00d635ec4ee464961c7788a927aa908b7c4d8.tar.gz
build: Remove autotools
To avoid the burden of maintaining multiple build systems, this patch removes autotools support. https://bugzilla.gnome.org/show_bug.cgi?id=784910
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 831054a..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-set -e
-
-test -n "$srcdir" || srcdir=`dirname "$0"`
-test -n "$srcdir" || srcdir=.
-
-olddir=`pwd`
-cd "$srcdir"
-
-if automake-1.11 --version > /dev/null 2>&1; then
- automake_suffix='-1.11'
-else
- automake_suffix=''
-fi
-
-mkdir -p m4 build-aux
-gtkdocize --docdir docs --flavour no-tmpl
-aclocal${automake_suffix}
-autoheader
-automake${automake_suffix} --add-missing
-autoconf
-
-CFLAGS=${CFLAGS=-ggdb}
-LDFLAGS=${LDFLAGS=-Wl,-O1}
-export CFLAGS LDFLAGS
-
-cd "$olddir"
-
-if test -z "$NOCONFIGURE"; then
- "$srcdir"/configure "$@"
-fi