OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 # use glibtoolize if it is available (darwin) | 3 # use glibtoolize if it is available (darwin) |
4 (glibtoolize --version) < /dev/null > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize |
| LIBTOOLIZE=libtoolize | 4 (glibtoolize --version) < /dev/null > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize |
| LIBTOOLIZE=libtoolize |
5 | 5 |
6 $LIBTOOLIZE --copy --force || exit 1 | 6 $LIBTOOLIZE --copy --force || exit 1 |
7 aclocal || exit 1 | 7 aclocal || exit 1 |
8 autoheader || exit 1 | 8 autoheader || exit 1 |
9 autoconf || exit 1 | 9 autoconf || exit 1 |
10 automake -a -c || exit 1 | 10 automake -a -c || exit 1 |
11 ./configure --enable-maintainer-mode --enable-debug-log \ | 11 ./configure --enable-maintainer-mode --enable-debug-log \ |
12 --enable-examples-build $* | 12 --enable-examples-build $* |
OLD | NEW |