view bootstrap @ 507:7f11a82e918e stable-1.0

Whoops, didn't actually fix the gcc4 warnings (backport from devbranch).
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 17 Dec 2005 18:50:17 +0000
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 ..."