summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 1288bfe9213412ae6594de301a4eecc4eb59898d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

set -e
 
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

ORIGDIR=`pwd`
cd $srcdir

ARGV0=$0

if test -z "$ACLOCAL_FLAGS"; then
    acdir=`aclocal --print-ac-dir`
    if [ ! -f $acdir/pkg.m4 ]; then
    echo "$ARGV0: Error: Could not find pkg-config macros."
    echo "        (Looked in $acdir/pkg.m4)"
    echo "        If pkg.m4 is available in /another/directory, please set"
    echo "        ACLOCAL_FLAGS=\"-I /another/directory\""
    echo "        Otherwise, please install pkg-config."
    echo ""
    echo "pkg-config is available from:"
    echo "http://www.freedesktop.org/software/pkgconfig/"
    exit 1
    fi
fi

if test -z "$*"; then
    echo "$ARGV0:Note: \`./configure' will be run with no arguments."
	echo "If you wish to pass any to it, please specify them on the"
	echo "\`$0' command line."
  echo
fi

do_cmd() {
    echo "$ARGV0: running \`$@'"
    $@
}

# not required for shared-mime-info, skip.
# do_cmd libtoolize --force --copy

do_cmd intltoolize --force

do_cmd aclocal ${ACLOCAL_FLAGS}

do_cmd autoheader

do_cmd automake --add-missing

do_cmd autoconf

cd $ORIGDIR || exit $?

do_cmd $srcdir/configure --enable-maintainer-mode ${1+"$@"} && echo "Now type \`make' to compile" || exit 1