Commit 406f5067 authored by Martti Mela's avatar Martti Mela
Browse files

autogen works now with OS X 10.3 with port

darcs-hash:20060112084928-1b897-9cf711918873b72465cd1a127a0266ff04b6a312.gz
Showing with 11 additions and 2 deletions
......@@ -3,8 +3,17 @@
set -x
aclocal -I m4 &&
autoheader &&
libtoolize --force &&
autoheader
if libtoolize --force 2> /dev/null
then echo using libtoolize
elif glibtoolize --force 2> /dev/null
then echo using glibtoolize
else
echo "error: no libtoolize or glibtoolize found."
exit -1
fi
automake --add-missing --copy --include-deps --foreign &&
autoconf
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment