view bootstrap @ 560:9ebe77d267e0

Removed check for efence...you should use valgrind or something instead.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 28 Jan 2009 00:10:48 -0500
parents f0b8865577db
children
line wrap: on
line source

#!/bin/sh

set -e
echo "Initial preparation...this can take awhile, so sit tight..."
aclocal

# MacOS X renames GNU libtool to "glibtool", since they have something
#  else called "libtool" already...
if [ -x /usr/bin/glibtoolize ]; then
  glibtoolize --automake --copy --force
else
  libtoolize --automake --copy --force
fi

autoheader
automake --foreign --add-missing --copy
autoconf

echo "You are now ready to run ./configure ..."