Minor tweak in gc marking phase. Ensure there is still space
[panda.git] / autogen.sh
blob9329d3485e32a3db3cc0e43e8eb1fc46361c0141
1 #!/bin/sh
3 PROJECT=panda
5 srcdir=$(dirname $0)
6 test -z "$srcdir" && srcdir=.
8 (test -f $srcdir/configure.ac) || {
9 echo "Directory \"$srcdir\" does not look like the top-level $PROJECT directory" 1>&2
10 exit 1
13 libtoolize --force --copy
14 aclocal $ACLOCAL_FLAGS
15 autoconf
16 autoheader
17 test -f config.h.in && touch config.h.in
18 automake --foreign --add-missing --force --copy
20 if [ $# = 0 ]; then
21 echo "WARNING: I am going to run configure without any arguments."
24 ./configure $@