summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 7b71391e86face3691d5b335c1e0a78988b77771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.

olddir=`pwd`
cd "$srcdir"

autoreconf -i -f

cd "$olddir"

$srcdir/configure --disable-static --enable-maintainer-mode --enable-gtk-doc $@