aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 719ff5d214c7517d211448174c0f8fd80a2b9008 (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
#! /bin/sh

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

PROJECT=Matchbox2
TEST_TYPE=-d
FILE=matchbox2

test $TEST_TYPE $FILE || {
        echo "You must run this script in the top-level $PROJECT directory"
        exit 1
}

GTKDOCIZE=`which gtkdocize`
if test -z $GTKDOCIZE; then
        echo "*** No gtk-doc support ***"
        echo "EXTRA_DIST =" > gtk-doc.make
else
        gtkdocize || exit $?
        # we need to patch gtk-doc.make to support pretty output with
        # libtool 1.x.  Should be fixed in the next version of gtk-doc.
        # To be more resilient with the various versions of gtk-doc one
        # can find, just sed gkt-doc.make rather than patch it.
        sed -e 's#) --mode=compile#) --tag=CC --mode=compile#' gtk-doc.make > gtk-doc.temp \
                && mv gtk-doc.temp gtk-doc.make
        sed -e 's#) --mode=link#) --tag=CC --mode=link#' gtk-doc.make > gtk-doc.temp \
                && mv gtk-doc.temp gtk-doc.make
fi

AUTORECONF=`which autoreconf`
if test -z $AUTORECONF; then
        echo "*** No autoreconf found ***"
        exit 1
else
        ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" autoreconf -v --install || exit $?
fi

if test -z "$NOCONFIGURE"; then
        ./configure "$@" && echo "Now type 'make' to compile $PROJECT."
fi