diff options
| author | 2003-04-23 04:31:28 +0000 | |
|---|---|---|
| committer | 2003-04-23 04:31:28 +0000 | |
| commit | a3d9ca56040e35c0b79aa3b4bb804ae965ab6416 (patch) | |
| tree | 68a9f69782479f7b2be44ad835c2aff0db41a328 /autogen.sh | |
| parent | added Dan Maas' rawiso docs (diff) | |
add libtoolize to bootstrap
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@107 53a565d1-3bb7-0310-b661-cf11e63c67ab
Diffstat (limited to 'autogen.sh')
| -rwxr-xr-x | autogen.sh | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -29,6 +29,13 @@ DIE=0 DIE=1 } +(libtoolize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have libtool installed to compile $PROJECT." + echo "Visit http://www.gnu.org/software/libtool/ for more information." + DIE=1 +} + if test "$DIE" -eq 1; then exit 1 fi @@ -49,10 +56,12 @@ esac aclocal $ACLOCAL_FLAGS +libtoolize --force --copy + # optionally feature autoheader (autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader -automake -a $am_opt +automake -a $am_opt --copy autoconf cd $ORIGDIR |
