view bootstrap @ 575:e587ba9d1c87 stable-1.0

Don't force quit in signal handler, since we might double-free things. Instead we set a flag and clean up normally. (transplanted from 7815c90ba55221f47a042339f872207904da0f5c)
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 24 Jan 2010 13:45:18 -0500
parents 365c3adc99c1
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 ..."